HomeUser Control Panel (unavailable in archive)ForumsTutorialsArt GalleryResourcesMaps

Show Multiboard for player

06-26-2004, 07:37 AM#1
High Incarnate
How do i show Mulitibaords for a select player/players?

Thanks in advanced!
06-26-2004, 12:33 PM#2
johnfn
Unless I am gravely mistaken, there is no way. Even when you examine the JASS function for displaying multiboards:
Code:
native MultiboardDisplay                takes multiboard lb, boolean show returns nothing
Of course now I am confused because the game creates a one person multiboard when one peron left and its sharing resources with the other person. Feel free to prove me wrong, anyone, but this is the best I could find.
06-26-2004, 04:01 PM#3
linkmaster23
There is a way. Just find the Local Player and show it to them. Open up Common.j, hit Ctrl-F, and type in Multiboard, and find something that says Local, or something revovling around boards. I'll get it get it for you, but next time it's funner to find cool JASS stuff yourself. :)

Quote:
Originally Posted by Commn.j
native MultiboardDisplay takes multiboard lb, boolean show returns nothing

Find local player, and display the that board to him! If you still need help, post again...
06-26-2004, 04:03 PM#4
AIAndy
The display status of a multiboard is local so an if with local player can be used to show it to one player only.
Code:
if GetLocalPlayer() == player_to_display_to then
  call MultiboardDisplay(my_multiboard, true)
endif
06-26-2004, 04:06 PM#5
linkmaster23
Or you can do that, which is was I just posted, I deleted it... :P
06-27-2004, 01:34 AM#6
High Incarnate
Thanks guys, i gave you both rep