Advertisement
Guest User

config

a guest
Feb 16th, 2019
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 3.03 KB | None | 0 0
  1. # Bungeecord do you want to enable bungeecord mode? This requires the plugin to be on bungeecord and the bukkit servers you want to use this plugin on.
  2. bungeecord: false
  3.  
  4. # Storage this is the storage section
  5. # This allows you to define which storage type you want to use!
  6. # Available storage types: flatfile, mysql
  7. # If none is found it will default to flatfile!
  8. # If choosing MySQL make sure you fill in the mysql section!
  9. # The mysql section is straightforward fill everything in make sure the database exists and you are good to go
  10. # The plugin itself already makes a table so do not worry about this.
  11. storage:
  12.   type: "flatfile"
  13.   mysql:
  14.     hostname: "localhost"
  15.     port: "3306"
  16.     username: ""
  17.     password: ""
  18.     database: "lemonmobcoins"
  19.  
  20. # Mob-list
  21. # This list is the chances and the amount of coins the mobs drop when killed.
  22. #
  23. # Chance: the chance for the amount to be dropped. Make this 100 if you want it to always drop the amount.
  24. # Amount: the amount to be dropped. This can be randomized by doing:
  25. # amount: "minimumvalue-maximumvalue"
  26. # For example I want to drop a random amount ranging from 2 to 8 coins
  27. # Then I would do:
  28. # amount: "2-8"
  29. mob-list:
  30.   blaze:
  31.     chance: 90
  32.     amount: "1-2"
  33.   skeleton:
  34.     chance: 40
  35.     amount: 1
  36.   zombie:
  37.     chance: 30
  38.     amount: 1
  39.   creeper:
  40.     chance:
  41.     amount: 60
  42.   enderman:
  43.     chance: 70
  44.     amount: 1
  45.   wither:
  46.     chance: 100
  47.     amount: 1
  48.  
  49. # This is the gui!
  50. # The command is what is used to open the shop!
  51. # Rows is the amount of rows you want in the gui make sure you set your items accordingly otherwise it will error.
  52. # The items list allows you to add as many items as you want!
  53. # The name // identifier can be anything and will just be used as the permission for this item.
  54. # Glowing is if the item looks like it is enchanted.
  55. # Permission is a boolean (true/false) if you want everyone to be able to buy this and not require a permission set this to false otherwise set it to true!
  56. # The price in mobcoins that you need to make this purchase.
  57. # The commands to run after purchase.
  58. gui:
  59.   name: "&8Sklep"
  60.   command: "/coinshop"
  61.   rows: 3
  62.   items:
  63.     expbottle:
  64.         material: "EXPERIENCE_BOTTLE"
  65.         slot: 2
  66.         amount: 1
  67.         displayname: "&dZaklęta butelka"
  68.         glowing: true
  69.         lore:
  70.        - "Butelka z EXPem."
  71.         - ''
  72.         - "&8* &7Koszt: &6$&e30"
  73.         permission: false
  74.         price: 30
  75.         commands:
  76.        - "give %player% experience_bottle"
  77.     drill:
  78.       material: "DIAMOND_PICKAXE"
  79.       slot: 1
  80.       amount: 1
  81.       displayname: "&bDiamond &fDrill"
  82.       glowing: true
  83.       lore:
  84.      - "&7Efficiency VI"
  85.       - "&7Unbreaking IV"
  86.       - "&7Fortune IV"
  87.       - "&7Made by the most skilled blacksmiths"
  88.       - ''
  89.       - "&8* &7Price: &6$&e100"
  90.       permission: false
  91.       price: 100
  92.       commands:
  93.      - "give %player% diamond_pickaxe{display:{Lore:[\"Made by the Most Skilled Blacksmiths\"]},Enchantments:[{id:\"efficiency\",lvl:4},{id:\"fortune\",lvl:6}]} 1"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement