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

Map Initialization

Status
Not open for further replies.
Level 4
Joined
Dec 3, 2012
Messages
51
Hi,

My map currently has about a dozen triggers that use the "map initialization" event. Each trigger is sorted into the appropriate category, as I have quite a few triggers and like to keep them organized. I was wondering, however, if it is somehow bad to have multiple map initialization events, and if I should try to combine them into fewer (or a single) trigger, and use comments to sort them. Sorry if this has already been discussed.
 
Level 37
Joined
Mar 6, 2006
Messages
9,240
You can also have one trigger with map initialization, and in that trigger you run the other initialization triggers. Leave the others without an event.
  • Untitled Trigger 003
    • Events
      • Map initialization
    • Conditions
    • Actions
      • Trigger - Run Untitled Trigger 001 <gen> (ignoring conditions)
      • Trigger - Run Untitled Trigger 002 <gen> (ignoring conditions)
      • Trigger - Run Untitled Trigger 003 <gen> (ignoring conditions)
 
Status
Not open for further replies.
Top