02.04.2011, 14:49
Well obviously you have to add
to the top of the script and if you want a timer just try this (untested ofc):
Didn't indent.
Code:
new cantspawn[MAX_PLAYERS];
Code:
forward DeadTimer(); public DeadTimer() { for(new i=0;i < MAX_PLAYERS; i++) { if(GetPlayerHealth(i) < 1 && IsPlayerConnected(i) == 1) { cantspawn[i] = 1; } } }