[Ajuda] Sistema de Patente
#3

Fiz uma base bem bбsica aqui(avah), sу para vocк intender como funciona

pawn Код:
#define PlayerSoldado 1

enum pData
{
    Patente,
    Matou
};
new PlayerD[MAX_PLAYERS][pData];

public OnPlayerDeath(playerid, killerid, reason)
{
    PlayerD[killerid][Matou]++;//Acrescenta +1 no status de kills dele
    if(PlayerD[killerid][Matou] > 5)// Verifica se ele matou mais de 5
    {
        PlayerD[killerid][Patente] = PlayerSoldado;// seta ele como soldado
        SendClientMessage(playerid, -1, "Vocк virou um soldado!");
    }
    return 1;
}
Reply


Messages In This Thread
Sistema de Patente - by maxblaya01 - 15.07.2015, 01:36
Re: Sistema de Patente - by Nenzittow - 15.07.2015, 01:41
Re: Sistema de Patente - by ExPLORE - 15.07.2015, 01:42
Re: Sistema de Patente - by maxblaya01 - 15.07.2015, 02:32
Re: Sistema de Patente - by darkxdll - 15.07.2015, 04:55

Forum Jump:


Users browsing this thread: 1 Guest(s)