Jump to content
  • 0

[help]Gm enchant only those own items without need target


Question

Posted

hello! i want to make to my server the lvl 2 and down can enchant with //enchant command only to those self!

and to delete need target to make ++ items to other one!

don't tell me for enchantover etc!

thank's and please help me!

3 answers to this question

Recommended Posts

  • 0
Posted

i dont understand half of it but i quess that u want command //enchant name part number,

you just need to edit AdminEnchant a bit, dont use activeChar.getTarget() but target name from command :)

  • 0
Posted

i dont understand half of it but i quess that u want command //enchant name part number,

you just need to edit AdminEnchant a bit, dont use activeChar.getTarget() but target name from command :)

i mean i am gm! and i want to enchant your items! the enchant command of gm be allown for enchant my own items only and no for you!

  • 0
Posted

so, in AdminEnchant replace:

L2Object target = activeChar.getTarget();
	if (target == null)
		target = activeChar;
	L2PcInstance player = null;
	if (target instanceof L2PcInstance)
	{
		player = (L2PcInstance) target;
	}
	else
	{
		activeChar.sendPacket(SystemMessageId.INCORRECT_TARGET);
		return;
	}

with:

L2Object target = activeChar;

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..