Advertisement
Guest User

Untitled

a guest
Dec 5th, 2018
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.18 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 = "gangland_zrewardspleasework",
  15. dbHost = "ganglandrp.com",
  16. dbUser = "gangland_zrewardspleaseworkadmin",
  17. dbPass = "thisshitbetterwork",
  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. Daily Login
  29.  
  30. [INSTRUCTIONS]
  31. - No instructions
  32. ]]
  33. zrewards.config.methodsSettings["dailylogin"] = {
  34. Enabled = true,
  35. VerifyOnSpawn = false,
  36. }
  37.  
  38. --[[
  39. Name Tag
  40.  
  41. [INSTRUCTIONS]
  42. - Set 'NameTag' to the tag you want a player to have in their name
  43. - Get a SteamAPI Key: https://steamcommunity.com/dev/apikey
  44. ]]
  45. zrewards.config.methodsSettings["nametag"] = {
  46. Enabled = true,
  47. VerifyOnSpawn = false,
  48. NameTag = "[GangLandRP.com]",
  49. APIKey = "8250CC6AD2AF8F2884713F07AC024621",
  50. }
  51.  
  52. --[[
  53. Steam Group Method
  54.  
  55. [INSTRUCTIONS]
  56. - Get a SteamAPI Key: https://steamcommunity.com/dev/apikey
  57. - Get your GroupID: https://steamcommunity.com/groups/YOUR_GROUP_NAME/edit
  58. - Looks something like this: 33824579
  59. - Replace YOUR_GROUP_NAME with your groups URL handle
  60. - GroupLink: Just a link to your group the player can join at
  61. - Looks something like this: https://steamcommunity.com/groups/zephruz
  62. ]]
  63. zrewards.config.methodsSettings["steamgroup"] = {
  64. Enabled = true,
  65. VerifyOnSpawn = false,
  66. APIKey = "8250CC6AD2AF8F2884713F07AC024621",
  67. GroupID = "34011220",
  68. GroupLink = "https://steamcommunity.com/groups/GangLandDarkRP",
  69. }
  70.  
  71. --[[
  72. Discord Server Method
  73.  
  74. [INSTRUCTIONS]
  75. 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-
  76. Go here to make an application: https://discordapp.com/developers/applications/
  77. - Create an application, make it nice (name it, give it a picture, etc).
  78. - Copy your client ID & client secret - paste them below.
  79. - Click "Bot" on the left side of the screen & create your bot.
  80. - Set up your bot, make it nice too. Click the "Copy" button under the token section - paste it below.
  81. - You're done, have fun.
  82. ]]
  83. zrewards.config.methodsSettings["discordserver"] = {
  84. Enabled = true,
  85. VerifyOnSpawn = false, -- This would get annoying as fuck, they can verify via the menu (you can enable if you want)
  86. InviteLink = "https://discord.gg/ssnTSuA", -- Your discord invite link
  87. GuildID = "208227206793658370", -- Your discord guild ID
  88. ClientID = "519215046862307338", -- Your discord application client ID
  89. ClientSecret = "tkIkUfaPXkTMLZaos27-3786Q7P4jSjj", -- Your discord application client secret
  90. BotToken = "NTE5MjE1MDQ2ODYyMzA3MzM4.Dun2bA.nVAufPIWNpsUUTY9RxTbSg975O8", -- Your discord bot token
  91. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement