- Joined
- Apr 6, 2010
- Messages
- 3,164
I have a problem with one trigger working as intended, but the other which should have an opposite effect instead does the same thing.
The idea is that the map is divided into several levels, and units can only move between levels by using the ascend/descend abilities.
For some reason, the Ascend trigger works fine, but using Descend is the same as Ascend: the unit is moved up instead of down.
Here are the triggers:
The idea is that the map is divided into several levels, and units can only move between levels by using the ascend/descend abilities.
For some reason, the Ascend trigger works fine, but using Descend is the same as Ascend: the unit is moved up instead of down.
Here are the triggers:
-
ascend
-
Events
-
Unit - A unit Starts the effect of an ability
-
-
Conditions
-
(Ability being cast) Equal to Ascend
-
-
Actions
-
Unit - Move (Triggering unit) instantly to ((Position of (Triggering unit)) offset by (0.00, 8000.00))
-
-
-
descend
-
Events
-
Unit - A unit Starts the effect of an ability
-
-
Conditions
-
(Ability being cast) Equal to Descend
-
-
Actions
-
Unit - Move (Triggering unit) instantly to ((Position of (Triggering unit)) offset by (0.00, -8000.00))
-
-