Beta Documentation - Subject to change.

Provides programmer extensibility to the chat window.

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 commandCopy Code
      local canDance = Turbine.Shell.IsCommand("dance");
      Turbine.Shell.WriteLine("Does the dance command exist? " .. canDance );

See Also