diff --git a/ND_Core/config_server.lua b/ND_Core/config_server.lua index 0c1a221..25d4664 100644 --- a/ND_Core/config_server.lua +++ b/ND_Core/config_server.lua @@ -13,23 +13,16 @@ config = { changeCharacterCommand = "changecharacter", -- this is the command to open the ui again and change your character. -- discord bot token for permissions - DiscordToken = "OTAwODg1MDMxMDQ2Nzc0ODQ1.YXH0kQ.p5DRIbh5m9Ia5_tlMZdxkfgJjsI", - GuildId = "872496972454592523", -- discord guild id + DiscordToken = "OTAwODg1MDMxMDQ2Nzc0ODQ1.YXH0kQ.p5DRIbh5m9Ia5_tlMZdxkfgJjsI", -- this token is invalid, just here as an example. + GuildId = "872496972454592523", -- discord guild id -- role id for each role of the department in your discord. 0 Gives the role to everyone. - roles = { + roles = { ["ADMIN"] = "0", -- You can remove this if you don't want it but this should only be here for permisisons not as a department and it won't display as a department. This can be used for /setaop and other permissions. - ["CIV"] = "0", + ["CIV"] = "0", ["SAHP"] = "0", ["LSPD"] = "0", ["BCSO"] = "0", ["LSFD"] = "0" - }, - - -- Money related - payCommand = "pay", -- Command to transfer someone money from bank account. - giveCommand = "give", -- Command to give someone close money from wallet. - - salaryAmount = 300, -- the daily amount that players will receive. - salaryInterval = 24, -- every x minutes the player will receive the salaryAmount. -} \ No newline at end of file + }, +}