[PEDIDO] Comando For - 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: [PEDIDO] Comando For (
/showthread.php?tid=289746)
[PEDIDO] Comando For -
cotonete - 12.10.2011
alguem pode me ensinar ou me enviar um comando, que no caso pega o jogador mais rico? o jogador que tem mais dinheiro
Re: [PEDIDO] Comando For -
Colgate - 12.10.2011
pawn Код:
for(new i = 0; i < GetMaxPlayers(); i++)
{
if(IsPlayerConnected(i))
{
if(GetPlayerMoney(i) > 100000) //aqui vocк poe o valor que quer verificar
{
//Aqui vocк executa a funзгo que quer pro cara que tem mais de tanto de dinheiro
}
}
}
Re: [PEDIDO] Comando For -
ViniBorn - 12.10.2011
pawn Код:
if(strcmp(cmd, "/rico", true) == 0)
{
new Jogador[MAX_PLAYER_NAME],Vstring[64],Rico,Valor;
for(new i = 0; i < GetMaxPlayers(); i++)
if(IsPlayerConnected(i))
if(GetPlayerMoney(i) > Valor)
{
Valor = GetPlayerMoney(i);
Rico = i;
}
GetPlayerName(Rico , Jogador, sizeof(Jogador));
format(Vstring, sizeof(Vstring), "%s й o jogador mais rico. Ele tem %d", Jogador,GetPlayerMoney(Rico));
SendClientMessageToAll(-1,Vstring);
return 1;
}