• 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.

Possible to show a multiboard to just one specific person?

Status
Not open for further replies.
Level 7
Joined
Oct 8, 2008
Messages
200
Is it possible to show a multiboard to just one specific person? And different one to another person?
 
Level 9
Joined
Apr 3, 2008
Messages
700
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)
 
Level 3
Joined
Nov 2, 2008
Messages
38
  • 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?
 
Level 27
Joined
Feb 22, 2006
Messages
3,052
  • 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--
 
Level 3
Joined
Nov 2, 2008
Messages
38
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...
 
Level 27
Joined
Feb 22, 2006
Messages
3,052
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.
Top