Advertisement
Guest User

Untitled

a guest
Feb 28th, 2016
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.33 KB | None | 0 0
  1. database:
  2. ip: "localhost"
  3. port: 3306
  4. database: "pets"
  5. username: "root"
  6. password: "password"
  7. options:
  8. pets-gui-name: "&c&lPets"
  9. pets-gui-size: 54
  10. pets-item-inv-slot: 0
  11. pets-item-type: "MONSTER_EGG"
  12. pets-item-data: 0
  13. pets-item-display-name: "&c&lYour Pets"
  14. pets-item-lore:
  15. - "&cThis is your pet selector"
  16. pets-locked-lore: "&c&lLocked Pet"
  17. messages:
  18. upgrade-made: "&c&lUpgrade made."
  19. not-enough-gems: "&c&lYou do not have enough gems for that."
  20. max-level: "&c&lThat perk is already at it's max level."
  21. donor-only: "&c&lYou must be a donator to ride that pet."
  22. items:
  23. # Increment this by one each time, starts at 1
  24. "1":
  25. # Material name
  26. type: "GOLDEN_APPLE"
  27. # Display name
  28. name: "&5Example Item"
  29. # Data ID
  30. data: 1
  31. # Lore
  32. lore:
  33. - "&5Multiline lores supported"
  34. # Position in the inventory that shows up, first slot is 0
  35. position: 0
  36. # Action the item preforms, if none, then put "None" here
  37. action: "spawnCow"
  38. # Increment this by one each time, starts at 1
  39. "2":
  40. # Material name
  41. type: "STONE"
  42. # Display name
  43. name: "&5Example Item"
  44. # Data ID
  45. data: 0
  46. # Lore
  47. lore:
  48. - "&5Multiline lores supported"
  49. # Position in the inventory that shows up, first slot is 0
  50. position: 1
  51. # Action the item preforms, if none, then put "None" here
  52. action: "spawnSheep"
  53.  
  54. Possible actions are:
  55. spawnCow - Cow pet
  56. spawnChicken - Chicken pet
  57. spawnSilverfish - Silverfish pet
  58. spawnSheep - Sheep pet
  59. spawnPig - Pig pet
  60. spawnSpider - Spider pet
  61. spawnBat - Bat pet
  62. upgradeCowMultiplier - Upgrades the cow's sell multiplier
  63. upgradePigMultiplier - Upgrades the pig's sell multiplier
  64. upgradePigAssistant - Upgrades the pig's assistant level
  65. upgradeChickenSell - Upgrades the chicken's sell multiplier
  66. upgradeChickenFlee - Upgrades the chicken's flee level
  67. upgradeSilverfishSell - Upgrades the silverfish's sell multiplier
  68. upgradeSilverfishUndebuff - Upgrades the undebuff level
  69. upgradeSheepSell - Upgrades the sheep's sell multiplier
  70. upgradeSheepAssistant - Upgrades the sheep's assistant level
  71. upgradeSpiderSell - Upgrades the spider's sell multiplier
  72. upgradeSpiderAssistant - Upgrades the spider's sell assistant
  73. upgradeBatFly - Upgrades the bat's fly level
  74. none - cosmetic item, no plugin side action
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement