[Ajuda] Morre nascer no hospital
#1

Como fasso pra quando um player morrer spawnar em um hospital ?
Reply
#2

pawn Код:
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;
    }
}
Reply
#3

Por que o gPM ?
Reply
#4

Pra saber se o player morreu...
Porque a callback OnPlayerSpawn pode ser chamada por outros motivos tambйm, nгo somente morte.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)