This repository has been archived by the owner on May 25, 2021. It is now read-only.
forked from theteamcoders/Yasmin
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.php
26 lines (22 loc) · 1.46 KB
/
config.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?php
//guild_config.php needs to be located in a folder that shares the guild ID
//The folder will be automatically created after the bot sees a message being sent in the server for the first time, but you can create it yourself
//Make a copy of guild_config_template.php and place it in the folder
//**ALL** field in guild_config.php **MUST** be filled out unless otherwise noted or the bot will probably experience crashes
//This config file includes options that are enabled/disabled with chat commands
//Any changes made to this file will require a full restart of the bot before they take place
//Variables in this file are initialized at the global scope when the bot is started
//Variables need to be reinitialized within the event listener by using the GLOBAL keyword (e.g. GLOBAL $bot_id;)
$server_invite = "https://discord.com/oauth2/authorize?client_id=662093882795753482&scope=bot&permissions=8"; //Invite link to add this bot to the server
$bot_id = "662093882795753482"; //id of this bot (change it to match your bot if not using Palace Bo#9203)
//These are default options that should be set up before the bot is started for the first time. Any future changes need to be done with a chat command
$react_option = true;
$vanity_option = false;
$nsfw_option = false;
$games_option = false;
$rolepicker_option = false;
$species_option = false;
$sexuality_option = false;
$gender_option = false;
$custom_option = false; //Edit custom_roles.php before changing this to true!
?>