serverCommand: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(see also)
m (template:command argument fix)
Line 11: Line 11:
<br><br>
<br><br>


As of Arma 3 v1.39 an alternative version of [[serverCommand]] can be used on dedicated server and headless clients. It requires a password, set with <tt>serverCommandPassword</tt> in [[server.cfg]] and passed to the command as an argument (See Alt Syntax)|= Description
As of Arma 3 v1.39 an alternative version of [[serverCommand]] can be used on dedicated server and headless clients. It requires a password, set with <tt>serverCommandPassword</tt> in [[server.cfg]] and passed to the command as an argument (See Alt Syntax)|DESCRIPTION=  
____________________________________________________________________________________________
____________________________________________________________________________________________


| '''serverCommand''' command |= Syntax
| '''serverCommand''' command |SYNTAX=


|p1= command : [[String]] |= Parameter 1
|p1= command : [[String]] |PARAMETER1=


| [[Boolean]] - always [[true]] for some reason (since A3 v1.39 also [[false]] if a non valid command is used ("#blah")) |= Return value
| [[Boolean]] - always [[true]] for some reason (since A3 v1.39 also [[false]] if a non valid command is used ("#blah")) |RETURNVALUE=
____________________________________________________________________________________________
____________________________________________________________________________________________


| s2= password '''serverCommand''' command &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;''(since Arma 3 v1.39)'' {{ServerExec}}|= Syntax
| s2= password '''serverCommand''' command &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;''(since Arma 3 v1.39)'' {{ServerExec}}|SYNTAX=


|p21= password : [[String]] - password defined in [[server.cfg]] with <tt>serverCommandPassword</tt> param |= Parameter 1
|p21= password : [[String]] - password defined in [[server.cfg]] with <tt>serverCommandPassword</tt> param |PARAMETER1=
|p22= command : [[String]] - server command |= Parameter 2
|p22= command : [[String]] - server command |PARAMETER2=


| r2= [[Boolean]] - [[true]] if password is correct |= Return value
| r2= [[Boolean]] - [[true]] if password is correct |RETURNVALUE=
__________________________________________________________________
__________________________________________________________________


Line 45: Line 45:
|x4 = <code>_passwordWasOK = "MyServerCommandPassword" [[serverCommand]] "#lock";</code>
|x4 = <code>_passwordWasOK = "MyServerCommandPassword" [[serverCommand]] "#lock";</code>


| [[serverCommandAvailable]], [[serverCommandExecutable]], [[admin]], [[isUIContext]] |= See also
| [[serverCommandAvailable]], [[serverCommandExecutable]], [[admin]], [[isUIContext]] |SEEALSO=


}}
}}

Revision as of 15:46, 7 April 2019

Hover & click on the images for description

Description

Description:
Executes the given a server command. Which command is available for execution can be found with serverCommandAvailable and whether or not it can be executed with serverCommandExecutable. If serverCommand is executed on a client, it must be executed from UI context, such as onButtonDown or similar events (see User_Interface_Event_Handlers).

As of Arma 3 v1.39 an alternative version of serverCommand can be used on dedicated server and headless clients. It requires a password, set with serverCommandPassword in server.cfg and passed to the command as an argument (See Alt Syntax)
Groups:
Uncategorised

Syntax

Syntax:
serverCommand command
Parameters:
command : String
Return Value:
Boolean - always true for some reason (since A3 v1.39 also false if a non valid command is used ("#blah"))

Alternative Syntax

Syntax:
password serverCommand command      (since Arma 3 v1.39) Template:ServerExec
Parameters:
password : String - password defined in server.cfg with serverCommandPassword param
command : String - server command
Return Value:
Boolean - true if password is correct

Examples

Example 1:
serverCommand "#logout";
Example 2:
Create button on the main map which will show userlist to anyone who clicks on it: with uiNamespace do { ctrl = findDisplay 12 ctrlCreate ["RscButton", -1]; ctrl ctrlSetPosition [0,0,0.5,0.1]; ctrl ctrlSetText "USERLIST"; ctrl ctrlCommit 0; ctrl ctrlAddEventHandler ["ButtonDown", { serverCommand "#userlist"; }]; };
Example 3:
serverCommand format ["#kick %1",_name];
Example 4:
_passwordWasOK = "MyServerCommandPassword" serverCommand "#lock";

Additional Information

See also:
serverCommandAvailableserverCommandExecutableadminisUIContext

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note

Notes

Bottom Section