• Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.

[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 :)
 
Level 11
Joined
Jul 9, 2009
Messages
927
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 ?? :)
 
Level 17
Joined
Nov 13, 2006
Messages
1,814
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
 
Level 18
Joined
Jan 21, 2006
Messages
2,552
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.
Top