Greetings people of the Hive Community!
Once again i have found myself in need of your help, i am as many others making a map, where i would like a multiboard, or something that does the same atleast, to show "players" and 3 different currencies (currencies are based on variables so it should be easy enough to get those to show, but i have made this and i feel like its made very poorly, but alas it is my first ever multiboard
My Questions:
1. Does any of this leak if i change the values in the multiboard ? (Updating "currencies?")
2. I tried "checking" for computer players and kind of overwrite it if anything but a user comes up?
3. Any ideas for improvement?
Once again i have found myself in need of your help, i am as many others making a map, where i would like a multiboard, or something that does the same atleast, to show "players" and 3 different currencies (currencies are based on variables so it should be easy enough to get those to show, but i have made this and i feel like its made very poorly, but alas it is my first ever multiboard
My Questions:
1. Does any of this leak if i change the values in the multiboard ? (Updating "currencies?")
2. I tried "checking" for computer players and kind of overwrite it if anything but a user comes up?
3. Any ideas for improvement?
-
Window
-
Events
-
Time - Elapsed game time is 1.00 seconds
-
-
Conditions
-
Actions
-
Multiboard - Create a multiboard with 4 columns and (NumberOfPlayers + 1) rows, titled Titel Melodi.
-
Multiboard - Set the text for (Last created multiboard) item in column 1, row 1 to Heroes
-
Multiboard - Set the text for (Last created multiboard) item in column 2, row 1 to Gold
-
Multiboard - Set the text for (Last created multiboard) item in column 3, row 1 to Silver
-
Multiboard - Set the text for (Last created multiboard) item in column 4, row 1 to Copper
-
For each (Integer MultiboardInteger1) from 1 to (NumberOfPlayers + 1), do (Actions)
-
Loop - Actions
-
Multiboard - Set the display style for (Last created multiboard) item in column 1, row 1 to Show text and Hide icons
-
Multiboard - Set the display style for (Last created multiboard) item in column 1, row MultiboardInteger1 to Show text and Hide icons
-
Multiboard - Set the display style for (Last created multiboard) item in column 2, row MultiboardInteger1 to Show text and Hide icons
-
Multiboard - Set the display style for (Last created multiboard) item in column 3, row MultiboardInteger1 to Show text and Hide icons
-
Multiboard - Set the display style for (Last created multiboard) item in column 4, row MultiboardInteger1 to Show text and Hide icons
-
Multiboard - Set the width for (Last created multiboard) item in column 1, row MultiboardInteger1 to 8.00% of the total screen width
-
Multiboard - Set the width for (Last created multiboard) item in column 2, row MultiboardInteger1 to 5.00% of the total screen width
-
Multiboard - Set the width for (Last created multiboard) item in column 3, row MultiboardInteger1 to 5.00% of the total screen width
-
Multiboard - Set the width for (Last created multiboard) item in column 4, row MultiboardInteger1 to 5.00% of the total screen width
-
-
-
For each (Integer MultiboardInteger2) from 2 to (NumberOfPlayers + 1), do (Actions)
-
Loop - Actions
-
If (All Conditions are True) then do (Then Actions) else do (Else Actions)
-
If - Conditions
-
((Player(MultiboardInteger2)) controller) Equal to User
-
-
Then - Actions
-
If (All Conditions are True) then do (Then Actions) else do (Else Actions)
-
If - Conditions
-
((Player((MultiboardInteger2 - 1))) controller) Not equal to User
-
-
Then - Actions
-
Multiboard - Set the text for (Last created multiboard) item in column 1, row (MultiboardInteger2 - 1) to (Name of (Player(MultiboardInteger2)))
-
Set VariableSet MultiboardInteger2 = (MultiboardInteger2 - 1)
-
-
Else - Actions
-
Multiboard - Set the text for (Last created multiboard) item in column 1, row MultiboardInteger2 to (Name of (Player(MultiboardInteger2)))
-
-
-
-
Else - Actions
-
-
-
-
Multiboard - Show (Last created multiboard)
-
-