TextChatCommand

사용되지 않는 항목 표시

Represents a text chat command. Can be used to create custom text chat commands when parented to TextChatService. Custom commands can have up to two aliases, and the Triggered event fires when a user types "/{PrimaryAlias}" or "/{SecondaryAlias}" into the chat.

To learn more about using TextChatService, see In-Experience Text Chat.

요약

속성

이벤트

속성

AutocompleteVisible

병렬 읽기

Enabled

병렬 읽기

Determines whether the TextChatCommand is enabled.

When disabled, messages that match "/{PrimaryAlias}" or "/{SecondaryAlias}" is not sunk and is sent to other users.

Use this to disable default commands on a case-by-case basis.

PrimaryAlias

병렬 읽기

A primary alias used to trigger the TextChatCommand.

If a user sends a message with TextChannel:SendAsync() that matches "/{TextChatCommand.PrimaryAlias}", then the message is not sent and instead TextChatCommand.Triggered is fired.

SecondaryAlias

병렬 읽기

A secondary alias used to trigger the TextChatCommand.

메서드

이벤트

Triggered

An event that developers can bind to execute commands.

When a user sends a message to the server via TextChannel:SendAsync(), the message is intercepted by the TextChatCommand and not replicated to other users if the content of the message matches "/{TextChatCommand.PrimaryAlias}" or "/{TextChatCommand.SecondaryAlias}".

For example, for a TextChatCommand with TextChatCommand.PrimaryAlias as "mute", if a user sends "/mute SomeUserName", then the relevant TextChatCommand for mute will fire its TextChatCommand.Triggered. The message "/mute SomeUserName" is not replicated to other users.

매개 변수

originTextSource: TextSource

A reference to the TextSource responsible for triggering the command via TextChannel:SendAsync().

unfilteredText: string

The full, unfiltered text used to trigger the command that can be used to dissect parameters from the command message.