Advertisement
Guest User

Untitled

a guest
Nov 18th, 2017
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.46 KB | None | 0 0
  1. # requirements:
  2. # time: 1d 1h 1m
  3. # exp: 20 (level)
  4. # money: 2000 (requires vault ! Player has to have at least this amount of money)
  5. # world: world_nether (player has to be in this world to get ranked)
  6. # gamemode: 1 (player has to have a certain gamemode, 0 = Survival mode, 1 = Creative mode, 2 = Adventure mode)
  7. # has item: id(;amount;data;name;false/true) (checks the players inventory for the item, the name would be the display name of the item. When the false/true (boolean) parameter is true, the player should have the item with the given display name, if it is false, the player only needs the specific amount and material type.)
  8. # blocks broken: id(;amount;data;name) (a player has to have broken x amount blocks of item id and data) (Requires Statz) (when no data or id is given, it will check total blocks)
  9. # Example: break 10 magenta wool would be: 'blocks broken: 35;10;2' 35 = itemid, 10 = amount, 2 = damagevalue
  10. # blocks placed: id(;amount;data;name) (a player has to have placed x amount blocks of item id and data) (Requires Statz) (when no data or amount is given, it will check total blocks)
  11. # votes: 10 (player has to have voted at least 10 times) (Requires Statz and Votifier)
  12. # damage taken: 10 (player has to have taken 10 damage) (damage is not counted in hearts) (Requires Statz)
  13. # mobs killed: 5;spider (player has to have killed 5 spiders) (if no entity is specified, then any kill counts) (Requires Statz) (for a list of entities: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/entity/EntityType.html) Can also use WITHER_SKELETON,
  14. # location: x;y;z;world;radius (player has to be in a location or within its radius)
  15. # faction power: 10 (Amount of power a faction has to have) (Requires Factions)
  16. # players killed: 10 (Player has to kill at least 10 players) (Requires Statz)
  17. # global time: 10d 1h 5m (Player has to be online for at least 10 days, 1 hour and 5 mins) (Global time is the accumulated time over all servers you have connected the MySQL database with)
  18. # total time: 50d 1h (Player has to be with this server for at least 50 days and 1 hour) (The time from when the player joined for the first time is the reference point. This means that when a player has joined 3 weeks ago, his 'total time' = 3 weeks)
  19. # blocks moved: 1000;0 (Player has to move at least an x amount of blocks. Second argument is what kind of movement: 0=walk, 1=boat, 2=train, 3=pig, 4=pig in train, 5=horse) (Need Statz for this)
  20. # worldguard region: TestRegion (Player has to be in a certain WorldGuard region) (requires WorldGuard)
  21. # mcmmo skill level: 100;mining (Player has to have at least level 100 in mining) (requires McMMO)
  22. # mcmmo power level: 100 (Player has to have at least power level 100) (requires McMMO)
  23. # permission: i.need.a.permission (Player has to have this permission)
  24. # fish caught: 10 (Player has to have caught at least 10 fish) (requires Statz)
  25. # items crafted: 7 (Player has to have crafted at least 7 items) (requires Statz)
  26. # times sheared: 15 (Player has to have sheared at least 15 sheep) (requires Statz)
  27. # essentials geoip location: Netherlands (Player has to be in the area 'Netherlands') (requires Essentials GeoIP)
  28. # in biome: river (Player has to be in biome 'river') (a list of all biomes: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/block/Biome.html)
  29. # food eaten: 10;PORK (Player has to eat at least 10 Pork chops) (Food type can be omitted to include any type of food) (Statz required)
  30. # acidisland level: 10 (Player needs to have at least an island level of 10) (AcidIsland required)
  31. # askyblock level: 10 (Player needs to have at least an island level of 10) (ASkyBlock required)
  32. # javascript: Player.getHealth() > 15;You need at least 15 hearts of health. (This first part must be true for this evaluations to be true, the second part is the description that is shown.)
  33. # jobs current points: 10 (Player needs to have at least 10 points (at the moment of checking) in Jobs) (requires Jobs)
  34. # jobs total points: 100 (Player needs to have at least 100 points in total in Jobs) (requires Jobs)
  35. # jobs level: 50;mining (A player has to have at least level 50 in job 'mining') (requires Jobs)
  36. # jobs experience: 100;mining (A player needs to have at least 100 exp in the job 'mining') (requires Jobs)
  37. # grief prevention claims: 100 (A player needs to have at least 100 claims in Grief Prevention) (requires GriefPrevention)
  38. # grief prevention claimed blocks: 150 (A player needs to have at least 150 blocks claimed in Grief Prevention) (requires GriefPrevention)
  39. # grief prevention remaining blocks: 20 (A player needs to have at least 20 blocks left over to claim in Grief Prevention) (requires GriefPrevention)
  40. # grief prevention bonus blocks: 60 (A player needs to have at least 60 bonus blocks in Grief Prevention) (requires GriefPrevention)
  41. # has achievement: 10 (A player needs to have at least 10 achievements.)
  42. # (also possible:) has achievement: BREED_COW (A player has to have a specific achievement. For a list of achievements, see https://hub.spigotmc.org/javadocs/spigot/org/bukkit/Achievement.html)
  43. # rpgme skill level: 20;mining (Player has to have at least level 20 in mining in RPGme) (requires RPGme)
  44. # rpgme combat level: 100 (Player has to have at least combat level 100 in RPGme) (requires RPGme)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement