HomeUser Control Panel (unavailable in archive)ForumsTutorialsArt GalleryResourcesMaps

Show Multiboard for Player?

12-18-2006, 03:34 AM#1
ixmike88
Is it possible to show a multiboard for only one specific player instead of everybody?
12-18-2006, 03:44 AM#2
zen87
well leader board.. yes, multi board.. no, i guess
12-18-2006, 03:57 AM#3
PipeDream
Collapse JASS:
if GetLocalPlayer() == desiredplayer then
    call MultiboardDisplay(mb,true)
endif
12-18-2006, 04:15 AM#4
ixmike88
Quote:
Originally Posted by PipeDream
Collapse JASS:
if GetLocalPlayer() == desiredplayer then
    call MultiboardDisplay(mb,true)
endif

This shows the multiboard to one player?
12-18-2006, 10:09 AM#5
blu_da_noob
That, or call MultiboardDisplay(mb,GetLocalPlayer() == desiredplayer) will show the board to 'desiredplayer'. This one would hide it for everyone else if it's shown for them, pipe's would just show to one person. Choose whichever you need.
12-18-2006, 10:10 AM#6
iNfraNe
you would think so? Why on earth would he otherwise post it here ;)
12-18-2006, 08:49 PM#7
ixmike88
Right now I have a statistics multiboard which is toggleable for each player whenever they type something, right now it's colliding with the other multiboard making it disfunctional.