Advertisement
Guest User

Untitled

a guest
May 26th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.47 KB | None | 0 0
  1. prt_in,124,17,8 script Poring 909,{
  2. mes "[Poring]";
  3. if(AoPQuest == 1) goto Q_Already;
  4. if9AoPQuest == 1) goto L_Already;
  5. mes "Hello, I found out how create a item using the power of the genes in my blood, but If you want it, it will cost you.";
  6. next;
  7. menu "Keep talking",-, "Leave", M_Leave;
  8.  
  9. mes "[Poring]";
  10. mes "I have never heard of an item like this before, but I heard that you need to collect items from the Poring family to make it.";
  11. next;
  12. mes "[Poring]";
  13. mes "If you're interested in this item, you have to give me somesomething to make my tougue slip.";
  14. next;
  15. menu "Tell me more about it",-, "Nah, I don't care about it", M_Leave;
  16.  
  17. mes "[Poring]";
  18. mes "I believe the item is called a ^FF0000Poring Aura^000000, and it can give you enormous power.";
  19. next;
  20. menu "What is the enormous power?",-, "Your a Poring, how can it give enormous power", M_Leave;
  21.  
  22. mes "[Poring]";
  23. mes "Get me these items so it can "refresh" my memories.";
  24. mes "^0080FF25^000000 Poring Coins";
  25. mes "^0080FF50^000000 Unripe Apples";
  26. mes "^0080FF100^000000 Apple Juice";
  27. mes "^0080FF10^000000 Backpacks";
  28. mes "^0080FF20^000000 Gold";
  29. mes "^0080FF20 million^000000 zeny";
  30. next;
  31. menu "I have all that!",-, "I'll get those ASAP", M_Leave;
  32.  
  33. mes "[Poring]";
  34. mes "Anyone can say they have the items, but do they really have them? Let's take a look here...";
  35. next;
  36. mes "[Poring]";
  37. if(countitem(7539) < 25 || countitem(531) < 100 || countitem(619) < 50 || countitem(10013) < 10 || countitem(969) < 20 || countitem(1614) < 1 || countitem(727) < 20) goto L_noItems;
  38. delitem 7539, 25;
  39. delitem 531, 100;
  40. delitem 619, 50;
  41. delitem 10013, 10;
  42. delitem 969, 20;
  43. mes "Well congratulations! You have all the items, and here is your next challange. ";
  44. emotion e_gg;
  45. set AoPQuest, 1;
  46. close;
  47.  
  48. M_Leave:
  49. mes "[Poring]";
  50. mes "Such a great item I have right here...";
  51. close;
  52.  
  53. L_noItems:
  54. mes "I knew you were lying! Get out of here and get those items you sorry excuse for a rock star.";
  55. close;
  56.  
  57. Q_Already:
  58. mes "[Poring]";
  59. mes "Here is your next quest, get these items and the Poring Aura is yours.";
  60. mes "You will need:";
  61. mes "^0080FF150^000000 Poring Coins';
  62. mes "^0080FF1^000000 Arch Angeling Card';
  63. mes "^0080FF1^000000 Drops Card
  64. mes "^0080FF1^000000 Poring Card
  65. mes "^0080FF1^000000 Marin Card
  66. mes "^0080FF1^000000 Poporing Card
  67. next;
  68. menu "I have all that!",-, "I'll get those ASAP", M_Leave;
  69.  
  70. if(countitem(7539) < 150 || countitem(4241) < 1 || countitem(4004) < 1 || countitem(4001) < 1 || countitem(4033) < 1 || countitem(4196) < 1 goto L_noItems;
  71. delitem 7539, 150;
  72. delitem 4241, 1;
  73. delitem 4004, 1;
  74. delitem 4001, 1;
  75. delitem 4033, 1;
  76. delitem 4196, 1
  77. getitem 21028, 1;
  78. set AoPQuest, 2;
  79. mes "Well congratulations! You have all the items. Here is your ^FF0000Poring Aura^000000, just as I said.";
  80. mes "Oh yeah, I forgot to tell you, you only can do this quest once.";
  81. set AoPQuest, 2;
  82. emotion e_grat;
  83. close;
  84.  
  85. L_Already:
  86. mes "Hey I remember you! I already told you that you may only complete this quest once.";
  87. close;
  88.  
  89. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement