Advertisement
Guest User

Untitled

a guest
Aug 13th, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. settings {
  2.  
  3. http {
  4.  
  5. host="0.0.0.0"
  6.  
  7. port=8080
  8.  
  9. }
  10.  
  11. mysql {
  12.  
  13. host="127.0.0.1"
  14.  
  15. port="3306"
  16.  
  17. username="root"
  18.  
  19. password=""
  20.  
  21. database="PokeRanks"
  22.  
  23. }
  24.  
  25. hierarchy {
  26.  
  27. Bronze=0
  28.  
  29. Silver=100
  30.  
  31. Gold=200
  32.  
  33. Diamond=300
  34.  
  35. Master=400
  36.  
  37. Elite=500
  38.  
  39. Champion=600
  40.  
  41. Primal=700
  42.  
  43. }
  44.  
  45. points {
  46.  
  47. win=10
  48.  
  49. loss=5
  50.  
  51. initial=0
  52.  
  53. }
  54.  
  55. rewards {
  56.  
  57. "1000"=["give %player% minecraft:diamond 10", "say %player% just hit 1,000 points!"]
  58.  
  59. "1500"=["give %player% minecraft:diamond 15", "say %player% just hit 1,500 points!"]
  60.  
  61. }
  62.  
  63. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement