Arma Reforger Explorer 1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
Loading...
Searching...
No Matches
ScrServerCommand.c
Go to the documentation of this file.
1/*
2===========================================
3Do not modify, this script is generated
4===========================================
5*/
6
8{
10 event string GetKeyword();
12 event protected ref ScrServerCmdResult OnUpdate();
14 event protected ref ScrServerCmdResult OnRCONExecution(array<string> argv);
16 event protected int RequiredRCONPermission();
18 event bool IsServerSide();
20 event protected ref ScrServerCmdResult OnChatServerExecution(array<string> argv, int playerId);
22 event protected ref ScrServerCmdResult OnChatClientExecution(array<string> argv, int playerId);
24 event protected int RequiredChatPermission();
25}
BanCommand ScrServerCommand GetKeyword()
ref ScrServerCmdResult OnRCONExecution(array< string > argv)
Server-side rcon command execution.
ref ScrServerCmdResult OnChatClientExecution(array< string > argv, int playerId)
The first chat execution stage (always on the client side).
ref ScrServerCmdResult OnUpdate()
Update PENDING request.
event bool IsServerSide()
True if the command should be passed to the server. False for only client-side execution.
int RequiredChatPermission()
Required permission (EPlayerRole) to run chat execution.
int RequiredRCONPermission()
Required permission (ERCONPermissions) to run RCON execution.
ref ScrServerCmdResult OnChatServerExecution(array< string > argv, int playerId)
The main chat execution that is executed on the server (if IsServerSide is true).