comando certo não funciona - spongebob - 08/08/2022
peguei esse sistema na net mais digito o comando e da comando invalido ta exatamente do jeito que peguei compila sem erros o que pode ser?
Código PHP: #define FILTERSCRIPT
#include <a_samp> #include <zcmd>
CMD:online(playerid) { new jogad[5000], TabsDialog[5000], jogadorcount; //origi for(new i = 0; i < MAX_PLAYERS; i++) { if(IsPlayerConnected(i)) { if(jogadorcount < 100) format(jogad, sizeof(jogad), "{FFFFFF}%s\nID: {1D33EC}%i {FFFFFF}Nick: {1D33EC}%s {FFFFFF}Level: {1D33EC}%d {FFFFFF}Ping: {1D33EC}%d", jogad, i, GetPlayerNameEx(i), GetPlayerScore(i), GetPlayerPing(i)); jogadorcount++; } } format(TabsDialog, sizeof(TabsDialog), "{FFFFFF}Total De Jogadores Online: {FFFF00}%i / 100 {09D19B}\n%s\n", jogadorcount, jogad); ShowPlayerDialog(playerid, 7648, DIALOG_STYLE_MSGBOX,"Jogadores Online", TabsDialog, "Ok", ""); return 1; }
stock GetPlayerNameEx(playerid) { new NomeEx[MAX_PLAYER_NAME]; GetPlayerName(playerid, NomeEx, MAX_PLAYER_NAME); return NomeEx; }
RE: comando certo não funciona - White_Blue - 08/08/2022
Código PHP: CMD:on(playerid) { // Esse tipo de loop é recomendado que seja feito com foreach(que eu farei assim) mas pode usar o loop for mesmo se preferir. new count = 0, msg[1000], string[128]; foreach(Player, i) { if(IsPlayerConnected(i)) { count++; format(msg,sizeof(msg), "{FFFFFF}» %s [%d]\n", GetPlayerNameEx(i), i); strcat(string, msg, sizeof(string)); } } if(count == 0) ShowPlayerDialog(playerid, playersimp, DIALOG_STYLE_MSGBOX, "Jogadores Online", "{FFFFFF}Não há ninguém online.", "OK", "");
else ShowPlayerDialog(playerid, playersimp, DIALOG_STYLE_MSGBOX, "Jogadores Online", string, "OK", ""); return 1; }
RE: comando certo não funciona - spongebob - 08/08/2022
(08/08/2022 19:23)White_Blue Escreveu: Código PHP: CMD:on(playerid) { // Esse tipo de loop é recomendado que seja feito com foreach(que eu farei assim) mas pode usar o loop for mesmo se preferir. new count = 0, msg[1000], string[128]; foreach(Player, i) { if(IsPlayerConnected(i)) { count++; format(msg,sizeof(msg), "{FFFFFF}» %s [%d]\n", GetPlayerNameEx(i), i); strcat(string, msg, sizeof(string)); } } if(count == 0) ShowPlayerDialog(playerid, playersimp, DIALOG_STYLE_MSGBOX, "Jogadores Online", "{FFFFFF}Não há ninguém online.", "OK", "");
else ShowPlayerDialog(playerid, playersimp, DIALOG_STYLE_MSGBOX, "Jogadores Online", string, "OK", ""); return 1; }
100% vlw.
|