I'm trying to set up a multiboard but I've never worked with them before and don't really understand what I am doing. I looked over the tutorials on them but they didn't really help me understand much, neither did searching past posts.
I want to create a multiboard that is as tall as the number of user players playing, that shows the values of their hero's current HP as well as the integers of Hunger and Fatigue.
I have this so far:
My current issue is trying to set it so say if there are players in slots 1,5, and 7 that their names and data show up in rows 2, 3, and 4.
I set player 1, 2,3 and 7 to User, Biggs (Computer), Wedge (Computer) and Vicks (Computer), but my leaderboard only returns three rows of the discriptions, player one, and then 'Comput'. Why won't it fill them out with the other computers and their names?
When I start the game it only shows me and Computer blue, how do I make the game recognize the other computers? Oh wait that is in Used Fixed Player Settings under Forces.
Now my issue is getting it to set and upadate the proper data in the right rows.
I want to create a multiboard that is as tall as the number of user players playing, that shows the values of their hero's current HP as well as the integers of Hunger and Fatigue.
I have this so far:
-
ConditionMultiboard Copy Copy
-
Events
-
Time - Elapsed game time is 1.00 seconds
-
-
Conditions
-
Actions
-
Player Group - Pick every player in (All players) and do (Actions)
-
Loop - Actions
-
If (All Conditions are True) then do (Then Actions) else do (Else Actions)
-
If - Conditions
-
((Picked player) slot status) Equal to Is playing
-
-
Then - Actions
-
Set PlayersPlaying = (PlayersPlaying + 1)
-
-
Else - Actions
-
-
-
-
Set PlayersPlaying = (PlayersPlaying + 1)
-
Multiboard - Create a multiboard with 4 columns and PlayersPlaying rows, titled Player Condition
-
Multiboard - Set the display style for (Last created multiboard) item in column 0, row 0 to Show text and Hide icons
-
Multiboard - Set the width for (Last created multiboard) item in column 0, row 0 to 4.00% of the total screen width
-
Multiboard - Set the color for (Last created multiboard) item in column 0, row 1 to (100.00%, 80.00%, 20.00%) with 0.00% transparency
-
Multiboard - Set the width for (Last created multiboard) item in column 1, row 0 to 8.00% of the total screen width
-
Multiboard - Set the width for (Last created multiboard) item in column 4, row 0 to 5.00% of the total screen width
-
Multiboard - Set the text for (Last created multiboard) item in column 1, row 1 to Player
-
Multiboard - Set the text for (Last created multiboard) item in column 2, row 1 to Health
-
Multiboard - Set the text for (Last created multiboard) item in column 3, row 1 to Hunger
-
Multiboard - Set the text for (Last created multiboard) item in column 4, row 1 to Fatigue
-
Player Group - Pick every player in (All players) and do (Actions)
-
Loop - Actions
-
If (All Conditions are True) then do (Then Actions) else do (Else Actions)
-
If - Conditions
-
((Picked player) slot status) Equal to Is playing
-
-
Then - Actions
-
Set PlayersArray = (PlayersArray + 1)
-
Multiboard - Set the text for (Last created multiboard) item in column 1, row PlayersArray to (Name of (Picked player))
-
-
Else - Actions
-
-
-
-
Multiboard - Show (Last created multiboard)
-
-
My current issue is trying to set it so say if there are players in slots 1,5, and 7 that their names and data show up in rows 2, 3, and 4.
I set player 1, 2,3 and 7 to User, Biggs (Computer), Wedge (Computer) and Vicks (Computer), but my leaderboard only returns three rows of the discriptions, player one, and then 'Comput'. Why won't it fill them out with the other computers and their names?
When I start the game it only shows me and Computer blue, how do I make the game recognize the other computers? Oh wait that is in Used Fixed Player Settings under Forces.
Now my issue is getting it to set and upadate the proper data in the right rows.
Last edited: