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

[Trigger] Multiboard(Name/Icon/Kills/Death)

Status
Not open for further replies.
Level 1
Joined
Aug 8, 2008
Messages
3
My friend and I need help making a multiboard. We got the basic structure, but we're not sure how to trigger kills,deaths,levels,etc. We got the basic idea of the multiboard from a tutorial. Heres what we got so far. MultiBoard
  • Events
    • Time - Elapsed game time is 1.00 seconds
    • Conditions
    • Actions
      • Multiboard - Create a multiboard with 4 columns and 16 rows, titled Paintball
      • Multiboard - Hide (Last created multiboard)
      • Multiboard - Set the display style for (Last created multiboard) item in column 0, row 0 to Show text and Hide icons
      • Multiboard - Set the display style for (Last created multiboard) item in column 2, row 0 to Show text and Show 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 5 to Show text and Hide icons
      • Multiboard - Set the display style for (Last created multiboard) item in column 2, row 9 to Show text and Hide icons
      • Multiboard - Set the display style for (Last created multiboard) item in column 2, row 13 to Show text and Hide icons
      • Multiboard - Set the width for (Last created multiboard) item in column 0, row 0 to 3.00% of the total screen width
      • Multiboard - Set the width for (Last created multiboard) item in column 1, row 0 to 11.00% of the total screen width
      • Multiboard - Set the width for (Last created multiboard) item in column 1, row 1 to 12.50% of the total screen width
      • Multiboard - Set the width for (Last created multiboard) item in column 1, row 5 to 12.50% of the total screen width
      • Multiboard - Set the width for (Last created multiboard) item in column 1, row 9 to 12.50% of the total screen width
      • Multiboard - Set the width for (Last created multiboard) item in column 1, row 13 to 12.50% of the total screen width
      • Multiboard - Set the width for (Last created multiboard) item in column 2, row 0 to 3.50% of the total screen width
      • Multiboard - Set the width for (Last created multiboard) item in column 4, row 0 to 4.50% of the total screen width
      • Multiboard - Set the text for (Last created multiboard) item in column 1, row 1 to Team One
      • Multiboard - Set the text for (Last created multiboard) item in column 1, row 5 to Team Two
      • Multiboard - Set the text for (Last created multiboard) item in column 1, row 9 to Team Three
      • Multiboard - Set the text for (Last created multiboard) item in column 1, row 13 to Team Four
      • Multiboard - Set the text for (Last created multiboard) item in column 2, row 1 to Level
      • Multiboard - Set the text for (Last created multiboard) item in column 2, row 5 to Level
      • Multiboard - Set the text for (Last created multiboard) item in column 2, row 9 to Level
      • Multiboard - Set the text for (Last created multiboard) item in column 2, row 13 to Level
      • Multiboard - Set the text for (Last created multiboard) item in column 3, row 1 to Kills
      • Multiboard - Set the text for (Last created multiboard) item in column 3, row 5 to Kills
      • Multiboard - Set the text for (Last created multiboard) item in column 3, row 9 to Kills
      • Multiboard - Set the text for (Last created multiboard) item in column 3, row 13 to Kills
      • Multiboard - Set the text for (Last created multiboard) item in column 4, row 1 to Deaths
      • Multiboard - Set the text for (Last created multiboard) item in column 4, row 5 to Deaths
      • Multiboard - Set the text for (Last created multiboard) item in column 4, row 9 to Deaths
      • Multiboard - Set the text for (Last created multiboard) item in column 4, row 13 to Deaths
      • Multiboard - Show (Last created multiboard)
 
Level 19
Joined
Aug 24, 2007
Messages
2,888
Store what you will change in variables
and modify variables then set multiboard items to values of those variables

like
Unit Dies
Set Kills[Player number of (owner of (triggering unit))] = Kills[Player number of (owner of (triggering unit))]+1
Multiboard - Set value in X - Player number of (owner of (triggering unit)) to Kills[Player number of (owner of (triggering unit))]
 
Status
Not open for further replies.
Top