| 06-26-2004, 07:37 AM | #1 |
How do i show Mulitibaords for a select player/players? Thanks in advanced! |
| 06-26-2004, 12:33 PM | #2 |
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 |
| 06-26-2004, 04:01 PM | #3 | |
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:
Find local player, and display the that board to him! If you still need help, post again... |
| 06-26-2004, 04:03 PM | #4 |
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 |
Or you can do that, which is was I just posted, I deleted it... :P |
| 06-27-2004, 01:34 AM | #6 |
Thanks guys, i gave you both rep |
