Go
Wc3C.net
»
Warcraft III Modding
»
Developer's Corner
»
Triggers & Scripts
»
Loop question
Loop question
06-13-2003, 05:23 PM
#1
combatken
Probably easy as pie, but..
How do I make a loop perform 2 actions, or a then statement perform 2 actions in an if-then-else action?
06-13-2003, 05:58 PM
#2
ChoboMapper
without using jass you can only call another trigger in your loop that has all of the actions inside of it, with no event/condition.
06-13-2003, 06:01 PM
#3
Guest
and when translated, that means:
for each integer A from # to # run trigger
and in that trigger you have your 2 actions that use integer A to refer to whatever it is.
06-13-2003, 06:15 PM
#4
combatken
So the integer A from a loop carries over to those triggers as well?Didn't know that :D