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!
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
Locally hide various fields for each team. Should be possible with 1 multiboard. Do remember that generating multiboard items and strings can not be done locally without a split.
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).
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.