Advertisement
Guest User

Untitled

a guest
Nov 15th, 2018
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.59 KB | None | 0 0
  1. --[[
  2. ZRewards - (SH) Config
  3. Developed by Zephruz
  4. ]]
  5.  
  6. --[[
  7. zrewards.config.mysqlInfo
  8.  
  9. - Servers data info
  10. - If you're not using mysqloo set dbModule to "sqlite"
  11. ]]
  12. zrewards.config.mysqlInfo = {
  13. dbModule = "mysqloo", -- mysqloo or sqlite
  14. dbName = "drewbie_reward",
  15. dbHost = "37.122.209.16",
  16. dbUser = "drewreward",
  17. dbPass = "J!8de45g",
  18. }
  19.  
  20. --[[
  21. zrewards.config.methodsSettings
  22.  
  23. - Settings for each method type
  24. ]]
  25. zrewards.config.methodsSettings = {} -- DON'T EDIT THIS
  26.  
  27. --[[
  28. Name Tag
  29.  
  30. [INSTRUCTIONS]
  31. - Set 'NameTag' to the tag you want a player to have in their name
  32. ]]
  33. zrewards.config.methodsSettings["nametag"] = {
  34. NameTag = "drewscommunity.com",
  35. }
  36.  
  37. --[[
  38. Steam Group Method
  39.  
  40. [INSTRUCTIONS]
  41. - Get a SteamAPI Key: https://steamcommunity.com/dev/apikey
  42. - Get your GroupID: https://steamcommunity.com/groups/YOUR_GROUP_NAME/edit
  43. - Looks something like this: 33824579
  44. - Replace YOUR_GROUP_NAME with your groups URL handle
  45. - GroupLink: Just a link to your group the player can join at
  46. - Looks something like this: https://steamcommunity.com/groups/zephruz
  47. ]]
  48. zrewards.config.methodsSettings["steamgroup"] = {
  49. Enabled = true,
  50. APIKey = "4938A19BD1CBAB3D5127271D6A373622",
  51. GroupID = "DCCG",
  52. GroupLink = "https://steamcommunity.com/groups/DCCG",
  53. }
  54.  
  55. --[[
  56. Discord Server Method
  57.  
  58. [INSTRUCTIONS]
  59. Go here to learn how to get your GuildID: https://support.discordapp.com/hc/en-us/articles/206346498-Where-can-I-find-my-User-Server-Message-ID-
  60. Go here to make an application: https://discordapp.com/developers/applications/
  61. - Create an application, make it nice (name it, give it a picture, etc).
  62. - Copy your client ID & client secret - paste them below.
  63. - Click "Bot" on the left side of the screen & create your bot.
  64. - Set up your bot, make it nice too. Click the "Copy" button under the token section - paste it below.
  65. - You're done, have fun.
  66. ]]
  67. zrewards.config.methodsSettings["discordserver"] = {
  68. Enabled = true,
  69. VerifyOnSpawn = false, -- This would get annoying as fuck, they can verify via the menu (you can enable if you want)
  70. GuildID = "277932661354528769", -- Your discord guild ID
  71. ClientID = "506504342509977611", -- Your discord application client ID
  72. ClientSecret = "93Ku6mnFVoNRKpKQZxczNoTAKvqFWBY2", -- Your discord application client secret
  73. BotToken = "NTA2NTA0MzQyNTA5OTc3NjEx.DrjQ9Q.ApYlSLJyxaz8DDx17YNm3Y4YsrA", -- Your discord bot token
  74. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement