• 🏆 Texturing Contest #33 is OPEN! Contestants must re-texture a SD unit model found in-game (Warcraft 3 Classic), recreating the unit into a peaceful NPC version. 🔗Click here to enter!

[Help] Add and remove attachments with one spell

Status
Not open for further replies.
Level 2
Joined
Aug 4, 2009
Messages
10
hi there,i didnt get it to work so i request help for it,how do i make a trigger which adds a sword for example through a spell and if i use the spell again the sword is gone?please help :eekani:
 
Level 8
Joined
Feb 15, 2009
Messages
463
u need a global boolean here XXX with start value false

event:a unit starts the effect of ability
condition: casting spell = your spell
actions
if XXX = false then
set XXX = true
..make attachment
else
set XXX = false
..unmake attachment
endif
 
Status
Not open for further replies.
Top