Browse Source

all items form "Noob Helper" cost 2 gold

lakebane-new
FatBoy-DOTC 4 months ago
parent
commit
7e457fa17b
  1. 2
      src/engine/net/client/ClientMessagePump.java

2
src/engine/net/client/ClientMessagePump.java

@ -1441,6 +1441,8 @@ public class ClientMessagePump implements NetMsgHandler { @@ -1441,6 +1441,8 @@ public class ClientMessagePump implements NetMsgHandler {
if (profit < 1)
profit = 1;
cost *= profit;
if(npc.getContractID() == 1502041)
cost = 2;
if (gold.getNumOfItems() - cost < 0) {
//dont' have enough goldItem exit!
// chatMan.chatSystemInfo(pc, "" + "You dont have enough gold.");

Loading…
Cancel
Save