Jump to content
  • 0

[Java Code]No Enchant In Move.


Question

2 answers to this question

Recommended Posts

  • 0
Posted

open the file RequestEnchantItem in gameserver/network/clientpackets.

 

Find this code:

 

activeChar.getActiveTradeList() != null

Its an if code. above this, add this code:

 

if(activeChar.isMoving())
{
activeChar.sendMessage("You can not enchant while you move");
return;
}

 

Just modify the message if you would like.

  • 0
Posted

open the file RequestEnchantItem in gameserver/network/clientpackets.

 

Find this code:

 

activeChar.getActiveTradeList() != null

Its an if code. above this, add this code:

 

if(activeChar.isMoving())
{
activeChar.sendMessage("You can not enchant while you move");
return;
}

 

Just modify the message if you would like.

Thank You My Friend!

 

Locked.

Guest
This topic is now closed to further replies.


×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock