Advertisement
Guest User

Untitled

a guest
Nov 10th, 2017
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.61 KB | None | 0 0
  1. #
  2. #
  3. # <--- SLOT MACHINE --->
  4. # Created by Ean224, version 1.0
  5. #
  6. # Please refer to Spigot page to know more
  7. # about this plugin
  8. #
  9. # If you still have any questions, feel
  10. # free to pm me on Spigot
  11. #
  12. #
  13. #checks for updates
  14. auto_update: true
  15. #Sets the default and minimum bet price
  16. #This value will also effect the value of increase and decrease per press
  17. bet_price: 10000
  18. #materials in slot machine
  19. #insert block id
  20. material:
  21. material1: DIAMOND
  22. material2: IRON_INGOT
  23. material3: COAL
  24. #Multipliers for the materials
  25. #Players who won are rewarded relative to multipliers
  26. #example: if a player won with material1 three in a row the player would recieve
  27. #an amount of money which is equal to (amount bet) * (material1 multiplier)
  28. #REMEMBER: multiplier1 is for material1, multiplier2 is for material2...
  29. multiplier:
  30. multiplier1: 3
  31. multiplier2: 2
  32. multiplier3: 1
  33. #Sound effects
  34. UI_CLICK: true
  35. POP_SOUND: true
  36. #Configures the name of the inventory
  37. select_menu_name: 'Machine à sous'
  38. slotmachine_menu_name: 'Machine à sous'
  39. help_menu_name: '&1&lSLOTMACHINE HELP MENU'
  40. mysql:
  41. allow_mysql: false
  42. ip: '0.0.0.0:0000'
  43. database_name: 'slotmachine'
  44. username: 'user'
  45. password: '1234'
  46. max_bet_amount: 1000000
  47. #probability of winning (range from 0 to 1)
  48. winning-probability: 0.4
  49. #probability of winning what item (range from 0 to 1)
  50. #WARNING: all should add up to be 1
  51. item-probability:
  52. material1: 0.1
  53. material2: 0.3
  54. material3: 0.6
  55. #custom aliases here
  56. aliases:
  57. - 'ms'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement