• 🏆 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!
  • It's time for the first HD Modeling Contest of 2024. Join the theme discussion for Hive's HD Modeling Contest #6! Click here to post your idea!

Editing the Charm Spell with triggers? {killing the last charmed unit}

Status
Not open for further replies.
Level 4
Joined
Jul 18, 2008
Messages
76
Hey, ive been trying to edit the charm spell with triggers but without succes.. Can you help me?

I want it to only be possible to charm one creep, meaning if another creep is charmed, the previous dies.

I didnt think it would be that hard to create, i just didnt succeed.. Any ideas?

Thanks
 
Level 18
Joined
Jan 21, 2006
Messages
2,552
Well you'll need a variable to store the unit that is currently charmed.

Then, when a unit starts the effect of the ability Charm, you'll check whether the "stored" unit is equal to "No unit" or is dead. If either of these conditions are true, then the new unit can be stored in that variable without any other work.

If there is a unit currently "occupying" the variable, then you'll need to kill it (or kill the new one, whichever).
 
Level 8
Joined
Jan 8, 2010
Messages
493
with Berbanog's idea, here's a trigger.
  • Events
    • Unit - A unit Starts the effect of an ability
  • Conditions
    • (Ability being cast) Equal to Charm
  • Actions
    • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
      • If - Conditions
        • Or - Any (Conditions) are true
          • Conditions
            • CharmUnit Equal to No unit
            • (CharmUnit is dead) Equal to True
      • Then - Actions
        • Set CharmUnit = (Target unit of ability being cast)
      • Else - Actions
        • Unit - Kill CharmUnit
        • Set CharmUnit = (Target unit of ability being cast)
CharmUnit is the charmed unit.
 
Status
Not open for further replies.
Top