cinderweb

Untitled

Sep 2nd, 2013
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.19 KB | None | 0 0
  1. 021-2.gat,30,17,0|script|Marley|107,
  2. {
  3. mes "[Marley]";
  4. mes "\"Hello there.\"";
  5. mes "\"Would you like to join the Tulimshar militia?\"";
  6. mes "\"It pays well and teaches you a bit about the lands.\"";
  7. menu
  8. "No I would not.", L_Close,
  9. "Yes I would.", L_Great,
  10. "I have my stamped ticket here.", L_Wonderful;
  11.  
  12. L_Great:
  13. mes "\"Have you decided what you are going to be yet?\"";
  14. mes "\"Meaning an archer, a warrior, or a spellcaster?\"";
  15. menu
  16. "An archer", L_Ticket101,
  17. "A warrior", L_Ticket201,
  18. "A spellcaster", L_Ticket301,
  19. "Nevermind.", L_Close;
  20.  
  21. L_Ticket101:
  22. mes "\"An archer you say, well good we always need those.\"";
  23. mes "\"Here's your ticket and assingment sheet.\"";
  24. mes "\"Take them to Archer Timlin over there.\"";
  25. mes "\"He will teach you the lay of the land.\"";
  26. mes "\"How to be a good archer and things that are important.\"";
  27. goto L_Close;
  28.  
  29. L_Ticket201:
  30. mes "\"A warrior, eh? Well then here are your papers.\"";
  31. mes "\"Here is your ticket. You want to take them and see Basher\"";
  32. mes "\"He'll teach you how to stand in the front lines\"";
  33. mes "\"and take some damage for sure.\"";
  34. goto L_Close;
  35.  
  36. L_Ticket301:
  37. mes "\"A spellcaster eh? Light magic or dark?\"";
  38. menu
  39. "Light", L_Good,
  40. "Dark", L_Bad,
  41. "Nevermind.", L_Close;
  42.  
  43. L_Good:
  44. mes "\"Good we can help you then. Even though the magic\"";
  45. mes "\"school isn't accepting new students we have someone\"";
  46. mes "\"here who is willing to help you meet the local\"";
  47. mes "\"wizards that do specialize in schools of magic.\"";
  48. mes "\"And they can teach you for a price. Mellicin\"";
  49. mes "\"will help you. Don't forget your ticket and papers.\"";
  50. goto L_Close;
  51.  
  52. L_Bad:
  53. mes "\"Sorry we can't help you learn that type of magic.\"";
  54. goto L_Close;
  55.  
  56. L_Wonderful:
  57. mes "\"Thank you for helping our militia and good luck with\"";
  58. mes "\"your future adventures. Here's some gold to get you\"";
  59. mes "\"started.\"";
  60. set Zeny, Zeny + 5000;
  61. goto L_Close;
  62.  
  63. L_Close:
  64. mes "\"Goodbye and be well.\"";
  65. close;
  66. }
Advertisement
Add Comment
Please, Sign In to add comment