12.06.2013, 16:15
ZCMD?
STRCMP?
Edite ao seu gosto.
STRCMP?
pawn Код:
CMD:al(playerid, params[])
{
new xRL[128], xNome[21];
for( new i; i < MAX_PLAYERS; i++ )
{
if(IsPlayerAdmin(playerid)) // Coloca a variбvel de lider no lugar do IsPlayerAdmin
{
if(sscanf(params, "s",texto))
{
SendClientMessage(playerid,-1,"[Command]: /al");
}
else
{
GetPlayerName(playerid, xNome, 20);
format(Str, sizeof(Str), "%s: %s", xNome, texto);
SendClientMessage(i, -1, xRL);
}
}
else SendClientMessage(playerid, -1,"Vocк nгo й adminRcon");
}
return true;
}