• 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.

[Solved] Trigger Reordering

Status
Not open for further replies.
How can I change the order in which a trigger's JASS code is placed into the war3map.j file? I realize I delete and create triggers to eventually get the order I want, but this slow, tedious, and knowing me, I'll accidentally mess something up.

Simply Moving the triggers in the trigger editor doesn't work afaik.

I am not afraid to go digging around the map archive either. (maybe in the war3map.wtg file?)
 
Level 26
Joined
Aug 18, 2009
Messages
4,097
Well if you used vJass, it would be easier. It offers requirements for example. You can write a library and make another library/scope require it. The required block is placed above when compiling.

JASS:
library A requires B
endlibrary

library B
endlibrary

B is declared first since A needs it.
 
Level 19
Joined
Aug 8, 2007
Messages
2,765
No, I use Windows because I play games and write games for Windows, though they could compile on any OS.

I believe the implication on his question was not specifically asking if you weren't on OS but rather the reason why you refuse to use JNGP.
 
Status
Not open for further replies.
Top