29.06.2014, 20:21
Does Rcon Commands which has parameters work on SendRconCommand? just like "rcon say [text]"
If 'yes' ..can somebody tell me what's wrong in this? it doesn't send any rcon command!
If 'yes' ..can somebody tell me what's wrong in this? it doesn't send any rcon command!
pawn Код:
CMD:say(playerid, params[])
{
if(PlayerInfo[playerid][pAdmin] == 0) return 0;
SendRconCommand("say");
return 1;
}