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

[Solved] MultiBoard help

Status
Not open for further replies.
Level 1
Joined
Jan 23, 2012
Messages
1
The multiboard shows up but when there are less then 10 players the player's score is not in the right place(for team 2 excatly) like player X's score in player Y's place and sometimes it stays 0.This is the trigger I use
  • multiboard
    • Events
      • Time - Elapsed game time is 0.00 seconds
    • Conditions
    • Actions
      • Multiboard - Create a multiboard with 3 columns and ((Number of players in player_playing) + 4) rows, titled Scores
      • Set multiboard_flag = (Last created multiboard)
      • Multiboard - Set the text for multiboard_flag item in column 1, row 1 to (cc_players[0] + (Team + cc_endtag))
      • Multiboard - Set the text for multiboard_flag item in column 2, row 1 to (cc_players[0] + (score + cc_endtag))
      • Multiboard - Set the text for multiboard_flag item in column 3, row 1 to (cc_players[0] + (Deaths + cc_endtag))
      • Multiboard - Set the text for multiboard_flag item in column 1, row 2 to (cc_players[1] + (Team 1 + cc_endtag))
      • Multiboard - Set the text for multiboard_flag item in column 2, row 2 to (String(team_score))
      • Multiboard - Set the text for multiboard_flag item in column 3, row 2 to (String(team_death))
      • Multiboard - Set the text for multiboard_flag item in column 1, row 3 to (cc_players[2] + (Team 2 + cc_endtag))
      • Multiboard - Set the text for multiboard_flag item in column 2, row 3 to (String(team_score2))
      • Multiboard - Set the text for multiboard_flag item in column 3, row 3 to (String(team_death2))
      • Multiboard - Set the text for multiboard_flag item in column 1, row 4 to (cc_players[0] + (Player name + cc_endtag))
      • Multiboard - Set the text for multiboard_flag item in column 2, row 4 to (cc_players[0] + (score + cc_endtag))
      • Multiboard - Set the text for multiboard_flag item in column 3, row 4 to (cc_players[0] + (Deaths + cc_endtag))
      • Multiboard - Set the text for multiboard_flag item in column 3, row 5 to (String(Player_deaths[1]))
      • Multiboard - Set the text for multiboard_flag item in column 3, row 6 to (String(Player_deaths[2]))
      • Multiboard - Set the text for multiboard_flag item in column 3, row 7 to (String(Player_deaths[3]))
      • Multiboard - Set the text for multiboard_flag item in column 3, row 8 to (String(Player_deaths[4]))
      • Multiboard - Set the text for multiboard_flag item in column 3, row 9 to (String(Player_deaths[5]))
      • Multiboard - Set the text for multiboard_flag item in column 3, row 10 to (String(Player_deaths[6]))
      • Multiboard - Set the text for multiboard_flag item in column 3, row 11 to (String(Player_deaths[7]))
      • Multiboard - Set the text for multiboard_flag item in column 3, row 12 to (String(Player_deaths[8]))
      • Multiboard - Set the text for multiboard_flag item in column 3, row 13 to (String(Player_deaths[9]))
      • Multiboard - Set the text for multiboard_flag item in column 3, row 14 to (String(Player_deaths[10]))
      • Multiboard - Set the text for multiboard_flag item in column 2, row 5 to (String(player_kills[1]))
      • Multiboard - Set the text for multiboard_flag item in column 2, row 6 to (String(player_kills[2]))
      • Multiboard - Set the text for multiboard_flag item in column 2, row 7 to (String(player_kills[3]))
      • Multiboard - Set the text for multiboard_flag item in column 2, row 8 to (String(player_kills[4]))
      • Multiboard - Set the text for multiboard_flag item in column 2, row 9 to (String(player_kills[5]))
      • Multiboard - Set the text for multiboard_flag item in column 2, row 10 to (String(player_kills[6]))
      • Multiboard - Set the text for multiboard_flag item in column 2, row 11 to (String(player_kills[7]))
      • Multiboard - Set the text for multiboard_flag item in column 2, row 12 to (String(player_kills[8]))
      • Multiboard - Set the text for multiboard_flag item in column 2, row 13 to (String(player_kills[9]))
      • Multiboard - Set the text for multiboard_flag item in column 2, row 14 to (String(player_kills[10]))
      • For each (Integer A) from 1 to ((Number of players in player_playing) + 4), do (Actions)
        • Loop - Actions
          • Multiboard - Set the display style for multiboard_flag item in column 1, row (Integer A) to Show text and Hide icons
          • Multiboard - Set the display style for multiboard_flag item in column 2, row (Integer A) to Show text and Hide icons
          • Multiboard - Set the display style for multiboard_flag item in column 3, row (Integer A) to Show text and Hide icons
          • Multiboard - Set the width for multiboard_flag item in column 1, row (Integer A) to 9.00% of the total screen width
          • Multiboard - Set the width for multiboard_flag item in column 2, row (Integer A) to 5.00% of the total screen width
          • Multiboard - Set the width for multiboard_flag item in column 3, row (Integer A) to 9.00% of the total screen width
          • Set player_row = (player_row + 1)
          • Set player_colour = (player_colour + 1)
          • Multiboard - Set the text for multiboard_flag item in column 1, row player_row to (cc_players[player_colour] + ((Name of (Player(player_colour))) + cc_endtag))
      • Multiboard - Show multiboard_flag
no body answered me.. that's alright because I've fixed it already .
 
Last edited by a moderator:
Status
Not open for further replies.
Top