Jump to content

Question

Posted
Hello everyone.

 

I have a problem here. Problem no, actually I need something and I tried everything and I did not succeed.

 

I wanted to make an autoloot mod just for adena.

I tried everything on L2Attackable and I did not succeed.

 

 

Does anyone know any mod, or could you help me?

 

Thank you in advance.

2 answers to this question

Recommended Posts

  • 0
Posted
// Check if the autoLoot mode is active
if ((isRaid() && Config.AUTO_LOOT_RAID) || (!isRaid() && Config.AUTO_LOOT))
	player.doAutoLoot(this, item); // Give this or these Item(s) to the L2PcInstance that has killed the L2Attackable
else
{
	 if (item.getId() == 57)
		 player.addAdena("Loot", item.getValue(), player, true);
	 else
		 dropItem(player, item);
}

?

  • 0
Posted
// Check if the autoLoot mode is active
if ((isRaid() && Config.AUTO_LOOT_RAID) || (!isRaid() && Config.AUTO_LOOT))
	player.doAutoLoot(this, item); // Give this or these Item(s) to the L2PcInstance that has killed the L2Attackable
else
{
	 if (item.getId() == 57)
		 player.addAdena("Loot", item.getValue(), player, true);
	 else
		 dropItem(player, item);
}

?

 

Thanks for the answer.

 

I'm using l2jserver latest branch. I had forgotten to mention the version.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...