Guest User

Untitled

a guest
Sep 7th, 2014
320
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.32 KB | None | 0 0
  1. #Hidden Ores Scenario by Scloper
  2. #Skript by Tomochevski
  3.  
  4. #Chance of Iron Ore Dropping is 3%
  5. #Chance of Gold Ore dropping is 1%
  6. #Chance of Diamond dropping is .5%
  7. #Feel free to make edit's
  8.  
  9. options:
  10. ho: &a[Hidden Ores]
  11.  
  12. command /hores <text>:
  13. description: Enable:Disable:Help Hidden Ores
  14. usage: /hores Enable:Disable:Help
  15. permission: skript.op
  16. trigger:
  17. if arg 1 is equal to "enable":
  18. set {hores} to true
  19. broadcast "{@ho} &dEnabled"
  20. if arg 1 is equal to "disable":
  21. set {hores} to true
  22. broadcast "{@ho} &dDisabled"
  23. if arg 1 is equal to "help":
  24. message "{@ho} &d-------------------------------------------"
  25. message "{@ho} &d/hores enable to enable the scenario"
  26. message "{@ho} &d/hores disable to disable the scenario"
  27. message "{@ho} &dScenario by Scloper"
  28. message "{@ho} &dSkript by Tomochevski"
  29. message "{@ho} &d-------------------------------------------"
  30.  
  31. on mine of stone:
  32. {hores} is true:
  33. cancel the event
  34. set block to air
  35. chance of 3%
  36. drop 1 iron ore
  37.  
  38. on mine of stone:
  39. {hores} is true:
  40. cancel the event
  41. set block to air
  42. chance of 1%
  43. drop 1 gold ore
  44.  
  45. on mine of stone:
  46. {hores} is true:
  47. cancel the event
  48. set block to air
  49. chance of .75%
  50. drop 1 diamond
  51.  
  52. on mine of stone:
  53. {hores} is true:
  54. cancel the event
  55. drop 1 cobblestone
Advertisement
Add Comment
Please, Sign In to add comment