Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
コマンドを実行するには、プレイヤーが RCON 経由でログインする必要があるようにするにはどうすればよいですか? セキュリティ上の理由からこれを行いたいと思います。
このメソッドIsPlayerAdmin(playerid)は、プレーヤーが RCON 経由でログインしている場合は 1 を返し、そうでない場合は 0 を返します。これをコマンドに使用するには、コマンド本体に入り、保護したいコマンドの部分の周りに if ステートメントを追加します。例えば:
IsPlayerAdmin(playerid)
if(IsPlayerAdmin(playerid)) { //do stuff here } else { //do nothing, explain security settings to user }