14.10.2013, 08:57
Hello, how can I make when a player joins mode TDM to show "x players in TDM" I know how to count it, but I dont know how to decrease it because I'm having more modes and they can switch...
new
count
;
count = 5;
count++; // 6
count--; // 5
count -= 1; // 4
count = count - 1; // 3