06.10.2013, 14:12
Unclosed bracket:
EDIT: shit too late ;x
pawn Код:
public OnPlayerDeath(playerid, killerid, reason)
{
InHospital[playerid] = 1;
if(InHospital[playerid] == 1)
{
SetPlayerPos(playerid , -320.0716 , 1049.2888 , 20.3403);
SetTimer( "spawn" , 5000 , 0);
}//Here
return 1;
}
forward spawn(playerid);
public spawn(playerid)
{
InHospital[playerid] = 0;
SpawnPlayer(playerid);
return 1;
}