[Ajuda] Upar automaticamente
#5

Quote:
Originally Posted by DraKoN
Inicio do GM Abaixo das #Includes

pawn Код:
forward SistemaScore();
Em OnPlayerSpawn:

pawn Код:
SetTimer("SistemaScore",60*60*1000,false);

No final do GM:


pawn Код:
public SistemaScore()
{
GetPlayerScore(playerid)
SetPlayerScore(playerid, +1);
SendClientMessage(playerid, 0xF60000AA "Vocк Upou seu level")
}
Muito bom DraKoN, ams acho melhor ele usar o SetTimerEx no OnPlayerSpawn, porque o SetTimer se o cara entrar no server a 1 min ele jб pode upar de level, usando o TimerEx ele tem que ficar as horas ou minutos exatos. ^^

Ex:
Em baixo dos #includes:
pawn Код:
new scoree;

Em OnPlayerSpawn:
pawn Код:
scoree = SetTimerEx("SistemaScore",60*60*1000,false,"i",playerid);

Depois do Public do OnPlayerSpawn:
pawn Код:
forward SistemaScore(playerid);
public SistemaScore(playerid)
{
new scor = GetPlayerScore(playerid)
SetPlayerScore(playerid,scor+1);
SendClientMessage(playerid, 0xF60000AA "Vocк upou seu level");
return 1;
}
E no OnPlayerDisconnect:
pawn Код:
KillTimer(scoree);
E pra salvar usa DUDB.
Reply


Messages In This Thread
[Ajuda] Upar automaticamente - by danqueiroz - 18.04.2010, 22:22
Re: Upar automaticamente - by SuB_ZeRo0_ - 18.04.2010, 22:24
Re: Upar automaticamente - by danqueiroz - 18.04.2010, 22:36
Re: Upar automaticamente - by ipsBruno - 18.04.2010, 22:40
Re: Upar automaticamente - by SuB_ZeRo0_ - 18.04.2010, 22:43
Re: Upar automaticamente - by ipsBruno - 18.04.2010, 22:45
Re: Upar automaticamente - by danqueiroz - 18.04.2010, 22:45
Re: Upar automaticamente - by SuB_ZeRo0_ - 18.04.2010, 22:48
Re: [Ajuda] Upar automaticamente - by ipsBruno - 19.04.2010, 01:03
Re: [Ajuda] Upar automaticamente - by danqueiroz - 19.04.2010, 15:55

Forum Jump:


Users browsing this thread: 4 Guest(s)