25ea292757
- Adjusted database creds. - Updated server artifacts to latest.
43 lines
2.5 KiB
Lua
43 lines
2.5 KiB
Lua
------------------------------------------------------------------------------------
|
|
--------------------------------- night_discordapi ---------------------------------
|
|
------------------------------------------------------------------------------------
|
|
-------------------------------------- Config --------------------------------------
|
|
------------------------------------------------------------------------------------
|
|
|
|
-- Please read the documentation and/or watch the installation video tutorial (available on the documentation page) before asking us for support.
|
|
|
|
-- Documentation Page: https://docs.nights-software.com/resources/discordAPI/ (<- INSTALLATION GUIDE HERE)
|
|
-- Support Discord: https://discord.nights-software.com/
|
|
|
|
Config = {
|
|
-- No own bot? Leave `Discord_Bot_Token = "",` as it is and invite ours » https://discord.com/oauth2/authorize?client_id=956690799385522237&permissions=1024&scope=bot
|
|
-- If you do have a bot: define your BOT token below, inbetween the quotation marks: "your_bot_token_here",
|
|
Discord_Bot_Token = "NzUxOTY4NTY3MzA5NzYyNjgw.GzVJ9D.kAxZs0UBN-XxcSJPBRqo6zrp1L_KsjoBHibYYE",
|
|
Discord_Guild_Names = {
|
|
["361895986198609920"] = "Elite Group", -- Your primary server/guild ID (legacy scripts will get information regarding this guild)
|
|
-- ["1001055923912653544"] = "My Community Discord", -- Add another guild. Make sure to invite the bot into this guild.
|
|
},
|
|
Discord_Role_Names = { -- Add Discord roles by their role ID here, name them how you want but make sure to MATCH the NAMES in other configs of our resources.
|
|
-- Example:
|
|
["Civilian I"] = "813907383892967424",
|
|
["Civilian II"] = "876585455615889450",
|
|
["Civilian III"] = "876585456387629066",
|
|
["Civilian IV"] = "876585900946128936",
|
|
["Civilian V"] = "876585431901294663",
|
|
["First Responders"] = "807381508167565352",
|
|
["CALFIRE"] = "807381509195300905",
|
|
["CHP"] = "807381508859887667",
|
|
["EG | Helper"] = "538822780662054963",
|
|
["EG | Staff"] = "608583076037001225",
|
|
["EG | Sr. Staff"] = "789551229549281331",
|
|
["EG | Moderator"] = "517060882686279701",
|
|
["EG | Sr. Moderator"] = "789538166536798248",
|
|
["EG | Admin"] = "635155687688634399",
|
|
["EG | Sr. Admin"] = "556158473981788176",
|
|
["EG | Head of Staff"] = "650653280275267591",
|
|
["EG | Server Developer"] = "671141073728307228",
|
|
["EG | Owner"] = "361899298209923075",
|
|
},
|
|
Discord_API_Log_Level = 0, -- Level 0 - Only shows INFO, ERROR and WARN messages | Any higher level will include DEBUG messages
|
|
}
|