Guest User

Untitled

a guest
Jul 22nd, 2018
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.35 KB | None | 0 0
  1. // -- Toad Hat Quest --
  2. // -- Script: # 001
  3. // Scripts By: Ngek202
  4. // Date: Sept 05, 2009
  5. // Quest 1
  6. yggdrasil01,226,74,4 script Sleeping Doodle 849,{
  7.  
  8. if (sleepq == 1) goto L_Greetings;
  9. if (sleepq == 0) goto L_NotStart;
  10. if (sleepq == 2) goto L_NotStartd;
  11.  
  12. L_NotStart:
  13. mes "[Sleeping Doodle]";
  14. mes "zzzzzZZZ";
  15. next;
  16. mes "zZZzzzzZZZZZzzz.. nyaarrr..";
  17. if(countitem(607) < 20) goto L_NotEnough;
  18. delitem 607,20;
  19. mes "Woah yes You! oh Hell I'm not Sleeping";
  20. emotion e_gasp;
  21. next;
  22. mes "I was just waiting for this Hehe";
  23. next;
  24. mes "Hey i know what you want! it's the ^880000Toad Hat^000000 huh!, you want that Badly huh?";
  25. menu "Yes Yes YES!!",yes,"forget it It's not to die for anyway",nah;
  26. close;
  27.  
  28. L_NotStartd:
  29. mes "[Sleeping Doodle]";
  30. mes "Dreaming zzzZZzzzz...";
  31. close;
  32.  
  33. L_NotEnough:
  34. mes "ZzzzZZzz uhh, ^777777(Goes back to sleep)^000000";
  35. close;
  36.  
  37. L_Greetings:
  38. mes "[Sleeping Doodle]";
  39. mes "so you forgot the items huh?";
  40. mes "here it is";
  41. next;
  42. mes "500 Mushroom Spore"; // 921
  43. mes "1 Soul Staff"; // 1472
  44. mes "1 Elder Willow Card"; // 4052
  45. next;
  46. mes "so don't disturb me anymore";
  47. mes "go get the items";
  48. mes "and look for my Brother ^880000Boogie^000000 SCRAM!";
  49. close;
  50.  
  51. yes:
  52. mes "Here's what you need to get";
  53. mes "Oh!,and before i forgot I don't have the ^880000Toad Hat^000000.";
  54. mes "my Brother ^880000Boogie^000000 has it";
  55. mes "Give the Items to him and he'll give you the ^880000Toad Hat^000000";
  56. next;
  57. mes "500 Mushroom Spore"; // 921
  58. mes "1 Soul Staff"; // 1472
  59. mes "1 Elder Willow Card"; // 4052
  60. set sleepq,1;
  61. close;
  62.  
  63. nah:
  64. mes "Is that so ha? then Beat it.. Sh!t Head!!";
  65. mes "Here's your stuff i don't take Items from Sh!t Head like you!";
  66. emotion 1;
  67. getitem 607,20;
  68. set sleepq,0;
  69. close;
  70. }
  71.  
  72. // Quest 2 ------- Boogie ---------
  73. yggdrasil01,211,114,4 script Boogie 881,{
  74.  
  75. if (sleepq == 1) goto reply1;
  76. if (sleepq == 0) goto reply2;
  77. if (sleepq == 3) goto reply3;
  78.  
  79. reply1:
  80. mes "[Boogie]";
  81. mes "Yes what do you want?";
  82. menu "Your brother ^880000Doodle^000000 sent me!!",sent,"Oh nothing sorry to disturb you",noth;
  83. close;
  84.  
  85. reply2:
  86. mes "[Boogie]";
  87. mes ".... Oh please I'm quite Busy right now";
  88. close;
  89.  
  90. reply3:
  91. mes "[Boogie]";
  92. mes "Oh, your back do you have all what i need?";
  93. next;
  94. menu "Yes, i have it here",comp,"It's not complete ill be back",incomp;
  95.  
  96. noth:
  97. mes "Yes, you should leave now.. I'm really busy";
  98. close;
  99.  
  100. sent:
  101. mes "Oh that useless Moron!, did he sleep again?";
  102. next;
  103. mes "He's really no Good, I told him to get me some Mushroom Spores";
  104. next;
  105. mes "Oh wait, don't tell me he told you to get the Items for me";
  106. set sleepq,3;
  107. menu "Yes and I have all of them!!",comp,"Yes but, It's not complete yet",incomp;
  108. close;
  109.  
  110. incomp:
  111. mes "you still have time.";
  112. mes "just to remind you here's what i need.";
  113. mes "500 Mushroom Spore"; // 921
  114. mes "1 Soul Staff"; // 1472
  115. mes "1 Elder Willow Card"; // 4052
  116. close;
  117.  
  118. comp:
  119. mes "Let me see..";
  120. if(countitem(921) < 500 || countitem(1472) < 1 || countitem(4052) < 1) goto L_NotEnough2;
  121. delitem 921,500;
  122. delitem 1472,1;
  123. delitem 4052,1;
  124. next;
  125. mes "Wow you were a Big Help to me not like my Lazy Brother";
  126. mes "Oh before i forgot, here's your Prize for helping me";
  127. next;
  128. mes "^880000Toad Hat^000000";
  129. mes "Thank you again, hope you like it.";
  130. getitem 30702,1;
  131. set sleepq,2;
  132. close;
  133.  
  134. L_NotEnough2:
  135. mes "It's still not complete";
  136. close;
  137. }
Add Comment
Please, Sign In to add comment