HomeUser Control Panel (unavailable in archive)ForumsTutorialsArt GalleryResourcesMaps

Simple multiboard problem

12-01-2004, 02:18 AM#1
harshateja
Is it possible to have a different multiboard for each player or must the same multiboard be placed for everyone. Im trying to use it to list "personal" information like abilities and such and it is obviously different for each player. To sum it up, is it possible to give each player a unique multiboard?

~Thanx in advance~
12-01-2004, 07:02 AM#2
HEZZA
Not realy expert in multiboards, all i know is you have one board....but u can create what u want then show it to a certian player, if thats what you mean.
12-01-2004, 08:42 AM#3
Slugge
yes it is possible, just use : create multiboard for player 1 (red)

and then create 1 for blue and 1 for teal and so on
12-01-2004, 12:46 PM#4
ValIe
There is no "create multiboard for player" trigger
but you could use jass, the "GetLocalPlayer" thing i think
12-01-2004, 02:32 PM#5
AFB-DieHard
Yes, you can compare Local Player with Player(x) and if it is true then show the multiboard for player x!
12-01-2004, 04:09 PM#6
Guest
Code:
custom script: if GetLocalPlayer() == Player(0) then  

// add the showing code here 

custom script: endif 


The only problem with local player is that it can cause desyncs.