cash_hair.txt 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. //===== rAthena Script =======================================
  2. //= Cash Hair Stylist
  3. //===== By: ==================================================
  4. //= Kisuka
  5. //===== Current Version: =====================================
  6. //= 1.0
  7. //===== Compatible With: =====================================
  8. //= rAthena Project
  9. //===== Description: =========================================
  10. //= Exchange cash item, New_Style_Coupon, for new hair styles.
  11. //===== Additional Comments: =================================
  12. //= 1.0 First Version. [Kisuka]
  13. //============================================================
  14. itemmall,19,74,5 script Stylist#cash 91,{
  15. mes "[Stylist]";
  16. mes "Hey, I'm Kaniki.";
  17. mes "I'm here to start a new";
  18. mes "trend by introducing my";
  19. mes "special new hairstyles!";
  20. mes "Give me a ^FF0000New Style Coupon^000000,";
  21. mes "and I'll change your hair~";
  22. next;
  23. if (Sex == SEX_MALE) {
  24. mes "[Kaniki]";
  25. mes "I have two special";
  26. mes "hairstyles for men, the";
  27. mes "Emergency Heal Perm";
  28. mes "and the Aura Blade Cut.";
  29. mes "and aura blade cut.";
  30. next;
  31. cutin "hair_m_24.bmp",4;
  32. mes "[Kaniki]";
  33. mes "This is the Emergency";
  34. mes "Heal Perm. It's a brand";
  35. mes "new style I invented recently.";
  36. mes "What do you think? Cool, huh?";
  37. next;
  38. cutin "",255;
  39. cutin "hair_m_25.bmp",4;
  40. mes "[Kaniki]";
  41. mes "Now this is the Aura";
  42. mes "Blade Cut. You haven't";
  43. mes "seen anything like it";
  44. mes "before, haven't you?";
  45. next;
  46. cutin "",255;
  47. }else{
  48. mes "[Kaniki]";
  49. mes "I have two new hairstyles for";
  50. mes "women, the Assumptio Perm";
  51. mes "and the Soul Changer Cut.";
  52. mes "Do you want to see how";
  53. mes "these styles look?";
  54. next;
  55. cutin "hair_f_24.bmp",4;
  56. mes "[Kaniki]";
  57. mes "This is the Assumptio";
  58. mes "Perm. It'd really good";
  59. mes "on you, wouldn't it?";
  60. next;
  61. cutin "",255;
  62. cutin "hair_f_25.bmp",4;
  63. mes "[Kaniki]";
  64. mes "Next is the Soul";
  65. mes "Changer Cut. What do";
  66. mes "you think? Isn't it nice?";
  67. next;
  68. cutin "",255;
  69. }
  70. mes "[Kaniki]";
  71. mes "Have you decided";
  72. mes "if you'd like me to";
  73. mes "change your hairstyle?";
  74. next;
  75. if(select("Change Hairstyle:Don't Change") == 1) {
  76. if (countitem(7622) > 0) {
  77. mes "[Kaniki]";
  78. mes "Great, you brought";
  79. mes "a New Style Coupon!";
  80. mes "Alright, which hairstyle";
  81. mes "did you want to have?";
  82. next;
  83. if (Sex == SEX_MALE) {
  84. if(select("Emergency Heal Perm:Aura Blade Cut") == 1) {
  85. delitem 7622,1; // New_Style_Coupon
  86. setlook 1,24;
  87. }else{
  88. delitem 7622,1; // New_Style_Coupon
  89. setlook 1,25;
  90. }
  91. }else{
  92. if(select("Assumptio Perm:Soul Changer Cut") == 1) {
  93. delitem 7622,1; // New_Style_Coupon
  94. setlook 1,24;
  95. }else{
  96. delitem 7622,1; // New_Style_Coupon
  97. setlook 1,25;
  98. }
  99. }
  100. mes "[Kaniki]";
  101. mes "There--! It's done!";
  102. mes "How do you like your";
  103. mes "new hair? Well, I hope";
  104. mes "to see you again. Take care!";
  105. close;
  106. }else{
  107. mes "[Kaniki]";
  108. mes "I'm sorry, but I can";
  109. mes "only provide my hairstyling";
  110. mes "service if you bring a New";
  111. mes "Style Coupon. Please come";
  112. mes "back to me after you manage to";
  113. mes "get one of those coupons, okay?";
  114. close;
  115. }
  116. }
  117. mes "[Kaniki]";
  118. mes "Really? Oh, that's too bad.";
  119. mes "Well, if you ever change your";
  120. mes "mind about updating your";
  121. mes "hairstyle, come back";
  122. mes "and let me know, okay?";
  123. close;
  124. }