[Ajuda] Spawnar onde morre
#8

pawn Код:
new
    Float: deathX[MAX_PLAYERS],
    Float: deathY[MAX_PLAYERS],
    Float: deathZ[MAX_PLAYERS],
    bool: playerDied[MAX_PLAYERS];

public OnPlayerSpawn(playerid)
{
    if(playerDied[playerid]) {
        SetPlayerPos(playerid, deathX[playerid], deathY[playerid], deathZ[playerid]);
        playerDied[playerid] = false;
        return 1;
    }

    return 1;
}

public OnPlayerDeath(playerid, killerid, reason)
{
    GetPlayerPos(playerid, deathX[playerid], deathY[playerid], deathZ[playerid]);
    playerDied[playerid] = true;

    return 1;
}
Reply


Messages In This Thread
Spawnar onde morre - by willttoonn - 02.09.2013, 18:24
Re: Spawnar onde morre - by willttoonn - 02.09.2013, 20:52
Re: Spawnar onde morre - by bruxo00 - 02.09.2013, 21:44
Re: Spawnar onde morre - by DannielCooper - 02.09.2013, 21:57
Re: Spawnar onde morre - by willttoonn - 02.09.2013, 22:02
Respuesta: Re: Spawnar onde morre - by ViniKuliveguisky - 02.09.2013, 23:13
Re: Spawnar onde morre - by willttoonn - 02.09.2013, 23:22
Re: Spawnar onde morre - by Lуs - 02.09.2013, 23:37
Re: Spawnar onde morre - by willttoonn - 03.09.2013, 00:39
Re: Spawnar onde morre - by Lуs - 03.09.2013, 02:11

Forum Jump:


Users browsing this thread: 1 Guest(s)