Advertisement
Guest User

Untitled

a guest
Feb 11th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.87 KB | None | 0 0
  1. on join:
  2. if {gornictwo::%player%} is not set:
  3. set {gornictwo::%player%} to 0
  4. if {lvlgornictwo::%player%} is not set:
  5. set {lvlgornictwo::%player%} to 0
  6.  
  7. on mine stone:
  8. add 1 to {gornictwo::%player%}
  9.  
  10. on mine iron ore:
  11. add 30 to {gornictwo::%player%}
  12. if {lvlgornictwo::%player%} is 1:
  13. chance of 50%:
  14. drop iron ore
  15. add 30 to {gornictwo::%player%}
  16. on mine gold ore:
  17. add 30 to {gornictwo::%player%}
  18. if {lvlgornictwo::%player%} is 1:
  19. chance of 50%:
  20. drop gold ore
  21. add 30 to {gornictwo::%player%}
  22. on mine diamond ore:
  23. add 50 to {gornictwo::%player%}
  24. if {lvlgornictwo::%player%} is 1:
  25. chance of 25%:
  26. drop diamond
  27. add 50 to {gornictwo::%player%}
  28. on mine emerald ore:
  29. add 100 to {gornictwo::%player%}
  30. if {lvlgornictwo::%player%} is 1:
  31. chance of 25%:
  32. drop emerald
  33. add 100 to {gornictwo::%player%}
  34.  
  35. on mine:
  36. if {gornictwo::%player%} is bigger or equal to 250:
  37. if {lvlgornictwo::%player%} is 0:
  38. add 1 to {lvlgornictwo::%player%}
  39. send "Twoja umiejetnosc gornictwa wzrosla na 1 poziom!"
  40. if {gornictwo::%player%} is bigger or equal to 750:
  41. if {lvlgornictwo::%player%} is 1:
  42. add 1 to {lvlgornictwo::%player%}
  43. send "Twoja umiejetnosc gornictwa wzrosla na 2 poziom!"
  44. if {gornictwo::%player%} is bigger or equal to 2250:
  45. if {lvlgornictwo::%player%} is 1:
  46. add 1 to {lvlgornictwo::%player%}
  47. send "Twoja umiejetnosc gornictwa wzrosla na 3 poziom!"
  48. if {gornictwo::%player%} is bigger or equal to 7750:
  49. if {lvlgornictwo::%player%} is 1:
  50. add 1 to {lvlgornictwo::%player%}
  51. send "Twoja umiejetnosc gornictwa wzrosla na 4 poziom!"
  52.  
  53.  
  54.  
  55. command /gornictwo:
  56. trigger:
  57. send "&2===================&6Gornictwo&2==================="
  58. send "&6Poziom twojej umiejetnosci gornictwa to %{lvlgornictwo::%player%}%!"
  59. send "&6Doswiadczenie twojej umiejetnosci gornictwa to %{gornictwo::%player%}%!"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement