• 🏆 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!

Help with Fear Spell!

Status
Not open for further replies.
Level 6
Joined
Aug 26, 2007
Messages
107
This is the Trigger: Event: A unit Finishes casting an ability. Condition: Ability Being cast = to fear. Actions: Set Variable (Feared) = to Targeted unit of spell being cast. Set Variable (Fearer) = to Casting unit. Pause Feared. Order Feared to move to center of (Region). Wait 30 seconds. Unpause Feared. That's the trigger. It wont work. All it does is it makes the unit hold still for 30 seconds. Any help here...?
 
Level 12
Joined
Apr 27, 2008
Messages
1,228
Code:
Pause Feared
You say you pause it.
As Huurka said that is the problem.
When a unit is pause it will not do anything(like follow orders, like the one you give it later).
That explains why it stands still.

You know, some spells are complicated.

Easiest way would be to order the player that owns the feared unit to unselect it, and add a buff to it.
Than make a trigger:
Events:
A unit is selected
Conditions:
Selected Unit has the buff
Actions:
Selection: Remove selected unit from selection.
 
Level 6
Joined
Aug 26, 2007
Messages
107
Re-Trigger

  • Event: A unit Finishes casting an ability.
  • Conditions: Ability Being cast = to fear.
  • Actions:
  • Set Variable (Feared) = to Targeted unit of spell being cast.
  • Set Variable (Fearer) = to Casting unit.
  • Order Feared to move to center of (Region).
    • Change owner of Feared to Neutral Passive.
  • Change movement speed of Feared to 522.
  • Wait 20 seconds.
  • Change owner of Feared to Player 12 (Brown).
  • Change movement speed of Feared to Default.
 
Level 12
Joined
Apr 27, 2008
Messages
1,228
No need to.
It already doesn't leak.
Or it does, but a location - center of region.
 
Level 12
Joined
Apr 27, 2008
Messages
1,228
He has stored the units in variables so there will be no problem using those variables(though it is not MUI).
Waits Both of them are very inaccurate(talking about really small numbers, but they make the difference).
Rather then that the only problem with them is that after you use a wait, you should not use any event responses or the trigger will not work(the part after the wait with the event responses).
 
Level 17
Joined
May 6, 2008
Messages
1,598
He has stored the units in variables so there will be no problem using those variables(though it is not MUI).
Waits Both of them are very inaccurate(talking about really small numbers, but they make the difference).
Rather then that the only problem with them is that after you use a wait, you should not use any event responses or the trigger will not work(the part after the wait with the event responses).
Meant making it not MUI. crap. oh well.
 
Status
Not open for further replies.
Top