23.05.2011, 12:31
Boas eu gostava que alguem me consegise dizer como posso fazer quando uma pessoa morre fica no sitio onde morre a espera duma ambolancia para lhe socorrer.. alguem me ajuda ? agradeзo
new EsperandoAmbulancia[MAX_PLAYERS];
public OnPlayerDeath(playerid, killerid, reason)
{
EsperandoAmbulancia[playerid] = 1;
if(EsperandoAmbulancia[playerid] == 1)
{
new Float:x, Float:y, Float:z;
GetPlayerPos(playerid, x, y, z);
SetPlayerPos(playerid, x, y, z);
TogglePlayerControllable(playerid, 0x0);
return 1;
}
return 1;
}
public OnPlayerSpawn(playerid)
{
EsperandoAmbulancia[playerid] = 0;
if(EsperandoAmbulancia[playerid] == 0)
{
SetPlayerPos(playerid, x, y, z); // Coloque as cordenadas que o jogador serб transferido apуs ser socorrido
TogglePlayerControllable(playerid, 0x1);
return 1;
}
return 1;
}