12.07.2013, 19:50
Como fasso pra quando um player morrer spawnar em um hospital ?
new bool:gPm [ MAX_PLAYERS ] ;
public OnPlayerDeath(playerid, killerid, reason)
{
gPm [ playerid ] = 1;
}
public OnPlayerSpawn(playerid)
{
if (gPm [ playerid ])
{
SetPlayerPos(playerid, x, y, z); //x, y, z = posiзгo do hospital
gPm [ playerid ] = 0;
}
}