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

How do i get these connected to each other?

Status
Not open for further replies.
Level 7
Joined
Feb 6, 2008
Messages
133
like this trigger connected to the main trigger .. these doesnt work!

  • Health
    • Events
      • Time - Every 0.10 seconds of game time
    • Conditions
      • (This trigger) Equal to Multiboard <gen>
    • Actions
      • Multiboard - Set the text for (Last created multiboard) item in column 2, row 1 to ((String((Integer((Percentage life of Rivers Farm 0011 <gen>))))) + %)
      • Multiboard - Set the text for (Last created multiboard) item in column 2, row 2 to ((String((Integer((Percentage life of Hive Farm 0012 <gen>))))) + %)
  • Multiboard
    • Events
      • Time - Elapsed game time is 0.00 seconds
    • Conditions
    • Actions
      • Multiboard - Create a multiboard with 2 columns and 2 rows, titled Farm Health
      • Multiboard - Set the display style for (Last created multiboard) item in column 1, row 1 to Show text and Hide icons
      • Multiboard - Set the display style for (Last created multiboard) item in column 1, row 2 to Show text and Hide icons
      • Multiboard - Set the display style for (Last created multiboard) item in column 2, row 1 to Show text and Hide icons
      • Multiboard - Set the display style for (Last created multiboard) item in column 2, row 2 to Show text and Hide icons
      • Multiboard - Set the width for (Last created multiboard) item in column 1, row 1 to 4.00% of the total screen width
      • Multiboard - Set the width for (Last created multiboard) item in column 2, row 1 to 4.00% of the total screen width
      • Multiboard - Set the width for (Last created multiboard) item in column 1, row 2 to 4.00% of the total screen width
      • Multiboard - Set the width for (Last created multiboard) item in column 2, row 2 to 4.00% of the total screen width
      • Multiboard - Set the text for (Last created multiboard) item in column 1, row 1 to Rivers
      • Multiboard - Set the text for (Last created multiboard) item in column 1, row 2 to Hive
      • Multiboard - Minimize (Last created multiboard)
 
Level 8
Joined
Dec 29, 2006
Messages
359
first off, you need to remove the (This Trigger) Equal to Multiboard <gen> because that trigger isn't equal to Multiboard so your first trigger won't fire. Second, you need to add this action to your first trigger.
  • Action
    • Events
    • Conditions
    • Actions
      • Trigger - Run Multiboard <gen> (checking conditions)
 
Status
Not open for further replies.
Top