serverCommandExecutable: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "{{uc:{{PAGENAME}}}} " to "")
m (Text replacement - "| Boolean " to "|r1= Boolean ")
Line 13: Line 13:
|p1=  command: [[String]] - see [[Multiplayer_Server_Commands#Commands|Multiplayer Server Commands]] for all available commands
|p1=  command: [[String]] - see [[Multiplayer_Server_Commands#Commands|Multiplayer Server Commands]] for all available commands


| [[Boolean]]
|r1= [[Boolean]]


|x1 = <code>_canKick = [[serverCommandAvailable]] "#kick";</code>
|x1 = <code>_canKick = [[serverCommandAvailable]] "#kick";</code>

Revision as of 23:18, 10 June 2021

Hover & click on the images for description

Description

Description:
Description needed
Groups:
Multiplayer

Syntax

Syntax:
Syntax needed
Parameters:
command: String - see Multiplayer Server Commands for all available commands
Return Value:
Boolean

Examples

Example 1:
_canKick = serverCommandAvailable "#kick";
Example 2:
Add button to the main map to lock server, which could only be activated by admin: with uiNamespace do { ctrl = findDisplay 12 ctrlCreate ["RscButton", -1]; ctrl ctrlSetPosition [0,0,0.5,0.1]; ctrl ctrlCommit 0; ctrl ctrlSetText "LOCK SERVER"; ctrl ctrlAddEventHandler ["ButtonDown", { if (serverCommandExecutable "#lock") then { serverCommand "#lock"; } else { hint "You need to be logged in as admin to do this"; }; }]; };

Additional Information

See also:
serverCommandserverCommandAvailableMultiplayer Server Commands

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