[Ajuda] Contador - 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] Contador (
/showthread.php?tid=386450)
Contador -
mau.tito - 20.10.2012
Galera tava querendo fazer um contador,
Ex : da o payday tem 5 on da msm gang online ai eles ganhao um bonus de dinheiro, 1 membro on 10 reais, 2 membros 20 reais e assim vai .
alguem pode me ajudar.
Re: Contador -
Q.I - 20.10.2012
poste a base do codigo que voce tem .
Re: Contador -
Coreia - 20.10.2012
Usa Loop
Re: Contador -
zbt - 20.10.2012
GivePlayerMoney Membros * 10
Re: Contador -
mau.tito - 20.10.2012
Quote:
Originally Posted by Q.I
poste a base do codigo que voce tem .
|
eu sei fazer assim
pawn Код:
new gangon = 0;
//conect
gangon ++;
//disconect
gangon--;
Re: Contador -
JonathanFeitosa - 20.10.2012
pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
if (strcmp("/testa", cmdtext, true, 10) == 0)
{
new Nome[24], string[128];
new Random = RandomPlayer();
GetPlayerName(Random, Nome, sizeof(Nome));
format(string, 128, "{FFFFFF}O Player {94ED40}%s {FFFFFF}Foi Sorteado e Ganhou {94ED40}10000R$", Nome);
SendClientMessageToAll(-1, string);
GivePlayerMoney(Random, 10000);
return 1;
}
return 0;
}
stock RandomPlayer()
{
new z = 0, w, y = GetMaxPlayers();
static Conectados[MAX_PLAYERS];
while(z < y)
{
if(IsPlayerConnected(z))
{
Conectados[w] = z;
w++;
}
z++;
}
return !w ? -1 : Conectados[random(w)];
}
Usa essa base, nem testei, ver ae
Re: Contador -
mau.tito - 20.10.2012
Jonathan voce intendeu errado '-'
Re: Contador -
zSuYaNw - 21.10.2012
Posta a variбvel de membros
PHP код:
GivePlayerMoney(playerid, EMMBROS[playerid] * 10);