• Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.

Strange bug , the map now cannot have any trigger!

Status
Not open for further replies.
Level 4
Joined
Dec 22, 2016
Messages
67
Hi , I was trying to see what does ((Skip remaining actions)) do - that I wanted to see if I can use it to end a loop for making spells MUI - then I used it in few triggers and some test , seemed to work but then I went for a break and after I return and run the map for a test , I saw no triggers working , even on initialization , I even deleted all triggers and then made a simple new trigger (create a unit at blah blah ...) even now it didn't work! It seems this map is somehow locked too any trigger!
I there anyway to save it or I shall go to my backup?
 
Level 16
Joined
Mar 25, 2016
Messages
1,327
You could try importing triggers. Sometimes maps get corrupted. If you have a backup that is not too old I would go back to it.


Skip remaining actions skips all remaining actions in the entire trigger.
If you want to exit a loop you have to options:

GUI:
Set the counter variable above the upper border of the loop. (loop from 1 to 10, set loop variable to >10)
In GUI you cannot change the loop counters A/B, so you need to use your own variable as counter variable.
GUI Custom script:
Use custom script: exitwhen true
 
Status
Not open for further replies.
Top