@ -340,6 +340,11 @@ public class ClientMessagePump implements NetMsgHandler {
@@ -340,6 +340,11 @@ public class ClientMessagePump implements NetMsgHandler {
if(player==null)
return;
if(msg.getNumItems()<1){
ChatManager.chatSystemInfo(player,"You Have Attempted To Dupe. Please Don't");
return;//catch gold dupe for negative numbers
}
if(!NPCVaultBankRangeCheck(player,origin,"bank"))
return;
@ -397,6 +402,11 @@ public class ClientMessagePump implements NetMsgHandler {
@@ -397,6 +402,11 @@ public class ClientMessagePump implements NetMsgHandler {
if(player==null)
return;
if(msg.getNumItems()<1){
ChatManager.chatSystemInfo(player,"You Have Attempted To Dupe. Please Don't");
return;//catch gold dupe for negative numbers
}
if(!NPCVaultBankRangeCheck(player,origin,"bank"))
return;
@ -515,6 +525,11 @@ public class ClientMessagePump implements NetMsgHandler {
@@ -515,6 +525,11 @@ public class ClientMessagePump implements NetMsgHandler {
if(player==null)
return;
if(msg.getAmount()<1){
ChatManager.chatSystemInfo(player,"You Have Attempted To Dupe. Please Don't");
return;//catch gold dupe for negative numbers
}
Accountaccount=player.getAccount();
if(account==null)
@ -531,6 +546,11 @@ public class ClientMessagePump implements NetMsgHandler {
@@ -531,6 +546,11 @@ public class ClientMessagePump implements NetMsgHandler {
if(player==null)
return;
if(msg.getAmount()<1){
ChatManager.chatSystemInfo(player,"You Have Attempted To Dupe. Please Don't");
return;//catch gold dupe for negative numbers
}
Accountaccount=player.getAccount();
if(account==null)
@ -1871,6 +1891,9 @@ public class ClientMessagePump implements NetMsgHandler {
@@ -1871,6 +1891,9 @@ public class ClientMessagePump implements NetMsgHandler {
@ -177,6 +177,8 @@ public class PlayerCharacter extends AbstractCharacter {
@@ -177,6 +177,8 @@ public class PlayerCharacter extends AbstractCharacter {