Advertisement
Guest User

sh

a guest
Mar 10th, 2014
275
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. #Gamemode by Ace,Skript by 8bitfusion
  2. variables:
  3. {rand}=0
  4. {sl}=false
  5. {count}=0
  6. command /enablesl:
  7. permission:skript.op
  8. description: Enables sheeplovers
  9. trigger:
  10. set {sl} to true
  11. broadcast "<orange>Sheep Lovers has been enabled"
  12. command /disablesl:
  13. permission:skript.op
  14. description: Disables sheeplovers
  15. trigger:
  16. set {sl} to false
  17. broadcast "<orange>Sheep Lovers has been disabled"
  18. on death of a sheep:
  19. set {rand} to a random integer between 1 and 3
  20. while {count} is less than {rand}:
  21. drop 1 raw porkchop
  22. add 1 to {count}
  23. set {count} to 0
  24. on rightlick on a sheep holding shears:
  25. chance of 5%:
  26. give the player a gold ingot
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement