Advertisement
Gangem

Ree

Dec 10th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.28 KB | None | 0 0
  1. #Mining Events
  2. on mine of any ore:
  3. if "%event-block%" is "diamond ore":
  4. console command "eco give %player% 150"
  5.  
  6. else if: "%event-block%" is "iron ore":
  7. console command "eco give %player% 25"
  8.  
  9. else if: "%event-block%" is "coal ore":
  10. console command "eco give %player% 5"
  11.  
  12. else if: "%event-block%" is "gold ore":
  13. console command "eco give %player% 50"
  14.  
  15. else if: "%event-block%" is "lapis ore":
  16. console command "eco give %player% 30"
  17.  
  18. else if: "%event-block%" is "redstone ore":
  19. console command "eco give %player% 30"
  20.  
  21. else if: "%event-block%" is "quartz ore":
  22. console command "eco give %player% 5"
  23.  
  24. #Placing Events
  25. on place of any ore:
  26. if "%event-block%" is "diamond ore":
  27. console command "eco take %player% 150"
  28.  
  29. else if: "%event-block%" is "iron ore":
  30. console command "eco take %player% 25"
  31.  
  32. else if: "%event-block%" is "coal ore":
  33. console command "eco take %player% 5"
  34.  
  35. else if: "%event-block%" is "gold ore":
  36. console command "eco take %player% 50"
  37.  
  38. else if: "%event-block%" is "lapis ore":
  39. console command "eco take %player% 30"
  40.  
  41. else if: "%event-block%" is "redstone ore":
  42. console command "eco take %player% 30"
  43.  
  44. else if: "%event-block%" is "quartz ore":
  45. console command "eco take %player% 5"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement