Back to index...

NameTypeDeprecatedSecureDescription
Event.InteractionSignals a change in available interaction types.
Inspect.InteractionfunctionProvides information about what types of interaction are available.

Event.Interaction

Signals a change in available interaction types.

Usage:

Event.Interaction(interaction, state)
ParameterTypeDatatypeDescription
interactionparametervariantThe identifier of the interaction type. May be any of "auction", "bank", "guildbank", or "mail".
stateparameter<nope>Boolean indicating whether or not that interaction is available.

Inspect.Interaction

Provides information about what types of interaction are available.

Usage:

interactions = Inspect.Interaction()
status = Inspect.Interaction(interaction)
ParameterTypeDatatypeDescription
interactionparameterstringOptional name of the interaction type to query. Valid values include "auction", "bank", "guildbank", and "mail".
interactionsresulttableTable from interaction type to indicator of whether that interaction is available.
statusresultbooleanWhether or not that interaction type is available.

Back to index...