- Joined
- Jan 3, 2010
- Messages
- 185
Hi im currently working on a mpa which uses a multiboard system to record kills made by players but it records every kill made i havent made the system for all players yet beacause of this i know why it doesnt work so i really just want a way so it only records killed by units owned by player any help is appreciated
here is my entire system so far
here is my entire system so far
-
leadrboard
-
Events
- Time - Elapsed game time is 1.00 seconds
- Conditions
-
Actions
- Multiboard - Create a multiboard with 2 columns and 9 rows, titled Kill Tracker
- Multiboard - Set the width for (Last created multiboard) item in column 1, row 1 to 10.00% of the total screen width
- Multiboard - Set the width for (Last created multiboard) item in column 1, row 2 to 10.00% of the total screen width
- Multiboard - Set the width for (Last created multiboard) item in column 1, row 3 to 10.00% of the total screen width
- Multiboard - Set the width for (Last created multiboard) item in column 1, row 4 to 10.00% of the total screen width
- Multiboard - Set the width for (Last created multiboard) item in column 1, row 5 to 10.00% of the total screen width
- Multiboard - Set the width for (Last created multiboard) item in column 1, row 6 to 10.00% of the total screen width
- Multiboard - Set the width for (Last created multiboard) item in column 1, row 7 to 10.00% of the total screen width
- Multiboard - Set the width for (Last created multiboard) item in column 1, row 8 to 10.00% of the total screen width
- Multiboard - Set the width for (Last created multiboard) item in column 1, row 9 to 10.00% of the total screen width
- Multiboard - Set the width for (Last created multiboard) item in column 2, row 1 to 10.00% of the total screen width
- Multiboard - Set the width for (Last created multiboard) item in column 2, row 2 to 10.00% of the total screen width
- Multiboard - Set the width for (Last created multiboard) item in column 2, row 3 to 10.00% of the total screen width
- Multiboard - Set the width for (Last created multiboard) item in column 2, row 4 to 10.00% of the total screen width
- Multiboard - Set the width for (Last created multiboard) item in column 2, row 5 to 10.00% of the total screen width
- Multiboard - Set the width for (Last created multiboard) item in column 2, row 6 to 10.00% of the total screen width
- Multiboard - Set the width for (Last created multiboard) item in column 2, row 7 to 10.00% of the total screen width
- Multiboard - Set the width for (Last created multiboard) item in column 2, row 8 to 10.00% of the total screen width
- Multiboard - Set the width for (Last created multiboard) item in column 2, row 9 to 10.00% of the total screen width
- Multiboard - Minimize (Last created multiboard)
- Multiboard - Maximize (Last created multiboard)
- 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 Kills
- Multiboard - Set the text for (Last created multiboard) item in column 2, row 2 to 0
- Multiboard - Set the text for (Last created multiboard) item in column 2, row 3 to 0
- Multiboard - Set the text for (Last created multiboard) item in column 2, row 4 to 0
- Multiboard - Set the text for (Last created multiboard) item in column 2, row 5 to 0
- Multiboard - Set the text for (Last created multiboard) item in column 2, row 6 to 0
- Multiboard - Set the text for (Last created multiboard) item in column 2, row 7 to 0
- Multiboard - Set the text for (Last created multiboard) item in column 2, row 8 to 0
- Multiboard - Set the text for (Last created multiboard) item in column 2, row 9 to 0
- Multiboard - Set the text for (Last created multiboard) item in column 1, row 2 to (Name of Player 1 (Red))
- Multiboard - Set the text for (Last created multiboard) item in column 1, row 3 to (Name of Player 2 (Blue))
- Multiboard - Set the text for (Last created multiboard) item in column 1, row 4 to (Name of Player 3 (Teal))
- Multiboard - Set the text for (Last created multiboard) item in column 1, row 5 to (Name of Player 4 (Purple))
- Multiboard - Set the text for (Last created multiboard) item in column 1, row 6 to (Name of Player 5 (Yellow))
- Multiboard - Set the text for (Last created multiboard) item in column 1, row 7 to (Name of Player 6 (Orange))
- Multiboard - Set the text for (Last created multiboard) item in column 1, row 8 to (Name of Player 7 (Green))
- Multiboard - Set the text for (Last created multiboard) item in column 1, row 9 to (Name of Player 8 (Pink))
-
Events
-
Points
-
Events
- Unit - A unit Dies
- Conditions
-
Actions
- Set kills[1] = (kills[1] + 1)
- Multiboard - Set the text for (Last created multiboard) item in column 2, row 2 to (String(kills[1]))
-
Events