Back to index...

NameTypeDeprecatedSecureDescription
Command.Slash.RegisterfunctionRegisters a new chat slash command, inserts a new event table into the Event.Slash hierarchy, and...
Event.Slash.accountsAddon-created event. No documentation available.
Event.Slash.bagAddon-created event. No documentation available.
Event.Slash.enfiltAddon-created event. No documentation available.
Event.Slash.getoptAddon-created event. No documentation available.

Command.Slash.Register

Registers a new chat slash command, inserts a new event table into the Event.Slash hierarchy, and returns that table. If called multiple times with the same slash command, will return the same table each time.

Usage:

eventTable = Command.Slash.Register(slashCommand)
ParameterTypeDatatypeDescription
slashCommandparameterstringThe name of the slash command to register.
eventTableresulttableThe event table for your slash command. nil if the slash command could not be registered (usually because it conflicts with a built-in slash command.) Will return the same event table if used twice to register the same slash command.

Event.Slash.accounts

Addon-created event. No documentation available.

Usage:

Event.Slash.accounts(handle, ...)
ParameterTypeDatatypeDescription
...???<nope>
handle???variant

Event.Slash.bag

Addon-created event. No documentation available.

Usage:

Event.Slash.bag(handle, ...)
ParameterTypeDatatypeDescription
...???<nope>
handle???variant

Event.Slash.enfilt

Addon-created event. No documentation available.

Usage:

Event.Slash.enfilt(handle, ...)
ParameterTypeDatatypeDescription
...???<nope>
handle???variant

Event.Slash.getopt

Addon-created event. No documentation available.

Usage:

Event.Slash.getopt(handle, ...)
ParameterTypeDatatypeDescription
...???<nope>
handle???variant

Back to index...