THQS_ChatingNPC.txt 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. //===== rAthena Script =======================================
  2. //= Treasure Hunter Quests
  3. //===== By: ==================================================
  4. //= Fredzilla
  5. //===== Current Version: =====================================
  6. //= 1.0
  7. //===== Compatible With: =====================================
  8. //= rAthena Project
  9. //===== Description: =========================================
  10. //= Start for Treasure hunter quests
  11. //===== Additional Comments: =================================
  12. //= Event_THQS - Used to check if you have already registered
  13. //= #Treasure_Token - used to keep track of tokens
  14. //============================================================
  15. //Entrance Flags
  16. yuno,48,101,6 script Notice 722,{
  17. mes "^FF0000[ Treasure Hunter Guild House ]^000000";
  18. mes " ";
  19. mes "Welcome to the Treasure Hunter's Guild House.";
  20. mes "Feel free to drop in and look around";
  21. mes "and feel free to become a memeber if you wish.";
  22. mes " ";
  23. mes "For membership applications please talk to Keegan";
  24. mes "up the stairs and down the hall.";
  25. close;
  26. }
  27. //Saver Girl;
  28. yuno_in01,32,178,3 script Ahlma 94,{
  29. mes "[Ahlma]";
  30. if (Event_THQS == 0) goto N_Member;
  31. mes "Welcome to The Treasure Hunter Guild.";
  32. mes "How may I help you?";
  33. next;
  34. menu "Save",-,"Quit",N_Quit;
  35. mes "[Ahlma]";
  36. mes "Ok, saved. Thank you ~ See you soon~";
  37. savepoint "yuno_in01",34,176;
  38. close;
  39. N_Quit:
  40. mes "[Ahlma]";
  41. mes "Well if you think you are safe, good on you.";
  42. close;
  43. N_Member:
  44. mes "Sorry, members only.";
  45. close;
  46. }
  47. //Retired Smile mask girl;
  48. yuno_in01,33,162,3 script Smile Helper 92,{
  49. mes "[Smile Gal]";
  50. mes "Oh man...I am so sick of";
  51. mes "trading Mr. Smile masks for crap.";
  52. mes " ";
  53. mes "You ask me for one and you'll find yourself 10 pounds lighter!";
  54. close;
  55. }
  56. //Usless Female Assasin;
  57. yuno_in01,22,162,6 script Female Assasin 725,{
  58. mes "[Sharlet]";
  59. if (Event_THQS > 0) goto N_Member;
  60. mes "Umm sorry I'm not gona waste my time talking to you if you arn't even a member!";
  61. close;
  62. N_Member:
  63. set @TEMP,rand(1,2);
  64. if (@TEMP == 1) goto N_Chat1;
  65. if (@TEMP == 2) goto N_Chat2;
  66. mes "How are you reading this???";
  67. mes "Well unless you are reading the code :)";
  68. close;
  69. N_Chat1:
  70. mes "Ahh welcome fellow Treasure Hunter "+strcharinfo(0)+".";
  71. mes "Did you hear about that brave man that went into Glast Heim alone?! He must be crazy.";
  72. close;
  73. N_Chat2:
  74. mes ""+strcharinfo(0)+" don't you have something better you could be doing? Like a quest.";
  75. close;
  76. }
  77. //another usless member
  78. yuno_in01,25,162,6 script Female Wizard 123,{
  79. mes "[Sasha]";
  80. if (Event_THQS > 0) goto N_Member;
  81. mes "Umm sorry I'm not gona waste my time talking to you if you arn't even a member!";
  82. close;
  83. N_Member:
  84. set @TEMP,rand(2);
  85. if (@TEMP == 1) goto N_Chat;
  86. mes "Ahh welcome fellow Treasure Hunter "+strcharinfo(0)+".";
  87. mes "Did you hear about that goat man running around in the trees?";
  88. mes " ";
  89. mes "Aperently his name is Baphomet and he has been runing around the Forest Maze out side of prontera for quite some time now.";
  90. close;
  91. N_Chat:
  92. mes ""+strcharinfo(0)+" don't you have something better you could be doing? Like a quest.";
  93. close;
  94. }