| The problem is that it does not list players , tally deats , kills , clock. Can you guys help me out to remake it or fix it ? Il give credits in map  .Its a AoS map
Trigger: Create Multiboard
 Events
  Time - Elapsed game time is 1.00 seconds
 Conditions
 Actions
  Multiboard - Create a multiboard with 4 columns and (6 + PlayersCount) rows, titled Clash In Northrend
  Multiboard - Set the text for (Last created multiboard) item in column 1, row 1 to Player
  If (All Conditions are True) then do (Then Actions) else do (Else Actions)
   If - Conditions
    Multiboard_ShowDeaths Equal to True
   Then - Actions
    Multiboard - Set the text for (Last created multiboard) item in column 2, row 1 to Dead
   Else - Actions
    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 4, row 1 to Deaths
    -------- Now set the fields for the first row, AND our player rows. --------
    Multiboard - Set the display style for (Last created multiboard) item in column 0, row 0 to Show text and Hide icons
    Multiboard - Set the width for (Last created multiboard) item in column 1, row 0 to 10.00% of the total screen width
    If (All Conditions are True) then do (Then Actions) else do (Else Actions)
     If - Conditions
      Multiboard_ShowDeaths Equal to True
     Then - Actions
      Multiboard - Set the width for (Last created multiboard) item in column 2, row 0 to 4.00% of the total screen width
     Else - Actions
      Multiboard - Set the width for (Last created multiboard) item in column 2, row 0 to 0.50% of the total screen width
    Multiboard - Set the width for (Last created multiboard) item in column 3, row 0 to 3.00% of the total screen width
    Multiboard - Set the width for (Last created multiboard) item in column 4, row 0 to 5.00% of the total screen width
    Multiboard - Set the color for (Last created multiboard) item in column 2, row 0 to (70.00%, 70.00%, 70.00%) with 0.00% transparency
    Multiboard - Set the color for (Last created multiboard) item in column 3, row 0 to (70.00%, 70.00%, 70.00%) with 0.00% transparency
    Multiboard - Set the color for (Last created multiboard) item in column 4, row 0 to (70.00%, 70.00%, 70.00%) with 0.00% transparency
    -------- DEFINE PLAYERS ON THE BOARD --------
    Trigger - Turn on Sort Multiboard <gen>
    -------- Alliance Team --------
    Set TempInteger = 2
    Set Multiboard_Spots[1] = TempInteger
    Multiboard - Set the text for (Last created multiboard) item in column 1, row TempInteger to PlayerNamez[1]
    Multiboard - Set the text for (Last created multiboard) item in column 2, row TempInteger to
    Multiboard - Set the text for (Last created multiboard) item in column 3, row TempInteger to 0
    Multiboard - Set the text for (Last created multiboard) item in column 4, row TempInteger to 0
    -------- Scourge Team --------
    Set TempInteger = ((Number of players in PlayersSentinel) + 4)
    Set Multiboard_Spots[7] = TempInteger
    Multiboard - Set the text for (Last created multiboard) item in column 1, row TempInteger to PlayerNamez[7]
    Multiboard - Set the text for (Last created multiboard) item in column 2, row TempInteger to
    Multiboard - Set the text for (Last created multiboard) item in column 3, row TempInteger to 0
    Multiboard - Set the text for (Last created multiboard) item in column 4, row TempInteger to 0
    -------- Clock --------
    Set Multiboard_Clock = ((Number of players) + 6)
    Multiboard - Set the text for (Last created multiboard) item in column 1, row Multiboard_Clock to Game Time:
    Multiboard - Set the text for (Last created multiboard) item in column 3, row Multiboard_Clock to 0:00
    Multiboard - Set the color for (Last created multiboard) item in column 2, row 1 to (100.00%, 100.00%, 100.00%) with 0.00% transparency
    Multiboard - Set the color for (Last created multiboard) item in column 3, row 1 to (100.00%, 100.00%, 100.00%) with 0.00% transparency
    Multiboard - Set the color for (Last created multiboard) item in column 4, row 1 to (100.00%, 100.00%, 100.00%) with 0.00% transparency
    Multiboard - Show (Last created multiboard)
 |