Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Index: C:/Users/George/Desktop/Lineage II Server Files/Workspace/Gameserver/java/com/l2jserver/gameserver/model/actor/instance/L2PcInstance.java
- ===================================================================
- --- C:/Users/George/Desktop/Lineage II Server Files/Workspace/Gameserver/java/com/l2jserver/gameserver/model/actor/instance/L2PcInstance.java (revision 4447)
- +++ C:/Users/George/Desktop/Lineage II Server Files/Workspace/Gameserver/java/com/l2jserver/gameserver/model/actor/instance/L2PcInstance.java (working copy)
- @@ -15095,4 +15350,75 @@
- // Maintain = 1
- return 0;
- }
- + String code;
- + /**
- + * @param finalString
- + */
- + public void setCode(StringBuilder finalString)
- + {
- + code = finalString.toString();
- + }
- + public String getCode()
- + {
- + return code;
- + }
- + private boolean codeRight = true;
- + public void setCodeRight(boolean code){
- + codeRight = code;
- + }
- + public boolean isCodeRight()
- + {
- + return codeRight;
- + }
- + private int Kills = -1;
- + public void setKills(int AntiBotKills)
- + {
- + Kills = AntiBotKills;
- + }
- + public int getKills()
- + {
- + return Kills;
- + }
- + private int Tries = 3;
- + public void setTries(int AntiBotTries)
- + {
- + Tries = AntiBotTries;
- + }
- + public int getTries()
- + {
- + return Tries;
- + }
- }
Advertisement
Add Comment
Please, Sign In to add comment