DiscordLua
discorddiscord
v1.2.4
Install

ActivityLocationKind

Enum
On this page

discord.ActivityLocationKind lists the named constants for this enumeration. Prefer these names over hardcoded literals.

Values

discord.ActivityLocationKind.GuildChannel
gc
Guild Channel. Use the symbolic name in bot code rather than the raw value.
discord.ActivityLocationKind.PrivateChannel
pc
Private Channel. Use the symbolic name in bot code rather than the raw value.

Usage

Read members as discord.ActivityLocationKind.Name. Do not hard-code numeric literals when a symbolic name exists.

Example

lua
local discord = require("discord")
print(discord.ActivityLocationKind.GuildChannel)
Search Ctrl K Navigate Open Esc