1. 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.
     
  2. 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.
     
  3. 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)
    [DOUBLEPOST=1433914926][/DOUBLEPOST][​IMG]

    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 + "\"");
                }
            }
    
    Puts brings me error.

    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
  4. 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.
     
  5. you cant put Puts inside a static function.
    you have to use: Debug.Log("TEXT")
    instead
     
  6. 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 ?
     
  7. Wulf

    Wulf Community Admin

    If you want to use a 2.0 plugin, you'll need to update to Oxide 2.0. There are numerous plugins available for 2.0. Oxide 1.18 isn't supported anymore.
     
  8. 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 ?
     
  9. Wulf

    Wulf Community Admin

  10. 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 :)
     
  11. Please explain how to install anti-cheat to make it work.
     
  12. (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' ??
     
  13. Hello,
    there are solution against the UnBanTool ?
     
  14. 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
    }
    plz help me guys..
     
    Last edited by a moderator: Jun 28, 2015
  15. Oxide 1.18 is unsupported
     
  16. 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
     
  17. i need help for oxide 2 i need installing in my oxide 1.8 server..
     
  18. The anticheat should work, but it doesn't communicate with RustDB anymore. Do you get any errors when you start the server?
     
  19. 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?
     
  20. 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