For the complete documentation index, see llms.txt. This page is also available as Markdown.

Discord Inegration

Use your exports/trigger here if using any other appearance script

1

Enable discord integration

Config.UseDiscordRoles = true
2

Insert your bot token that is in your discord server

create / mange your discord bot here Developer Portal

Config.BotToken         = ("Bot %s"):format("insert_bot_token_here")
3

Set your discord server id

How to get discord server id Guide

Config.DiscordGuild     = "server_id"
4

Add discord roles

Get discord role id Guide

Config.DiscordRoles     = { 
	["role_id"] = {
		theme = "red",
		label = "Project",
		image = Config.ImagePath:format("dev"),
	},
	["another_role_id"] = {
		theme = "orange",
		label = "Staff",
		image = Config.ImagePath:format("staff"),
	},
}

Last updated