phyrex1an
Staff Member and irregular helper
- Reaction score
- 445
Sorry that can not be converted. It is the function(?) GetLocalPlayer() that fix your problem and it is not suported by GUI
But this is what it does:
You have one multiboard for each player, everymultiboard displays the value of the player (ShootsLeft[playernumber]) and is called mb[playernumber]
In GUI you cannot choose for wich player you should display which multiboard this JASS solves it like this (explanid in GUI but not alowed in GUI):
Display Multiboard-
Event-
?
Condition-
?
Actions
Loop (Inter A) 1- Number of players
If -
Player[integer A] == GetLocalPlayer() (Checks the local player)
Then
Display Multiboard
Minimize Multiboard
Else-
Do nothing
But this is what it does:
You have one multiboard for each player, everymultiboard displays the value of the player (ShootsLeft[playernumber]) and is called mb[playernumber]
In GUI you cannot choose for wich player you should display which multiboard this JASS solves it like this (explanid in GUI but not alowed in GUI):
Display Multiboard-
Event-
?
Condition-
?
Actions
Loop (Inter A) 1- Number of players
If -
Player[integer A] == GetLocalPlayer() (Checks the local player)
Then
Display Multiboard
Minimize Multiboard
Else-
Do nothing


