1

How can I make a command require the player to be logged in via RCON in order to execute it? I wish to do this for security reasons.

user247702
  • 23,641
  • 15
  • 110
  • 157
Clove
  • 29
  • 2
  • 6

1 Answers1

3

The method IsPlayerAdmin(playerid) will return 1 if the player is logged in via RCON and 0 if the player isn't. To use this for a command, go into the command body and add an if-statement around the part of the command you wish to protect. For example:

if(IsPlayerAdmin(playerid))
{
    //do stuff here
}
else
{
    //do nothing, explain security settings to user
}
James Monger
  • 10,181
  • 7
  • 62
  • 98