Jump to content
  • 0

allow trade augment weapons


Question

4 answers to this question

Recommended Posts

  • 0
Posted

Go to com.l2jfrozen.gameserver.network.clientpackets.AddTradeItem.java

find

 

		if (item.isAugmented())
		return;

Delete it

 

then go to com.l2jfrozen.gameserver.model.TradeList.java

find and delete

			if(oldItem.getAugmentation() != null)
		{
			String msg = "Transaction failed. Augmented items may not be exchanged.";
			_owner.sendMessage(msg);
			player.sendMessage(msg);
			msg = null;
			return false;
		}

 

That should work but i'm not sure

 

 

 

  • 0
Posted

so u didnt remove all checks, find more with isAugmented()

also, as far as i know augmentations on items cannot be viewed while trading items.

  • 0
Posted

so u didnt remove all checks, find more with isAugmented()

also, as far as i know augmentations on items cannot be viewed while trading items.

 

Yah you can't see the augment while trading or selling it so it opens up more scam possibility and stuff so I guess it's a downside to it .__. (missing packet?)

Guest
This topic is now closed to further replies.


×
×
  • Create New...