serverCommandExecutable: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(target stable version xml comment)
m (template:command argument fix)
(6 intermediate revisions by 4 users not shown)
Line 2: Line 2:
____________________________________________________________________________________________
____________________________________________________________________________________________


| arma3 |= Game name
| arma 3 |= Game name


|DEV|= Game version <!-- target stable 1.34 -->
|1.34|= Game version  
____________________________________________________________________________________________
____________________________________________________________________________________________


| Returns [[true]] if the [[serverCommand]] can be performed on the machine and in this exact environment, otherwise [[false]]. serverCommand can be executed only from [[User Interface Event Handlers]], and this command also checks if that's the case.
| Returns [[true]] if the [[serverCommand]] can be performed on the machine and in this exact environment, otherwise [[false]]. serverCommand can be executed only from [[User Interface Event Handlers]], and this command also checks if that's the case.
  |= Description
  |DESCRIPTION=
____________________________________________________________________________________________
____________________________________________________________________________________________


| '''serverCommandExecutable''' command |= Syntax
| [[serverCommandExecutable]] command |SYNTAX=


|p1=  command: [[String]] |= Parameter 1
|p1=  command: [[String]] - see [[Multiplayer_Server_Commands#Commands|Multiplayer Server Commands]] for all available commands |PARAMETER1=


| [[Boolean]] |= Return value
| [[Boolean]] |RETURNVALUE=
____________________________________________________________________________________________
____________________________________________________________________________________________
|x1 = <code>_can = [[serverCommandAvailable]] "#kick";</code>
 
|x1 = <code>_canKick = [[serverCommandAvailable]] "#kick";</code>
 
|x2 = Add button to the main map to lock server, which could only be activated by admin:
|x2 = Add button to the main map to lock server, which could only be activated by admin:
<code>[[with]] [[uiNamespace]] [[do]] {
<code>[[with]] [[uiNamespace]] [[do]] {
Line 33: Line 35:
}];
}];
};</code>
};</code>
| [[serverCommand]], [[serverCommandAvailable]], [[Multiplayer Server Commands]] |= See also
 
| [[serverCommand]], [[serverCommandAvailable]], [[Multiplayer Server Commands]] |SEEALSO=


}}
}}
Line 45: Line 48:
<h3 style="display:none">Bottom Section</h3>
<h3 style="display:none">Bottom Section</h3>
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands ArmA2|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting_Commands_Take_On_Helicopters|{{uc:{{PAGENAME}}}}]]
[[Category:Arma 3: New Scripting Commands List|{{uc:{{PAGENAME}}}}]]
[[Category:ArmA 2: New Scripting Commands List|{{uc:{{PAGENAME}}}}]]

Revision as of 15:46, 7 April 2019

Hover & click on the images for description

Description

Description:
Returns true if the serverCommand can be performed on the machine and in this exact environment, otherwise false. serverCommand can be executed only from User Interface Event Handlers, and this command also checks if that's the case.
Groups:
Uncategorised

Syntax

Syntax:
serverCommandExecutable command
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

Notes

Bottom Section