[Solved] Multiboard Question

Status
Not open for further replies.
Level 11
Joined
Jul 9, 2009
Messages
927
I have a question about multiboards.

How will I make a part of the multiboard only be able to be seen by team one and the other part for team 2 ??

If anyone knows, I would appreciate your help. Credits will be given :)
 
You can only see specific parts of the enemies multiboard like level's and their name but you would not see additional information. What should I do ?? :)
 
You can only see specific parts of the enemies multiboard like level's and their name but you would not see additional information. What should I do ?? :)

maybe do 1 multiboard to each player and show to every player his multiboard? like lets say u have multiboard array, so show to player 1 the multiboard[1] (example if GetLocalPlayer()==Player(0) then show multiboard[1] endif but u can do it with a simple array)

i show a example
JASS:
set a = 0
   loop
        exitwhen a > 9    
         if ( GetLocalPlayer() == Player(a) ) then
                call MultiboardDisplay(udg_Multiboard[a], true)
                call MultiboardMinimize(udg_Multiboard[a],false)
        endif
set a = a + 1
endloop
 
If it's not possible with one multiboard, then it's definitely possible if you have a different multiboard for each player (because you can show/hide multiboards locally per player).
 
Status
Not open for further replies.
Back
Top