Do a @command when equipped.

karazu

New member
Messages
1,115
Points
0
Hello guys, can u tell me what is the correct way in doing my plan?


This Item will do this command with me when worn


if Equipped it will @aura 999 for example and then when unequipped it will do @ aura 0

Code:
	Id: 20399	AegisName: "TEST"	Name: "TEST	Type: 5	Buy: 20	Weight: 100	Slots: 0	Job: 0xFFFFFFFF	Loc: 2097152	EquipLv: 10	Refine: false	Script: <"		        {aura(999);},{aura(0);}                 <--------------- I dont know if that is correct since its giving error.			 ">}, 
 
Last edited by a moderator:
Code:
OnEquipScript: <" OnEquip Script (can also be multi-line) ">OnUnequipScript: <" OnUnequip Script (can also be multi-line) ">
 
OnEquipScript: <" OnEquip Script (can also be multi-line) ">OnUnequipScript: <" OnUnequip Script (can also be multi-line) ">
I will test. Thank you very much

I tried but i got error.

OnEquipScript: <" OnEquip Script (atcommand "@aura 999";) ">OnUnequipScript: <" OnUnequip Script (atcommand "@aura 0";) "> 
is this the correct one?

 
Last edited by a moderator:
I tried but i got error.

OnEquipScript: <" OnEquip Script (can also be multi-line) ">OnUnequipScript: <" OnUnequip Script (can also be multi-line) ">

Code:
OnEquipScript: <" OnEquip Script (atcommand "@aura 999";) ">OnUnequipScript: <" OnUnequip Script (atcommand "@aura 0";) "> 
is this the correct one?
Try this:

Code:
OnEquipScript: <" { atcommand "@aura999"; } ">OnUnequipScript: <" { atcommand "@aura 0"; } ">
 
I tried but i got error.

OnEquipScript: <" OnEquip Script (can also be multi-line) ">OnUnequipScript: <" OnUnequip Script (can also be multi-line) ">

Code:
OnEquipScript: <" OnEquip Script (atcommand "@aura 999";) ">OnUnequipScript: <" OnUnequip Script (atcommand "@aura 0";) "> 
is this the correct one?
Try this:

OnEquipScript: <" { atcommand "@aura999"; } ">OnUnequipScript: <" { atcommand "@aura 0"; } ">
This works. Thank you

 
Back
Top