Difference between revisions of "Xpl command"

From Sim Innovations Wiki
Jump to navigation Jump to search
Line 5: Line 5:
'''xpl_command''' is used to send a command to X-plane
'''xpl_command''' is used to send a command to X-plane


X-plane uses commandrefs, these may be used to send commands to. [[xplane_commandrefs|CommandRefs]]
X-plane uses commandrefs, these may be used to send commands to X-Plane. This is the full list of available [[xplane_commandrefs|CommandRefs]].


== Return value ==  
== Return value ==  

Revision as of 11:36, 4 January 2016

Description

xpl_command(commandref)

xpl_command is used to send a command to X-plane

X-plane uses commandrefs, these may be used to send commands to X-Plane. This is the full list of available CommandRefs.

Return value

This function won't return any value.

Arguments

# Argument Type Description
1 commandref String Reference to a command from X-plane (see CommandRefs)
2 value Number Optional field. Providing it with 1 will send a BEGIN command, Providing it with 0 will send an END command.

Example

-- Shut down X-plane
xpl_command("sim/operation/quit")