15.08.2015, 15:59
PHP код:
CMD:av(playerid, params[])
{
new texto[128],NickName[MAX_PLAYER_NAME],textoav[128];
if(Player[playerid][pAdmin] == 0) return SendClientMessage(playerid, COR_ADMIN, "Vocк nгo tem autorizaзгo para usar esse comando.");
if(sscanf(params, "s[128]", textoav)) return SendClientMessage(playerid, 0xFFFFFFAA, "USE: /av [texto]");
if(AdminTrabalhando[playerid] < 1 && Player[playerid][pAdmin] != 8 && Player[playerid][pAdmin] != 10 && Player[playerid][pAdmin] != 9)
{
SendClientMessage(playerid, COR_ADMIN, "Vocк nгo estб trabalhando, use /trabalhar");
return 1;
}
GetPlayerName(playerid, NickName, MAX_PLAYER_NAME);
SendClientMessageToAll(0x0000FFFF, "_____________________|Aviso da Administraзгo|_____________________");
format(texto, sizeof(texto), "{00FF00} Admin %s: %s", NickName, textoav);
SendClientMessageToAll(-1, texto);
return 1;
}
@edited
Nгo precisa ficar usar IsPlayerConnected para checar se o playerid estб online, a final, se ele estб digitando o comando, ele estб conectado.