Possible to show a multiboard to just one specific person?

Status
Not open for further replies.
You can make it only by jass.
Code:
function Trig_ShowMB1_Actions takes nothing returns nothing
if GetLocalPlayer() == Player(0) then
  call MultiboardDisplay(udg_MB1, true)
endif
endfunction
This will show a multiboard to player 1 (red)
 
  • Player Group - Pick every player in Player Group - Player 1 (Red) and do (Multiboard - Show (Last created multiboard))
umm, wouldn't it be easier to just add this to the end of the multiboard trigger?
 
  • Player Group - Pick every player in Player Group - Player 1 (Red) and do (Multiboard - Show (Last created multiboard))
umm, wouldn't it be easier to just add this to the end of the multiboard trigger?

Show Last Created Multiboard is a global instance, so it would show it for all players regardless of whether or not you do what you did.
--donut3.5--
 
Show Last Created Multiboard is a global instance, so it would show it for all players regardless of whether or not you do what you did.
--donut3.5--
Not doubting you or anything, but why do they give you the option of showing it to a group (and have that group be just 1 player) if it doesn't work...
 
Not doubting you or anything, but why do they give you the option of showing it to a group (and have that group be just 1 player) if it doesn't work...

There are lots of things Blizzard did crappily with their GUI.
Although I might have been thinking of something else, I'm pretty sure this one doesn't work the way you want it to. Though I didn't test this.
--donut3.5--
 
Status
Not open for further replies.
Back
Top