Remarks
This class enables plugins to access the chat window shell, allowing them to register their own commands and query the list of commands available. The ability to execute commands is protected and not available to user mods.
Examples
This example demonstrates how to test if a command is available.
Checking for a command | ![]() |
---|---|
local canDance = Turbine.Shell.IsCommand("dance"); Turbine.Shell.WriteLine("Does the dance command exist? " .. canDance ); |