문제

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.

도움이 되었습니까?

해결책

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
}
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top