08.11.2011, 18:02
pawn Код:
COMMAND:say(playerid,params[])
{
if(PlayerInfo[playerid][pAdmin] < 1) return SendClientMessage(playerid,ORANGE,"You need to be level 1 to use this command!");
SendRconCommand("say");
return 1;
}
COMMAND:say(playerid,params[])
{
if(PlayerInfo[playerid][pAdmin] < 1) return SendClientMessage(playerid,ORANGE,"You need to be level 1 to use this command!");
SendRconCommand("say");
return 1;
}
new string[200];
format(string, sizeof(string), "say %s", params);
SendRconCommand(string);