Advertisement
EonZombiecrafter

MobCash config

Oct 23rd, 2016 (edited)
1,490
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 2.63 KB | None | 0 0
  1. #Mobcash Created by Feazes[retired]
  2. #Updated to 8 12/16/2020 by EonZombie
  3. #Do not use TABS, use SPACES, you can pre-check your config
  4. #(It does not check for tabs in comments, though) here: https://codebeautify.org/yaml-validator
  5.  
  6. Mobcash:
  7. #Don't edit the Version.
  8.     Version: 8.1
  9. #Toggle messages when you kill a mob
  10.     Message-enabled: true
  11. #Message sent to a player who just killed a mob
  12. #Replacements can be used: colors &(1-9 | a-f), RGB (example:&#abcdef) or words <(player | mob | money)>
  13.     Message: "&6Good job &c<player>&r! &6You just killed a &c<mob> &6and recieved &c$<money>."
  14. #Send message as ACTIONBAR or as regular MESSAGE
  15.     Message-Type: ACTIONBAR
  16. #Disable cash for ways mobs have been spawned
  17. #Spawn reasons:https://hub.spigotmc.org/javadocs/spigot/org/bukkit/event/entity/CreatureSpawnEvent.SpawnReason.html
  18.     Disable-Spawns: #add spawn reasons here, (lowercase)
  19.         - spawner
  20. #Worlds that the plugin is disabled in
  21.     DisabledWorlds:
  22.        - disabled_world
  23. #Settings for the amount of cash players get for killing mobs
  24.     Mobs:
  25. #Group Mob Settings
  26. #This is for people who want to set the same price for all mobs in a group
  27. #By default: mobs will get these values if not further defined
  28. #List of mobs per group:
  29. #Checked:https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/entity/Creature.html
  30. #Monsers:https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/entity/Monster.html
  31. #Boss:https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/entity/Boss.html
  32. #Others: Passive
  33.         GroupSettings:
  34.             PassiveMobs:
  35.                 min: 5
  36.                 max: 5
  37.             Monsters:
  38.                 min: 10
  39.                 max: 10
  40.             Bosses:
  41.                 min: 40
  42.                 max: 40
  43. #Individual Mob Settings, use lovercase names of entity type:
  44. # https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/entity/EntityType.html
  45. #Format:
  46. #name:
  47. #    min: amount
  48. #    max: amount
  49. #If you want the disable the mob put 0 as the amount for min and max value
  50.         CustomMobSettings:
  51.             bat:
  52.                 min: 3
  53.                 max: 3
  54.             blaze:
  55.                 min: 10
  56.                 max: 10
  57.     PVP:
  58. #Do you want to allow players to get money for killing other players?
  59.         Enabled: true
  60.         Messages-Enabled: true
  61. #How much should killer take from victim?
  62.         Killer-takes:
  63.             min: 10
  64.             max: 10
  65. #Message to a killer:
  66.         KillerMessage: "&c<killer>&r! &6You  killed &c&<victim> &6and gained &c<money>!"
  67. #Message to killed player:
  68.         VictimMessage: "&c<victim>&r! &6You were killed by &c&<killer> &6and lost &c<money>!"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement