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

Creating Different Multiboards

Status
Not open for further replies.
Level 10
Joined
May 21, 2006
Messages
323
Multiboard with array Variable

Loop Playergroup
Set PlayerNumber = Number of Picked Player
Create a Multiboard with blabla
Set Last Created Multiboard = Multiboard[PlayerNumber]
Set Title of Last created Multiboard to text ... blabla
 
Level 23
Joined
Apr 16, 2012
Messages
4,041
Multiboard with array Variable

Loop Playergroup
Set PlayerNumber = Number of Picked Player
Create a Multiboard with blabla
Set Last Created Multiboard = Multiboard[PlayerNumber]
Set Title of Last created Multiboard to text ... blabla

you can only display one multiboard at a time, thats why we must display them locally
Also locally creating handles may and most likely will desync

just create n multiboards(n - players playing) and then do(maybe not exactly)
JASS:
local integer i = 0
loop
    if GetLocalPlayer(Player(i)) then
        call MultiboardDisplay(multiboard, true)
        call MultiboardMinimize(multiboard, true)
        call MultiboardMinimize(multiboard, false) //to open it
    endif
    exitwhen i == 11 //for 12 players
    set i = i+1
endloop
 
Status
Not open for further replies.
Top