Try to do it your self. Because some people just want to be unbanned for doing something that they shouldn't be doing. I don't recommend turning that off.
R-AntiCheat [Unmaintained]
Discussion in 'Plugin Support' started by Reneb, Sep 9, 2014.
-
Im using your mod and im having problems when players on my server use a pickaxe and mine ore. they are kicked for speedhack. Need help fixing this.
-
I get random bans with no recoil. Should I disable this feature of somehow it it's fixable?
- rNoRecoil(1/6)
- rNoRecoil(1/5)
- rNoRecoil(1/5)
Code:static void AntiCheatBroadcastAdmins(string message) { if (!broadcastAdmins) return; Puts(message); foreach (PlayerClient player in PlayerClient.All) { if (player.netUser.CanAdmin()) ConsoleNetworker.SendClientCommand(player.netPlayer, "chat.add AntiCheat \"" + message + "\""); } }
what is wrong here?
[DOUBLEPOST=1433915492][/DOUBLEPOST]My anticheat settings
Code:"NoRecoil: activated": true, "NoRecoil: Min Distance For Check ": 40.0, "NoRecoil: Punish ": true, "NoRecoil: Punish Min Kills": 5, "NoRecoil: Punish Min Ratio": 0, "NoRecoil: Punish Min Ratio in %": 33,
Last edited by a moderator: Jun 10, 2015 -
Do you even have to use the "Puts(message);" ?
Runs without any errors without it at least.
And the NoRecoil seems to be a little off, so i've disabled the auto ban for NoRecoil on my server. It still detects and display them to whoever's logged into Rcon.
Even seen people being detected for no Recoil, when they shoot with a bolt. -
you cant put Puts inside a static function.
you have to use: Debug.Log("TEXT")
instead -
Is there a quick fix. I have 1.18 I am sure, If I go to 2.0 do I lose all of my other plugins you think ?
-
Wulf Community Admin
-
Damn I will lose a lot of my custom stuff wont I. I figured as much thanks for the heads up. Is there doorshare and sleepover for 2.0 ?
-
Wulf Community Admin
For further help unrelated to this plugin, please create a new thread after having looked to see what plugins are available. http://oxidemod.org/plugins/categories/rust-legacy.44/ -
Thank you for the intel man I know most people hate people who ask lol. I am dreading putting all my custom "last death" and PvP message stuff together
-
Please explain how to install anti-cheat to make it work.
-
(13:34:43) | [Oxide] 1:34 PM [Error] Failed to call hook 'OnServerInitialized' on plugin 'AntiCheat' (NullReferenceException: Object reference not set to an instance of an object)
[DOUBLEPOST=1434801610][/DOUBLEPOST][Error] Failed to call hook 'OnPlayerSpawn' on plugin 'AntiCheat' ?? -
Hello,
there are solution against the UnBanTool ? -
hello guys i have the R-AntiCheat.. my server is oxide 1.8
need more plugins for work the R-AntiCheat?
this is the code .txt
Code:{ "PunishForAirdropAutoLoot":true, "timeofcheck":1800, "AirdropAutoLootDetectionsForPunish":2, "useAntiFlyhack":true, "useAntiAirdropAutoLoot":true, "useAntiCeilingSpawnRemoval":true, "NotifyInChatName":"r-AntiCheat", "NotifyInChat":false, "useAntiJumphack":true, "NotifyAdmins":true, "PunishForBlueprintUnlocker":true, "FlyDetectionsForPunish":4, "SpeedDetectionsForPunish":3, "PunishByBan":true, "JumpDetectionsForPunish":2, "useAntiWallSpeedHack":true, "NotifyInConsole":true, "PermanentCheck":false, "useAntiBlueprintUnlocker":true, "PunishForCeilingSpawnRemoval":true, "useAntiSpeedhack":true, "Version":"1.5", "PunishByKick":false }
Last edited by a moderator: Jun 28, 2015 -
Oxide 1.18 is unsupported
-
just found someone do it just now and the anti-cheat didn't detect it i had to witness it myself.. is the plugin still working form the update?
nvm found @Wulf post -
-
The anticheat should work, but it doesn't communicate with RustDB anymore. Do you get any errors when you start the server?
-
no i dont have errors.i fix it and work good but i need change the distance for ban (fly hack , speed hack , jump hack ) how i can change this?
-
Reneb. I am trying to add lines of code to show the anti cheat messages in console as well as Admin Broadcast.
I am using Puts(Message) but i get an error. Do you know what the syntax is to get this to work?
AntiCheatBroadcastAdmins(string.Format("{0} - rFlyhack ({1}m/s)", player.playerclient.userName, player.distance3D.ToString()));
puts(string.Format("{0} - rFlyhack ({1}m/s)", player.playerclient.userName, player.distance3D.ToString()));
[Oxide] 5:56 PM [Error] AntiCheat.cs(759,4): error CS0120: An object reference is required to access non-static member `Oxide.Plugins.CSharpPlugin.Puts(string, params object[])'
[DOUBLEPOST=1435792352][/DOUBLEPOST]Never mind. I found the answer about Debug.Log
#noob