Guest User

Untitled

a guest
Jun 20th, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.19 KB | None | 0 0
  1. //===================================================================//
  2. // //
  3. // Poor Jack //
  4. // By: John Wright //
  5. // Heroes of the Future (hRO) GM //
  6. // Created with Notepad //
  7. // //
  8. //===================================================================//
  9.  
  10. blah.gat,XX,XX,X script Jack 743,{
  11.  
  12. mes "[Jack]";
  13. mes "Salve! I am Jack, a traveling map maker, but alas I no longer have to materials to continue making my maps.";
  14. next;
  15. menu "Anything I can do to help?",-,"That's too bad for you",LJack;
  16.  
  17. mes "[Jack]";
  18. mes "What? Did you just ask if you could help me.;
  19. next;
  20. menu "Yes I did!",-,"Nope, you must be hearing things",LJack;
  21.  
  22. mes "[Jack]";
  23. mes "I can't belive it, you really want to help me. Are you really sure you want to?;
  24. next;
  25. menu "Positive.",-,"You know what, i've chagned mind", LJack;
  26.  
  27. mes "[Jack]";
  28. mes "Great! I really appreciate this. In order to continue my map making i'm going to need some more paper. I've heard that some creatures in the clock tower drop some old worn paper which is just what i need";
  29. next;
  30. mes "[Jack]";
  31. mes "So are you willing to collect them for me? I'll need about...";
  32. mes "^5555FF150 Worn Out Pages^000000.";
  33. menu "I'll get right on it",Q1,"Naw, that sounds way to dangerous.",LJack;
  34. close;
  35.  
  36. Q1:
  37. if(countitem(1097)<150) goto Q1NI;
  38. delitem 1097, 150;
  39. mes "[Jack]";
  40. mes "Thank you so much! Atlast i can continue my map making. Here's a small reward for all your work.";
  41. announce "You have gained 75000 Base Exp!",19;
  42. announce "You have gained 75000 Job Exp!",19;
  43. announce "You have gained 50000 Zeny!",19;
  44. getexp 75000,75000;
  45. set Zeny,zeny + 50000;
  46. close;
  47.  
  48. Q1NI
  49. mes "[Jack]";
  50. mes "I'm sorry but you haven't collected enough pages yet. Please come back when you have them all.";
  51. close;
  52.  
  53. LJack
  54.  
  55. mes "[Jack]";
  56. mes "Ok, Farewell!."
  57. close;
  58. }
Add Comment
Please, Sign In to add comment