Advertisement
Guest User

Untitled

a guest
Mar 28th, 2019
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.95 KB | None | 0 0
  1. --[[
  2. ZRewards - (SH) Config
  3. Developed by Zephruz
  4. ]]
  5.  
  6.  
  7. --[[
  8. zrewards.config.mysqlInfo
  9.  
  10. - Servers data info
  11. - If you're not using mysqloo set dbModule to "sqlite"
  12. ]]
  13. zrewards.config.mysqlInfo = {
  14. dbModule = "sqlite", -- mysqloo or sqlite
  15. dbName = "garrysmod",
  16. dbHost = "localhost",
  17. dbUser = "root",
  18. dbPass = "",
  19. }
  20.  
  21. --[[
  22. zrewards.config.steamApiKey
  23.  
  24. - Your SteamAPI key
  25. ]]
  26. zrewards.config.steamApiKey = "4408F63A9EF7316F825827071894EA46"
  27.  
  28. --[[
  29. zrewards.config.methodsSettings
  30.  
  31. - Settings for each method type
  32. ]]
  33. zrewards.config.methodsSettings = {} -- DON'T EDIT THIS
  34.  
  35. --[[
  36. Daily Login
  37.  
  38. [INSTRUCTIONS]
  39. - No instructions
  40. ]]
  41. zrewards.config.methodsSettings["dailylogin"] = {
  42. VerifyOnSpawn = false,
  43. }
  44.  
  45. --[[
  46. Name Tag
  47.  
  48. [INSTRUCTIONS]
  49. - Set 'NameTag' to the tag you want a player to have in their name
  50. - Get a SteamAPI Key: https://steamcommunity.com/dev/apikey
  51. - You don't need to set this here if you set it at the top of this file
  52. ]]
  53. zrewards.config.methodsSettings["nametag"] = {
  54. VerifyOnSpawn = false,
  55. NameTag = "[evolutionroleplay.co.uk]",
  56. APIKey = zrewards.config.steamApiKey,
  57. }
  58.  
  59. --[[
  60. Steam Group Method
  61.  
  62. [INSTRUCTIONS]
  63. - Get a SteamAPI Key: https://steamcommunity.com/dev/apikey
  64. - You don't need to set this if you set it at the top of this file
  65.  
  66. - Get your GroupID: https://steamcommunity.com/groups/YOUR_GROUP_NAME/edit
  67. - Looks something like this: 33824579
  68. - Replace YOUR_GROUP_NAME with your groups URL handle
  69.  
  70. - GroupLink: Just a link to your group the player can join at
  71. - Looks something like this: https://steamcommunity.com/groups/zephruz
  72. ]]
  73. zrewards.config.methodsSettings["steamgroup"] = {
  74. VerifyOnSpawn = false,
  75. APIKey = zrewards.config.steamApiKey,
  76. GroupID = "34402813",
  77. GroupLink = "https://steamcommunity.com/groups/evoroleplay",
  78. }
  79.  
  80. --[[
  81. Discord Server Method
  82.  
  83. [INSTRUCTIONS]
  84. - Invite the Zephruz.net bot to your server
  85. * Use this link: https://discordapp.com/oauth2/authorize?client_id=505154629160534026&scope=bot&permissions=519232
  86. * You can change the bot name once it's in your server
  87. - (?)
  88. ]]
  89.  
  90. --[[
  91. Discord Server Method
  92.  
  93. - CURRENTLY DOESN'T FUNCTION!
  94. - WORKING ON A FIX
  95.  
  96. [INSTRUCTIONS]
  97. 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-
  98. Go here to make an application: https://discordapp.com/developers/applications/
  99. - Create an application, make it nice (name it, give it a picture, etc).
  100. - Copy your client ID & client secret - paste them below.
  101. - Bot Setup:
  102. * Click "Bot" on the left side of the screen & create your bot.
  103. * Set up your bot, make it nice too. Click the "Copy" button under the token section - paste it below.
  104. - OAuth2 Setup:
  105. * Click "OAuth2" on the left side of the screen
  106. * Click "Add Redirect" under the "Redirects" section
  107. * Enter a URL here, preferrably your website (must include http:// or https://)
  108. * Make sure to save!
  109. - You're done, have fun.
  110. ]]
  111. zrewards.config.methodsSettings["discordserver"] = {
  112. VerifyOnSpawn = false, -- This would get annoying as fuck, they can verify via the menu (you can enable if you want)
  113. InviteLink = "https://discord.gg/nENpr5n", -- Your discord invite link
  114. GuildID = "266178277075451904", -- Your discord guild ID
  115. ClientID = "560572187933671434", -- Your discord application client ID
  116. ClientSecret = "i1unxUc3zEpEBiGhQREopBFZpquthLuR", -- Your discord application client secret
  117. BotToken = "NTYwNTcyMTg3OTMzNjcxNDM0.D315Mg.jpI_pYKGXpd0bbzC2jd1fabxGAs", -- Your discord bot token
  118. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement