• Check out the results of the Techtree Contest #19!
  • 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.
  • Create a void inspired texture for Warcraft 3 and enter Hive's 34th Texturing Contest: Void! Click here to enter!
  • The Hive's 22nd Icon Contest: Creep Abilities is now concluded, time to vote for your favourite set of icons! Click here to vote!

[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