11.06.2014, 02:17
nгo da para usar uma funзao que ja esteja em meu gm!
tipo
esse й um sistema que mostra quantos player online tem no server. ajuda?
tipo
PHP код:
if(strcmp(cmdtext, "/online", true) == 0)
{
if(PlayerInfo[playerid][pAdmin] < 1337)
{
SendClientMessage(playerid, 0xB22222FF, "Vocк nгo tem permissгo para usar esse comando.");
return 1;
}
if(admtrampando[playerid] < 1)
{
SendClientMessage(playerid, COLOR_GRAD1, "Vocк nгo estб trabalhando! (/trabalhar)");
return 1;
}
format(gstring, sizeof(gstring), "Server: [%d] Players Online.", ContarJogadores());
SendClientMessageToAll(COLOR_LIGHTBLUE, gstring);
return 1;
}