Advertisement
Guest User

Untitled

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