Advertisement
Guest User

Untitled

a guest
Sep 16th, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.42 KB | None | 0 0
  1. mob/var/starterchunin = 0
  2. mob/var/starterjounin = 0
  3.  
  4. Make_SChunin(var/mob/M in world)
  5. set category = "Admin"
  6. set name = "Make SChunin"
  7. if(M.Village=="Yukigakure")
  8. M.contents += new/obj/items/Clothing/Yuki_Chuunin
  9. if(M.Village=="Konohagakure")
  10. M.contents += new/obj/items/Clothing/Leaf_Chuunin
  11. if(M.Village=="Sunagakure")
  12. M.contents += new/obj/items/Clothing/Suna_Chuunin
  13. if(M.Village=="Kirigakure")
  14. M.contents += new/obj/items/Clothing/Mist_Chuunin
  15. if(starterchunin==0)
  16. starterchunin=1
  17. if(CanProgress==1)
  18. CanProgress=0
  19. M<<"Your Progression has been turned off."
  20.  
  21. for(var/obj/items/Ryo/R in M.contents)
  22. R.amount+=rand(3500,5500)
  23. R.Update()
  24. var/bonus = 125
  25.  
  26. M.progress_points += bonus
  27. M.lifetime_progress_points += bonus
  28. M.stat_points += bonus
  29. M<<"You have been chosen for Starter, Thank you."
  30. M.givePerk("Bunshin")
  31. M.givePerk("Kawarimi")
  32. M.givePerk("Henge")
  33. M.givePerk("Suimen")
  34. Make_SJounin(var/mob/M in world)
  35. set category = "Admin"
  36. set name = "Make SJounin"
  37. if(M.Village=="Yukigakure")
  38. M.contents += new/obj/items/Clothing/Yuki_Jounin
  39. if(M.Village=="Konohagakure")
  40. M.contents += new/obj/items/Clothing/Leaf_Jounin
  41. if(M.Village=="Sunagakure")
  42. M.contents += new/obj/items/Clothing/Suna_Jounin
  43. if(M.Village=="Kirigakure")
  44. M.contents += new/obj/items/Clothing/Mist_Jounin
  45. if(starterjounin==0)
  46. starterjounin=1
  47. if(CanProgress==1)
  48. CanProgress=0
  49. M<<"Your Progression has been turned off."
  50.  
  51. for(var/obj/items/Ryo/R in M.contents)
  52. R.amount+=rand(5500,8850)
  53. R.Update()
  54. var/bonus = 150
  55.  
  56. M.progress_points += bonus
  57. M.lifetime_progress_points += bonus
  58. M.stat_points += bonus
  59. M<<"You have been chosen for Starter, Thank you."
  60. M.givePerk("Bunshin")
  61. M.givePerk("Kawarimi")
  62. M.givePerk("Henge")
  63. M.givePerk("Suimen")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement