cinderweb

Untitled

Sep 8th, 2013
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.03 KB | None | 0 0
  1. //kylian's delivery service
  2. 021-2.gat,28,124,0|script|Kylian|193,
  3. {
  4. if (QUEST_DELIVERY == 1) goto L_Second;
  5.  
  6. if (QUEST_DELIVERY == 2) goto L_Third;
  7.  
  8. if (QUEST_DELIVERY == 3) goto L_Fourth;
  9.  
  10. if (QUEST_DELIVERY == 4) goto L_Fifth;
  11.  
  12. if (QUEST_DELIVERY == 5) goto L_Sixth;
  13.  
  14. if (QUEST_DELIVERY == 6) goto L_Seventh;
  15.  
  16. if (QUEST_DELIVERY == 7) goto L_Done;
  17.  
  18. mes "[Kylian]";
  19. mes "\"Hello there!\"";
  20. mes "\"Welcome to Kylian's Delivery Service. Where the packages are always on time.\"";
  21. mes "\"Don't I know you?\"";
  22. next;
  23. menu
  24. "Yes you do I helped you when you first arrived.",
  25. "No I've never met you before in my life.";
  26. mes "\"Well doesn't matter either way really. I bet you are interested in making some money aren't you.\"";
  27. mes "\"I have alot of deliveries to make and if you can spare the time I can spare the cash. So what do you say, are you in?\"";
  28. menu
  29. "Sure i'll help.",L_First,
  30. "No way I'm a famous adventurer",L_Close,
  31. "No thank you.",L_Close;
  32. L_First:
  33. mes "[Kylian]";
  34. mes"\"Your first delivery is to Nathan in the caves outside of town. It's just a letter but make sure you get your paper signed anyway.\"";
  35. mes"\"Kylian gives you a letter and a sheet of paper with 7 signature lines on it.\"";
  36. menu
  37. "Okay I'm on my way.",
  38. goto L_Close;
  39. L_Close:
  40. close;
  41.  
  42. set QUEST_DELIVERY,1;
  43. L_Second:
  44. mes "\"Very good and you even got the paper signed. Here's your pay.\""
  45. Get zeny, zeny + 2000
  46. mes "\"Your next assignment is to a wizard named Auldsbel. Here's the box and make sure you get him to sign the paper before he blows you up or transmutes you into a frog or something. by the way that money includes money for the ferry and your pay.\"";
  47. goto L_Close;
  48. IF Paper signed then set QUEST_DELIVERY, 2;
  49. If Paper not signed goto L_Notsigned
  50. L_Notsigned:
  51. mes "\"You forgot to have him sign the paper. You'll have to run back on your own money and get it signed. Go. Hurry.\"";
  52. goto L_Close;
  53. set QUEST_DELIVERY, 2;
  54.  
  55. L_Third:
  56. mes "\"Your next delivery is this box here. It needs to go to Dimond at Dimond's Cove\"";
  57. mes "\"Make sure you get her to sign. Here's your pay and money for the ferry\"";
  58. Get zeny, zeny + 1500
  59. goto L_Close;
  60. set QUEST_DELIVERY, 3;
  61.  
  62. L_Fourth:
  63. mes "\"The next delivery is to a witch. Sagatha is her name is she's somewhere in the woods north of Hurnscald. I wouldn't suggest wearing any fur or leather around her and make sure she signs.\"";
  64. Get zeny, zeny + 1500
  65. mes "\"There's your money and some for the ferry. Be careful.\"";
  66. goto L_Close;
  67. set QUEST_DELIVERY, 4;
  68.  
  69. L_Fifth:
  70. mes "\"This next delivery is very dangerous so I am going to give you some extra money for an experienced adventurer to help. This basket of sweetrolls needs to go to the caretaker of the cemetary.\"";
  71. Get zeny, zeny + 2500
  72. mes "\"Don't go getting yourself killed. I don't pay funeral expenses.\"";
  73. goto L_Close
  74.  
  75. set QUEST_DELIVERY, 5;
  76.  
  77. L_Sixth:
  78. mes "\"This next order goes to Nivalis. Dress warm and find Miler in the inn get him to sign for this letter and head back here before you freeze.\"";
  79. Get zeny, zeny + 1500
  80. mes "\"This is a fairly simple delivery shouldn't take you no time at all.\"";
  81. goto L_Close
  82.  
  83. set QUEST_DELIVERY, 6;
  84.  
  85. L_Seventh:
  86. mes "\"This delivery I've saved for last because it is the most dangerous there's a man by the name of Connor up at the Blue sages library. You'll need to hire someone experienced and someone that knows their way around.\"";
  87. Get zeny, zeny + 2500
  88. mes "\" Don't get yourself killed by any yetis or anything on your way up and back. Don't forget to have him sign the sheet.\"";
  89. goto L_Close
  90.  
  91. set QUEST_DELIVERY, 7;
  92.  
  93. L_Done:
  94. mes "\"Here you go your final payment for the deliveries today.\"";
  95. Get zeny, zeny + 1000
  96. mes "\" Thanks for all your help!\"";
  97. goto L_Close;
  98.  
  99. L_Close:
  100. close,
Advertisement
Add Comment
Please, Sign In to add comment