Guest User

L2PcInstance.java Antibot v2

a guest
Jun 15th, 2011
646
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.30 KB | None | 0 0
  1. Index: C:/Users/George/Desktop/Lineage II Server Files/Workspace/Gameserver/java/com/l2jserver/gameserver/model/actor/instance/L2PcInstance.java
  2. ===================================================================
  3. --- C:/Users/George/Desktop/Lineage II Server Files/Workspace/Gameserver/java/com/l2jserver/gameserver/model/actor/instance/L2PcInstance.java   (revision 4447)
  4. +++ C:/Users/George/Desktop/Lineage II Server Files/Workspace/Gameserver/java/com/l2jserver/gameserver/model/actor/instance/L2PcInstance.java   (working copy)
  5. @@ -15095,4 +15350,75 @@
  6.         // Maintain = 1
  7.         return 0;
  8.     }
  9. +       String code;
  10. +       /**
  11. +        * @param finalString
  12. +        */
  13. +       public void setCode(StringBuilder finalString)
  14. +       {
  15. +           code = finalString.toString();
  16. +       }
  17. +       public String getCode()
  18. +       {
  19. +           return code;
  20. +       }
  21. +       private boolean codeRight = true;
  22. +       public void setCodeRight(boolean code){
  23. +           codeRight = code;
  24. +       }
  25. +       public boolean isCodeRight()
  26. +       {
  27. +           return codeRight;
  28. +       }
  29. +       private int Kills = -1;
  30. +       public void setKills(int AntiBotKills)
  31. +       {
  32. +           Kills = AntiBotKills;
  33. +       }
  34. +       public int getKills()
  35. +       {
  36. +           return Kills;
  37. +       }
  38. +       private int Tries = 3;
  39. +       public void setTries(int AntiBotTries)
  40. +       {
  41. +           Tries = AntiBotTries;
  42. +       }
  43. +       public int getTries()
  44. +       {
  45. +           return Tries;
  46. +       }
  47.  }
Advertisement
Add Comment
Please, Sign In to add comment