Instead of asking you to do the triggering for me, I've tried to do it myself and I'm posting it here so someone could check if it's right or if it needs adding or improving.
1) When a person leaves.
Spoiler:
Leavers
Events
Player - Player 1 (Red) leaves the game
Player - Player 2 (Blue) leaves the game
Player - Player 3 (Teal) leaves the game
Player - Player 4 (Purple) leaves the game
Player - Player 5 (Yellow) leaves the game
Player - Player 6 (Orange) leaves the game
Player - Player 7 (Green) leaves the game
Player - Player 8 (Pink) leaves the game
Player - Player 9 (Gray) leaves the game
Player - Player 10 (Light Blue) leaves the game
Conditions
Actions
Multiboard - Set the text for (Last created multiboard) item in column 1, row (Player number of (Triggering player)) to ((|cffA2B5CD + (Nam...
For the one above, I want when someone leaves, it should say <left> in the multiboard.
2) Player Colours: I want the players colours to show on the multiboard because right now, my multiboard only shows their name and kills
Spoiler:
Player Colours
Events
Map initialization
Conditions
Actions
Set PlayerColours1 = ((|cffFF0000 + (Name of Player 1 (Red))) + |r)
Set PlayerColours2 = ((|cff0000FF + (Name of Player 2 (Blue))) + |r)
Set PlayerColours3 = ((|cffFF0000 + (Name of Player 3 (Teal))) + |r)
Set PlayerColours4 = ((|cffFF0000 + (Name of Player 4 (Red))) + |r)
Set PlayerColours5 = ((|cffFF0000 + (Name of Player 5 (Red))) + |r)
Set PlayerColours6 = ((|cffFFFF00 + (Name of Player 6 (Orange))) +|r
Set PlayerColours7 = ((|cffFF0000 + (Name of Player 1 (Red))) + |r)
Set PlayerColours8 = ((|cffFF80FF + (Name of Player 8 (Pink)))+|r)
Set PlayerColours9 = ((|cffFF0000 + (Name of Player 1 (Red))) + |r)
Set PlayerColours10 = ((|cffFF0000 + (Name of Player 1 (Red))) + |r)
3) The last thing is to show the saves the players have but, not much success with it.
"A unit of time is as precious as a unit of gold, but you cannot don't click me back one unit of time with one unit of gold."
if you mean, when a player types -save it shows them how many times they have saved this game then it would be somthing like this, Its the same as a death/kill multiboard, you just add a nother colum that says Saves, then when a player types -save it increases the number in the save colum by 1 for the triggering player.
Events
Player - Player 1 (Red) types a chat message containing -save as An exact match
Conditions
(Number of units in (Units owned by (Triggering player))) Greater than or equal to 1
Actions
Set Player_Save[(Player number of (Triggering Player))] = (Player_Save[(Player number of (Triggering Player)))] + 1)
The condition isnt needed, its just good to have incase some idiot is spamming -save before he even has a hero. that condition would only work if its a herotype map where a player only has 1 or more heros.