[SOLVED] Commands only works for RCON Admins
#2

There's probably an admin check at the start of the OnPlayerCommandText-callback.

Something like:
pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
  if(!IsPlayerAdmin(playerid)) return 0;
  // commands..
  return 0;
}
Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: 1 Guest(s)