Advertisement
Guest User

Untitled

a guest
Feb 19th, 2020
351
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.15 KB | None | 0 0
  1. ########################################################
  2. #
  3. # Database Config
  4. #
  5. ########################################################
  6.  
  7. # DB = 'local' or 'mysql'
  8. db: mysql
  9.  
  10. # Database Login
  11. host: localhost
  12. port: 3306
  13. database: basedata
  14. username: nameuser
  15. password: "password"
  16. table: user
  17.  
  18. # this is a small step to prevent abuse of the referrals
  19. # 0 for no referral from the same network
  20. useSameIPLimit: true
  21. # Max from the same IP
  22. maxSameIP: 0
  23.  
  24.  
  25.  
  26. ########################################################
  27. #
  28. # Player Rewards
  29. #
  30. ########################################################
  31.  
  32. # the Player has to confirm referral (or reject)
  33. usePlayerConfirm: true
  34.  
  35. # Use a Referral time limit
  36. # The time limit affects only the normal rewards (Not the milestone rewards)
  37. # The Player will have to use /ref < Player> within the timelimit when first joining the server
  38. useReferralTimeLimit: false
  39. # Time limit in minutes
  40. referralTimeLimit: 60
  41.  
  42. # These are the default rewards
  43. # This is the player that invited another player
  44. playerRefers:
  45. - eco give <Player> 500
  46. # This is the player that recieved an invite from a player
  47. playerReferd:
  48. - eco give <Player> 250
  49.  
  50.  
  51. # Use milestone rewards
  52. # This will not be affected by the time limit
  53. # These are for the Player that invited a certain amount of players to the server
  54. useMileStoneRewards: true
  55. # Milestone reward
  56. # These are some examples, and You can add more or change it
  57. # min = the required amount to get the reward
  58. # command = a list of commands to execute
  59. rewards:
  60. 1:
  61. min: 2
  62. commands:
  63. - eco give <Player> 750
  64. 2:
  65. min: 3
  66. commands:
  67. - eco give <Player> 1000
  68. 3:
  69. min: 4
  70. commands:
  71. - eco give <Player> 1250
  72. 4:
  73. min: 5
  74. commands:
  75. - eco give <Player> 1500
  76.  
  77.  
  78.  
  79. ####
  80. # The button colors can't be changed
  81. # Text on the accept button
  82. accept: "Ja"
  83. # Text on the decline button
  84. decline: "Nee"
  85.  
  86.  
  87.  
  88. # Enable notification
  89. enableNotification: false
  90. #Only for Player that join the first time
  91. referNotification: "&6The referral system has a time limit, so make sure you use it."
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement