[Ajuda] RANK .... - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: Non-English (
https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (
https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (
https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [Ajuda] RANK .... (
/showthread.php?tid=477566)
RANK .... -
JoaoMonteiro452 - 24.11.2013
Boa noite, queri que alguйm me ajudasse no sistema de rank, esse rank apareзe as missoes de caminhoneiro, ou seja, o player que tiver mais missoes de caminhoneiro concluidas, aparecer o nome, o id, e numero de missoes concluidas. Mas ta bugando... Alguйm pode ver se o cod ta certo ? :/
Claro que esse sistema й em settimer, essa mensagem aparece de 5 em 5 min.
pawn Код:
forward MRanks(playerid);
public MRanks(playerid)
{
for (new i; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i))
{
new Crl = random(3);
new Ranks[230];
if(Crl == 0)
{
if(APlayerData[i][StatsTruckerJobs] >= APlayerData[i][StatsTruckerJobs])
{
format(Ranks, sizeof Ranks,"Player %s (%i) й o melhor caminhoneiro online com %d missхes completas!", rNome(i), i, APlayerData[i][StatsTruckerJobs]);
SendClientMessageToAll(-1, Ranks);
break;
}
}
}
}
return 1;
}
Re: RANK .... -
Ph0ton - 24.11.2013
Ta bugando como, oq acontece ?
Re: RANK .... -
JoaoMonteiro452 - 24.11.2013
Quote:
Originally Posted by Ph0ton
Ta bugando como, oq acontece ?
|
A mensagem sу mostra no id 0, se o id 1 tiver mais que o id 0, sу aparece os pontos do id 0 ... o do id 1 nгo aparece.
Re: RANK .... -
Dieguinho - 24.11.2013
ja tentou em
format(STRX, sizeof(STRX), "messagem", funзгo);
SendClientMessageToAll(-1, STRX); todos ver a messagem
Re: RANK .... -
JoaoMonteiro452 - 24.11.2013
Quote:
Originally Posted by Dieguinho
ja tentou em
format(STRX, sizeof(STRX), "messagem", funзгo);
SendClientMessageToAll(-1, STRX); todos ver a messagem
|
Acho que vc nгo viu o cod amigo
pawn Код:
format(Ranks, sizeof Ranks,"Player %s (%i) й o melhor caminhoneiro online com %d missхes completas!", rNome(i), i, APlayerData[i][StatsTruckerJobs]);
SendClientMessageToAll(-1, Ranks);