Question

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.

Was it helpful?

Solution

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
}
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top