Advertisement
Jragon014

Minecraft Biome Detector 1.11

Dec 27th, 2016
1,283
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.15 KB | None | 0 0
  1. ===SET UP===
  2. /scoreboard objectives add biomeCheck dummy
  3. /scoreboard players add @a biomeCheck 0
  4. /stats entity @p set SuccessCount @p biomeCheck
  5.  
  6. ===SNOW===
  7. /execute @p ~ ~ ~ /fill ~1 63 ~1 ~-1 90 ~-1 wool 6 replace snow_layer
  8. /execute @p ~ ~ ~ /fill ~1 63 ~1 ~-1 90 ~-1 snow_layer 0 replace wool 6
  9. /title @a[score_biomeCheck_min=1] actionbar ["",{"text":"---Snow Biome---","color":"yellow"}]
  10.  
  11. ===OAK FOREST===
  12. /execute @p ~ ~ ~ /fill ~1 63 ~1 ~-1 90 ~-1 wool 6 replace leaves 0
  13. /execute @p ~ ~ ~ /fill ~1 63 ~1 ~-1 90 ~-1 leaves 0 replace wool 6
  14. /title @a[score_biomeCheck_min=1] actionbar ["",{"text":"---Oak Forest---","color":"yellow"}]
  15.  
  16. ===SPRUCE FOREST===
  17. /execute @p ~ ~ ~ /fill ~1 63 ~1 ~-1 90 ~-1 wool 6 replace leaves 1
  18. /execute @p ~ ~ ~ /fill ~1 63 ~1 ~-1 90 ~-1 leaves 1 replace wool 6
  19. /title @a[score_biomeCheck_min=1] actionbar ["",{"text":"---Spruce Forest---","color":"yellow"}]
  20.  
  21. ===FROZEN WATER===
  22. /execute @p ~ ~ ~ /fill ~1 62 ~1 ~-1 62 ~-1 wool 6 replace ice 0
  23. /execute @p ~ ~ ~ /fill ~1 62 ~1 ~-1 62 ~-1 ice 0 replace wool 6
  24. /title @a[score_biomeCheck_min=1] actionbar ["",{"text":"---Frozen Water Body---","color":"yellow"}]
  25.  
  26. ===WATER===
  27. /execute @p ~ ~ ~ /fill ~1 62 ~1 ~-1 62 ~-1 wool 6 replace water 0
  28. /execute @p ~ ~ ~ /fill ~1 62 ~1 ~-1 62 ~-1 water 0 replace wool 6
  29. /title @a[score_biomeCheck_min=1] actionbar ["",{"text":"---Water Body---","color":"yellow"}]
  30.  
  31. ===DARK OAK FOREST===
  32. /execute @p ~ ~ ~ /fill ~1 63 ~1 ~-1 90 ~-1 wool 6 replace leaves2 1
  33. /execute @p ~ ~ ~ /fill ~1 63 ~1 ~-1 90 ~-1 leaves2 1 replace wool 6
  34. /title @a[score_biomeCheck_min=1] actionbar ["",{"text":"---Dark Oak Forest---","color":"yellow"}]
  35.  
  36. ===PLAINS?===
  37. /execute @p ~ ~ ~ /fill ~5 63 ~5 ~-5 80 ~-5 wool 6 replace double_plant 2
  38. /execute @p ~ ~ ~ /fill ~5 63 ~5 ~-5 80 ~-5 double_plant 2 replace wool 6
  39. /title @a[score_biomeCheck_min=1] actionbar ["",{"text":"---Plains---","color":"yellow"}]
  40.  
  41. ===EXTREME HILLS===
  42. /execute @p ~ ~ ~ /fill ~1 4 ~1 ~-1 32 ~-1 wool 6 replace emerald_ore 0
  43. /execute @p ~ ~ ~ /fill ~1 4 ~1 ~-1 32 ~-1 emerald_ore 0 replace wool 6
  44. /title @a[score_biomeCheck_min=1] actionbar ["",{"text":"---Extreme Hills---","color":"yellow"}]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement