24/10/2022 22:48
(24/10/2022 19:50)White_Blue Escreveu:Obrigado pela resposta, White. Tentei, mas continua acionando a OnPlayerRequestClass após a morte.Tenta como no código acima.Código PHP:new bool:Morreu[MAX_PLAYERS] = false;
public OnPlayerDeath(playerid, killerid, reason) {
if(playerid != INVALID_PLAYER_ID) {
Morreu[playerid] = true;
}
return 1;
}
public OnPlayerSpawn(playerid) {
if(Morreu[playerid] == true) {
SetSpawnInfo(playerid, 0, 0, 1958.33, 1343.12, 15.36, 269.15, 0, 0, 0, 0, 0, 0);
Morreu[playerid] = false;
}
return 1;
}