2005_headgears.txt 57 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262
  1. //===== eAthena Script =======================================
  2. //= 2005 Headgear Quests
  3. //===== By: ==================================================
  4. //= MasterOfMuppets
  5. //===== Current Version: =====================================
  6. //= 1.2
  7. //===== Compatible With: =====================================
  8. //= eAthena
  9. //===== Description: =========================================
  10. //= [Aegis Conversion]
  11. //= 2005 Headgears Official Quest.
  12. //===== Additional Comments: =================================
  13. //= 1.0 First version, converted from the official aegis script. [MasterOfMuppets]
  14. //= 1.1 Updated item ids in the zealotus mask npc, now requires a whip [ultramage]
  15. //= 1.2 Replaced effect numerics with constants. [L0ne_W0lf]
  16. //============================================================
  17. yuno,222,116,3 script Kasis#LhzHat 851,{
  18. if(countitem(519) > 49 && countitem(7031) > 49 && countitem(548) > 49 && countitem(539) > 49)
  19. {
  20. mes "[Kasis]";
  21. mes "Milk, Cheese,";
  22. mes "Old Frying Pans,";
  23. mes "Pieces of Cake...";
  24. mes "Th-that's everything";
  25. mes "I need to make lunch for";
  26. mes "my friends in the Factory!";
  27. next;
  28. switch( select( "Well, I did promise to help you.", "What are you talking about?" ) )
  29. {
  30. case 1:
  31. mes "[Kasis]";
  32. mes "Finally, I can treat my";
  33. mes "buddies to a wonderful";
  34. mes "feast! They'll be so pleased!";
  35. mes "Oh, I'd really like to repay you";
  36. mes "somehow, but I'm not sure";
  37. mes "what I could possibly give...";
  38. next;
  39. mes "[Kasis]";
  40. mes "Of course! Why don't";
  41. mes "you treat yourself to";
  42. mes "my specialty, Kasis's";
  43. mes "Crunch Toast? It looks";
  44. mes "simple, but it actually";
  45. mes "requires great skill to make.";
  46. next;
  47. mes "[Kasis]";
  48. mes "Here you are!";
  49. mes "Please enjoy this and always";
  50. mes "remember that breakfast is the";
  51. mes "most important meal of the day!";
  52. mes "Now, I better prepare those";
  53. mes "lunches. Goodbye, my friend~";
  54. delitem 519,50;
  55. delitem 7031,50;
  56. delitem 548,50;
  57. delitem 539,50;
  58. getitem 5107,1;
  59. close;
  60. break;
  61. case 2:
  62. mes "[Kasis]";
  63. mes "Oh...";
  64. mes "Oh, I'm so sorry.";
  65. mes "I must have confused";
  66. mes "you with someone else.";
  67. next;
  68. mes "[Kasis]";
  69. mes "You see, I've been asking";
  70. mes "adventurers that have been";
  71. mes "passing through to provide";
  72. mes "me with food supplies so that";
  73. mes "I can make lunch for my friends";
  74. mes "that are working in Einbroch.";
  75. next;
  76. mes "[Kasis]";
  77. mes "Yes...";
  78. mes "So...";
  79. mes "Sorry...";
  80. mes "To... Bother you.";
  81. next;
  82. mes "^3355FFAs if entranced,";
  83. mes "Kasis continues to";
  84. mes "stare at the Milk, Cheese";
  85. mes "Old Frying Pans and Pieces";
  86. mes "of Cake that you are carrying.^000000";
  87. next;
  88. switch( select( "You can have these if you want.", "Um, why are you staring?" ) )
  89. {
  90. case 1:
  91. mes "[Kasis]";
  92. mes "Really? Is it alright";
  93. mes "with you for me to have";
  94. mes "all of this Milk, Cheese,";
  95. mes "Pieces of Cake and these";
  96. mes "Old Frying Pans? Oh, bless";
  97. mes "your kind heart, adventurer~";
  98. next;
  99. mes "[Kasis]";
  100. mes "Finally, I can treat my";
  101. mes "buddies to a wonderful";
  102. mes "feast! They'll be so pleased!";
  103. mes "Oh, I'd really like to repay you";
  104. mes "somehow, but I'm not sure";
  105. mes "what I could possibly give...";
  106. next;
  107. mes "[Kasis]";
  108. mes "Of course! Why don't";
  109. mes "you treat yourself to";
  110. mes "my specialty, Kasis's";
  111. mes "Crunch Toast? It looks";
  112. mes "simple, but it actually";
  113. mes "requires great skill to make.";
  114. next;
  115. mes "[Kasis]";
  116. mes "Here you are!";
  117. mes "Please enjoy this and always";
  118. mes "remember that breakfast is the";
  119. mes "most important meal of the day!";
  120. mes "Now, I better prepare those";
  121. mes "lunches. Goodbye, my friend~";
  122. delitem 519,50;
  123. delitem 7031,50;
  124. delitem 548,50;
  125. delitem 539,50;
  126. getitem 5107,1;
  127. close;
  128. break;
  129. case 2:
  130. mes "[Kasis]";
  131. mes "Oh, let me apologize";
  132. mes "again. But I can't help";
  133. mes "but admire the quality of";
  134. mes "your goods. Er, you know,";
  135. mes "the food you're carrying. I'm";
  136. mes "a chef by trade, after all.";
  137. close;
  138. break;
  139. }
  140. break;
  141. }
  142. }
  143. mes "[Kasis]";
  144. mes "I'm sorry, but we're closed";
  145. mes "right now. Unfortunately, we";
  146. mes "don't have any more bread";
  147. mes "in stock. ^333333*Siiiiiiiiigh...*^000000";
  148. next;
  149. switch( select( "Is something wrong?", "End Conversation." ) )
  150. {
  151. case 1:
  152. mes "[Kasis]";
  153. mes "Well, my current contract";
  154. mes "with the company that's been";
  155. mes "providing me with ingredients";
  156. mes "has expired. Of course, it's";
  157. mes "bad enough that I don't have";
  158. mes "the food to run this business.";
  159. next;
  160. mes "[Kasis]";
  161. mes "But I also feel like I'm";
  162. mes "letting my friends down.";
  163. mes "You see, I've been sending";
  164. mes "them lunch every day since";
  165. mes "they've been working in the";
  166. mes "Factory over in Einbroch.";
  167. next;
  168. mes "[Kasis]";
  169. mes "I'm unable to make";
  170. mes "lunch for them at the";
  171. mes "moment, but I really want to";
  172. mes "help my buddies, especially";
  173. mes "since their financial situation";
  174. mes "seems pretty bad right now.";
  175. next;
  176. switch( select( "Do you want me to help you?", "I'm so sorry to hear that." ) )
  177. {
  178. case 1:
  179. mes "[Kasis]";
  180. mes "Sure, I'm willing to accept";
  181. mes "help from wherever I can find";
  182. mes "it. If you would, I'd like you to bring me some food supplies";
  183. mes "that I can use to make lunches";
  184. mes "for my friends at the Factory.";
  185. next;
  186. mes "[Kasis]";
  187. mes "Would you";
  188. mes "please get me";
  189. mes "^4D4DFF50 Milk^000000,";
  190. mes "^4D4DFF50 Cheese^000000,";
  191. mes "^4D4DFF50 Pieces of Cake^000000 and";
  192. mes "^4D4DFF50 Old Frying Pans^000000?";
  193. next;
  194. mes "[Kasis]";
  195. mes "I'd really appreciate";
  196. mes "your help. My friends seem";
  197. mes "so depressed to be working";
  198. mes "in the Factory and I want to";
  199. mes "do all I can to cheer them up.";
  200. mes "Thanks for your kind offer~";
  201. close;
  202. break;
  203. case 2:
  204. mes "[Kasis]";
  205. mes "I'm trying to renew";
  206. mes "my contract with the";
  207. mes "company that's been";
  208. mes "providing me with food";
  209. mes "supplies, but it hasn't";
  210. mes "been working out so far...";
  211. next;
  212. mes "[Kasis]";
  213. mes "I don't know what's";
  214. mes "happening, but hopefully";
  215. mes "I can find a new supplier";
  216. mes "soon. There are my friends";
  217. mes "to worry about, as well as";
  218. mes "the sake of my business.";
  219. close;
  220. break;
  221. }
  222. break;
  223. case 2:
  224. mes "[Kasis]";
  225. mes "Anyway, please come";
  226. mes "again. Hopefully, we'll";
  227. mes "have some good bread";
  228. mes "in stock next time, okay?";
  229. close;
  230. break;
  231. }
  232. }
  233. lighthalzen,143,68,0 script Strange Guy#LhzHat 47,{
  234. if(DTHATQ == 0)
  235. {
  236. mes "[Strange Guy]";
  237. mes "Wait! Don't say";
  238. mes "anything! You must be";
  239. mes "an adventurer from the";
  240. mes "Rune-Midgarts Kingdom!";
  241. mes "So... I'm right, aren't I?";
  242. next;
  243. switch( select( "Who are you?", "How did you know?", "Ignore him." ) )
  244. {
  245. case 1:
  246. mes "[Morris]";
  247. mes "Allow me to";
  248. mes "introduce myself.";
  249. mes "My name is Morris Poe,";
  250. mes "detective of great acclaim";
  251. mes "and world wide fame.";
  252. next;
  253. switch( select( "I've never heard of you.", "You're kidding me.", "I'm outta here." ) )
  254. {
  255. case 1:
  256. mes "[Morris]";
  257. mes "Morris Poe?";
  258. mes "Renown detective?";
  259. mes "Advocate for justice in";
  260. mes "the Schwarzwald Republic?";
  261. mes "Surely you recognize one";
  262. mes "of my esteemed titles.";
  263. next;
  264. switch( select( "Nope, I don't know you.", "You're Morris Poe?!" ) )
  265. {
  266. case 1:
  267. mes "[Morris]";
  268. mes "You don't...?";
  269. mes "But I'm a famous hero.";
  270. mes "Children look up to me";
  271. mes "and wish they'd grow";
  272. mes "up to be as smart as me.";
  273. next;
  274. mes "[Morris]";
  275. mes "I don't get it.";
  276. mes "I'm famouser than";
  277. mes "that. A household name";
  278. mes "even. I've got a sterling";
  279. mes "public image, how could";
  280. mes "you never have heard of me...?";
  281. close;
  282. break;
  283. case 2:
  284. break;
  285. }
  286. break;
  287. case 2:
  288. mes "[Morris]";
  289. mes "Kidding? Ha ha!";
  290. mes "Look at these keen,";
  291. mes "deductive and deeply";
  292. mes "analytical eyes and";
  293. mes "tell me I'm joking.";
  294. next;
  295. switch( select( "Whoa, those ARE keen eyes.", "Okay. You're joking." ) )
  296. {
  297. case 1:
  298. mes "[Morris]";
  299. mes "Yes, this sharp,";
  300. mes "penetrating, yet";
  301. mes "highly intelligent gaze";
  302. mes "belongs to the world";
  303. mes "detective and crime";
  304. mes "fighter, Morris Poe!";
  305. next;
  306. switch( select( "I've never heard of you.", "Golly, Morris Poe?!" ) )
  307. {
  308. case 1:
  309. mes "[Morris]";
  310. mes "Never heard of...?";
  311. mes "Impossible! If there are";
  312. mes "two things I hate more";
  313. mes "than crime, they would be";
  314. mes "dishonesty... And rejection";
  315. mes "from beautiful women.";
  316. next;
  317. mes "[Morris]";
  318. mes "When you get over your";
  319. mes "sense of pride and gain";
  320. mes "a little maturity, then we";
  321. mes "might share an actual";
  322. mes "conversation. Until then,";
  323. mes "you'll just have to grow up.";
  324. close;
  325. break;
  326. case 2:
  327. break;
  328. }
  329. break;
  330. case 2:
  331. mes "[Morris]";
  332. mes "Hahahahahaah--Huh.";
  333. mes "If there are two things";
  334. mes "I hate more than criminals,";
  335. mes "they would be sarcasm...";
  336. mes "And receiving fake phone";
  337. mes "numbers from really cute girls.";
  338. next;
  339. switch( select( "Yeah, you're no Don Juan.", "I'm... I'm sorry." ) )
  340. {
  341. case 1:
  342. mes "[Morris]";
  343. mes "Wah...!";
  344. mes "Did you just--?!";
  345. mes "Ugh, you're the worst";
  346. mes "type of person, you know that?";
  347. emotion e_omg;
  348. close;
  349. break;
  350. case 2:
  351. mes "[Morris]";
  352. mes "I think it's too late to";
  353. mes "apologize. Why would you";
  354. mes "treat someone of my stature";
  355. mes "with such caustic sarcasm?!";
  356. mes "What excuse could possibly";
  357. mes "exonerate your behavior?!";
  358. next;
  359. switch( select( "I... I was intimidated...", "It's how I treat all losers." ) )
  360. {
  361. case 1:
  362. mes "[Morris]";
  363. mes "Of course: intense feelings";
  364. mes "of awe and fear of my vast";
  365. mes "intellect would result in that";
  366. mes "kind of deviant behavior. I'll";
  367. mes "have to forgive you, I suppose.";
  368. next;
  369. break;
  370. case 2:
  371. mes "[Morris]";
  372. mes "What...?!";
  373. mes "Morris Poe, a loser?";
  374. mes "Such defamatory remarks";
  375. mes "cannot be forgiven, no";
  376. mes "matter how unfounded";
  377. mes "and groundless they are!";
  378. emotion e_omg;
  379. close;
  380. break;
  381. }
  382. break;
  383. }
  384. break;
  385. }
  386. break;
  387. case 3:
  388. mes "[Morris]";
  389. mes "Hahaha, oh, that's";
  390. mes "funny. Wait. You're...";
  391. mes "You're really leaving.";
  392. mes "N-no, come baaaack!";
  393. close;
  394. break;
  395. }
  396. break;
  397. case 2:
  398. mes "[Strange Guy]";
  399. mes "How did I know?";
  400. mes "Elementary, my friend.";
  401. mes "There was an abundance";
  402. mes "of clues for me to make";
  403. mes "that sort of simple deduction.";
  404. close;
  405. break;
  406. case 3:
  407. mes "[Strange Guy]";
  408. mes "Hello...?";
  409. mes "...............";
  410. mes "Oh, this is embarassing.";
  411. mes "I can't believe I'm getting";
  412. mes "the silent treatment...";
  413. close;
  414. break;
  415. }
  416. mes "[Morris]";
  417. mes "Yes, I know it's";
  418. mes "difficult to believe that";
  419. mes "you would be fortunate";
  420. mes "enough to stand in the";
  421. mes "presence of genius. Now,";
  422. mes "you must be wondering...";
  423. next;
  424. menu "Um, wondering what?",-;
  425. mes "[Morris]";
  426. mes "You're wondering,";
  427. mes "\"How in the world";
  428. mes "can I be as brilliant";
  429. mes "as Morris Poe, the";
  430. mes "genius detective?\"";
  431. next;
  432. mes "[Morris]";
  433. mes "First, I think it's fair";
  434. mes "to let you know that it's";
  435. mes "an impossible dream. Men like";
  436. mes "myself only arise in this world";
  437. mes "perhaps once every generation.";
  438. mes "I'm sorry, but don't give up!";
  439. next;
  440. mes "[Morris]";
  441. mes "Now, you can try to reach";
  442. mes "a level of intelligence that";
  443. mes "is comparable to my own by";
  444. mes "joining the Young Detective's";
  445. mes "Club. To become a member, you just need one essential article.";
  446. next;
  447. mes "[Morris]";
  448. mes "Yes, you will need the";
  449. mes "^0000FFRenown Detective's Cap^000000!";
  450. mes "Luckily, I'm giving them";
  451. mes "away for a relatively small";
  452. mes "material cost, but you must";
  453. mes "hurry while supplies last.";
  454. next;
  455. mes "[Morris]";
  456. mes "Simply bring me";
  457. mes "^0000FF10 Magnifiers^000000,";
  458. mes "^0000FF1887 Tassels^000000,";
  459. mes "^0000FF1 Slotted Bucket Hat^000000";
  460. mes "and ^0000FF1,887 zeny^000000. That's all!";
  461. next;
  462. mes "[Morris]";
  463. mes "But first, let me warn you";
  464. mes "not to bring a ^FF0000slotted Bucket";
  465. mes "Hat with a card compounded to";
  466. mes "it, or any upgraded Bucket Hats. I'm not responsible for any";
  467. mes "loss resulting from that.";
  468. next;
  469. mes "[Morris]";
  470. mes "Hurry and bring me";
  471. mes "those items! There are";
  472. mes "only 20,000,000 Renown";
  473. mes "Detective Caps left!";
  474. mes "Once they're gone,";
  475. mes "they'll be extinct!";
  476. set DTHATQ,1;
  477. close;
  478. }
  479. else if(DTHATQ == 1)
  480. {
  481. mes "[Morris]";
  482. mes "So, did you want to";
  483. mes "buy, er, receive this";
  484. mes "Renown Detective's Cap";
  485. mes "and become an honored";
  486. mes "member of the Young";
  487. mes "Detective's Club?";
  488. next;
  489. mes "[Morris]";
  490. mes "Remember, make sure";
  491. mes "that you don't bring any";
  492. mes "^FF0000slotted Bucket Hats that";
  493. mes "have been upgraded or have";
  494. mes "cards compounded to them, or";
  495. mes "you'll lose those enhancements^000000.";
  496. next;
  497. mes "[Morris]";
  498. mes "Now, if you have only";
  499. mes "1 Bucket Hat, we can begin.";
  500. mes "Young Detective's Club... Salute! ";
  501. next;
  502. switch( select( "Salute.", "Whatever..." ) )
  503. {
  504. case 1:
  505. mes "[Morris]";
  506. mes "Great, done like a pro!";
  507. mes "Now, I need to check your";
  508. mes "fee--I mean qualifications.";
  509. mes "Let's see now, I need to";
  510. mes "look through your Inventory...";
  511. next;
  512. set @lhzhatfailed,0;
  513. if(countitem(611) < 10)
  514. {
  515. mes "[Morris]";
  516. mes "Wait. You don't have";
  517. mes "enough Magnifiers. You";
  518. mes "do want to join this club,";
  519. mes "don't you? Did you need to";
  520. mes "hear the requirements again?";
  521. set @lhzhatfailed,1;
  522. next;
  523. }
  524. if(countitem(7301) < 1887 && @lhzhatfailed == 0)
  525. {
  526. mes "[Morris]";
  527. mes "Magnifiers. Check.";
  528. mes "Not enough Tassels? Check.";
  529. set @lhzhatfailed,1;
  530. next;
  531. }
  532. if(countitem(5120) < 1 && @lhzhatfailed == 0)
  533. {
  534. mes "[Morris]";
  535. mes "Magnifiers. Check.";
  536. mes "Tassels... Check.";
  537. mes "Hm. You're missing";
  538. mes "the slotted Bucket Hat.";
  539. mes "You were so close...";
  540. set @lhzhatfailed,1;
  541. next;
  542. }
  543. if(Zeny < 1887 && failed == 0)
  544. {
  545. mes "[Morris]";
  546. mes "Magnifiers. Check.";
  547. mes "Tassels... Check.";
  548. mes "Slotted Bucket Hat. Got it.";
  549. mes "Hey. Where's the zeny?!";
  550. mes "That's the most important,";
  551. mes "er, qualification of all!";
  552. set @lhzhatfailed,1;
  553. next;
  554. }
  555. if(@lhzhatfailed == 1)
  556. {
  557. mes "[Morris]";
  558. mes "^333333*Sigh*^000000 You need";
  559. mes "^0000FF10 Magnifiers^000000,";
  560. mes "^0000FF1887 Tassels^000000,";
  561. mes "^0000FF1 Slotted Bucket Hat^000000";
  562. mes "and ^0000FF1,887 zeny^000000. That's all!";
  563. emotion e_an;
  564. next;
  565. mes "[Morris]";
  566. mes "Now, remember everything";
  567. mes "that you need this time, okay?";
  568. mes "I'll be waiting to welcome";
  569. mes "you into the elite ranks of ";
  570. mes "the Young Detective's Club.";
  571. close;
  572. }
  573. mes "[Morris]";
  574. mes "Magnifiers. Check.";
  575. mes "Tassels... Check.";
  576. mes "Slotted Bucket Hat. Got it.";
  577. mes "Aaaand zeny. Heh heh. Perfect.";
  578. next;
  579. mes "[Morris]";
  580. mes "Great, that's everything!";
  581. mes "Welcome to the club! Here's";
  582. mes "your Renown Detective's Cap,";
  583. mes "so wear it with pride as you";
  584. mes "take an active part in our club's";
  585. mes "activities and promotion!";
  586. delitem 7301,1887;
  587. delitem 5120,1;
  588. delitem 611,10;
  589. set Zeny, Zeny - 1887;
  590. set DTHATQ,2;
  591. getitem 5108,1;
  592. next;
  593. switch( select( "Wait, promotion?", "Hooray!" ) )
  594. {
  595. case 1:
  596. mes "[Morris]";
  597. mes "Of course, isn't it obvious?";
  598. mes "As a member, one of your duties";
  599. mes "will be to sing accolades of this club so that more members";
  600. mes "will join and earn their own";
  601. mes "Renown Detective's Caps.";
  602. next;
  603. mes "[Morris]";
  604. mes "Alright, scurry off";
  605. mes "now and proudly display";
  606. mes "your new, rakishly stylish";
  607. mes "Renown Detective's Cap";
  608. mes "to all of your friends!";
  609. close;
  610. break;
  611. case 2:
  612. mes "[Morris]";
  613. mes "Alright, scurry off";
  614. mes "now and proudly display";
  615. mes "your new, rakishly stylish";
  616. mes "Renown Detective's Cap";
  617. mes "to all of your friends!";
  618. close;
  619. break;
  620. }
  621. break;
  622. case 2:
  623. mes "[Morris]";
  624. mes "Huh. You just failed";
  625. mes "the \"Test of Respect.\"";
  626. mes "You don't deserve the";
  627. mes "honor of wearing the";
  628. mes "Renowned Detective's Cap!";
  629. close;
  630. break;
  631. }
  632. }
  633. else if(DTHATQ == 2)
  634. {
  635. mes "[Morris]";
  636. mes "Have you come to me";
  637. mes "in order to obtain another";
  638. mes "Renown Detective's Cap?";
  639. mes "I realize that such a stylish";
  640. mes "headgear is in high demand.";
  641. next;
  642. mes "[Morris]";
  643. mes "Remember, make sure";
  644. mes "that you don't bring any";
  645. mes "^FF0000slotted Bucket Hats that";
  646. mes "have been upgraded or have";
  647. mes "cards compounded to them, or";
  648. mes "you'll lose those enhancements^000000.";
  649. next;
  650. mes "[Morris]";
  651. mes "As a proud member of";
  652. mes "the Young Detective's Club,";
  653. mes "did you bring everything";
  654. mes "you need in order to earn";
  655. mes "a Renown Detective's Cap?";
  656. next;
  657. switch( select( "I'm not sure~", "Sure!" ) )
  658. {
  659. case 1:
  660. mes "[Morris]";
  661. mes "What...?! Every good";
  662. mes "detective must have a";
  663. mes "photographic memory";
  664. mes "and be able to recall";
  665. mes "minute details in order";
  666. mes "to crack the case.";
  667. emotion e_sob;
  668. next;
  669. mes "[Morris]";
  670. mes "Remember...";
  671. mes "^0000FF10 Magnifiers^000000,";
  672. mes "^0000FF1887 Tassels^000000,";
  673. mes "^0000FF1 Slotted Bucket Hat^000000";
  674. mes "and ^0000FF1,887 zeny^000000. Okay?";
  675. close;
  676. break;
  677. case 2:
  678. mes "[Morris]";
  679. mes "Great!";
  680. mes "Now let me just";
  681. mes "check to see if you";
  682. mes "brought everything...";
  683. next;
  684. set @lhzhatfailed,0;
  685. if(countitem(611) < 10)
  686. {
  687. mes "[Morris]";
  688. mes "Hmm, you don't have";
  689. mes "enough Magnifiers? But";
  690. mes "those are essential tools";
  691. mes "for sleuthing. Come now,";
  692. mes "hurry back with them!";
  693. set @lhzhatfailed,1;
  694. next;
  695. }
  696. if(countitem(7301) < 1887 && @lhzhatfailed == 0)
  697. {
  698. mes "[Morris]";
  699. mes "Magnifiers. Check.";
  700. mes "Not enough Tassels? Check.";
  701. set @lhzhatfailed,1;
  702. next;
  703. }
  704. if(countitem(5120) < 1 && @lhzhatfailed == 0)
  705. {
  706. mes "[Morris]";
  707. mes "Magnifiers. Check.";
  708. mes "Tassels... Check.";
  709. mes "Hm. You're missing";
  710. mes "the slotted Bucket Hat.";
  711. mes "You were so close...";
  712. set @lhzhatfailed,1;
  713. next;
  714. }
  715. if(Zeny < 1887 && failed == 0)
  716. {
  717. mes "[Morris]";
  718. mes "Magnifiers. Check.";
  719. mes "Tassels... Check.";
  720. mes "Slotted Bucket Hat. Got it.";
  721. mes "Hey. Where's the zeny?!";
  722. mes "That's the most important,";
  723. mes "er, qualification of all!";
  724. set @lhzhatfailed,1;
  725. next;
  726. }
  727. if(@lhzhatfailed == 1)
  728. {
  729. mes "[Morris]";
  730. mes "Remember...";
  731. mes "^0000FF10 Magnifiers^000000,";
  732. mes "^0000FF1887 Tassels^000000,";
  733. mes "^0000FF1 Slotted Bucket Hat^000000";
  734. mes "and ^0000FF1,887 zeny^000000. Okay?";
  735. emotion e_an;
  736. close;
  737. } set @lhzhatfailed,0;
  738. if(countitem(611) < 10)
  739. {
  740. mes "[Morris]";
  741. mes "Hmm, you don't have";
  742. mes "enough Magnifiers? But";
  743. mes "those are essential tools";
  744. mes "for sleuthing. Come now,";
  745. mes "hurry back with them!";
  746. set @lhzhatfailed,1;
  747. next;
  748. }
  749. if(countitem(7301) < 1887 && @lhzhatfailed == 0)
  750. {
  751. mes "[Morris]";
  752. mes "Magnifiers. Check.";
  753. mes "Not enough Tassels? Check.";
  754. set @lhzhatfailed,1;
  755. next;
  756. }
  757. if(countitem(5120) < 1 && @lhzhatfailed == 0)
  758. {
  759. mes "[Morris]";
  760. mes "Magnifiers. Check.";
  761. mes "Tassels... Check.";
  762. mes "Hm. You're missing";
  763. mes "the slotted Bucket Hat.";
  764. mes "You were so close...";
  765. set @lhzhatfailed,1;
  766. next;
  767. }
  768. if(Zeny < 1887 && failed == 0)
  769. {
  770. mes "[Morris]";
  771. mes "Magnifiers. Check.";
  772. mes "Tassels... Check.";
  773. mes "Slotted Bucket Hat. Got it.";
  774. mes "Hey. Where's the zeny?!";
  775. mes "That's the most important,";
  776. mes "er, qualification of all!";
  777. set @lhzhatfailed,1;
  778. next;
  779. }
  780. if(@lhzhatfailed == 1)
  781. {
  782. mes "[Morris]";
  783. mes "Remember...";
  784. mes "^0000FF10 Magnifiers^000000,";
  785. mes "^0000FF1887 Tassels^000000,";
  786. mes "^0000FF1 Slotted Bucket Hat^000000";
  787. mes "and ^0000FF1,887 zeny^000000. Okay?";
  788. emotion e_an;
  789. close;
  790. }
  791. mes "[Morris]";
  792. mes "Magnifiers. Check.";
  793. mes "Tassels... Check.";
  794. mes "Slotted Bucket Hat. Got it.";
  795. mes "Aaaand zeny. Heh heh. Perfect.";
  796. next;
  797. mes "[Morris]";
  798. mes "Great! You've just qualified";
  799. mes "to own yet another Renowned";
  800. mes "Detective's Cap. Congratulations! Now, let me collect all of these";
  801. mes "goods and zeny from you...";
  802. delitem 7301,1887;
  803. delitem 5120,1;
  804. delitem 611,10;
  805. set Zeny, Zeny - 1887;
  806. set DTHATQ,2;
  807. getitem 5108,1;
  808. next;
  809. mes "[Morris]";
  810. mes "Hahaha! It's what";
  811. mes "I expect from one of";
  812. mes "our Junior Gold Members!";
  813. mes "How does it feel like to be";
  814. mes "the cream of the cream of";
  815. mes "the crop? Great, isn't it?";
  816. close;
  817. break;
  818. }
  819. }
  820. }
  821. lighthalzen,360,313,3 script Boy#LhzHat 706,{
  822. mes "[Boy]";
  823. mes "Hello, mister!";
  824. mes "Um, would you do";
  825. mes "me a favor, please?";
  826. next;
  827. if(countitem(526) && countitem(7270) && countitem(941) && countitem(10004))
  828. {
  829. mes "[Boy]";
  830. mes "Oh! You brought me";
  831. mes "some Royal Jelly to";
  832. mes "eat, as well as everything";
  833. mes "I need to make a Baby Pacifier.";
  834. mes "Okay, let me get started on that right away. Just a moment...";
  835. next;
  836. mes "...";
  837. mes "......";
  838. next;
  839. mes "[Boy]";
  840. mes "Damn.";
  841. mes "That Royal Jelly";
  842. mes "was frickin' delicious!";
  843. mes "Now I can make your";
  844. mes "Baby Pacifier. Let's see";
  845. mes "here. Ah, here we go...";
  846. delitem 526,1;
  847. next;
  848. mes "[Boy]";
  849. mes "It's done!";
  850. mes "Now, you're the";
  851. mes "proud owner of your";
  852. mes "very own Baby Pacifier!";
  853. mes "I hope you're happy with";
  854. mes "yourself. Travel safe, okay?";
  855. delitem 7270,1;
  856. delitem 941,1;
  857. delitem 10004,1;
  858. getitem 5110,1;
  859. close;
  860. }
  861. switch( select( "What do you need?", "Sorry, kid..." ) )
  862. {
  863. case 1:
  864. mes "[Boy]";
  865. mes "Well, my mom has been";
  866. mes "sick recently, so both of";
  867. mes "us haven't been able to eat";
  868. mes "for the past few days. But";
  869. mes "if she doesn't eat, how does";
  870. mes "she expect to get better?";
  871. emotion e_sob;
  872. next;
  873. mes "[Boy]";
  874. mes "So I guess what I'm";
  875. mes "asking is, would you be";
  876. mes "able to spare some food?";
  877. next;
  878. switch( select( "Help him.", "Refuse to help." ) )
  879. {
  880. case 1:
  881. if(!countitem(526))
  882. {
  883. mes "[Boy]";
  884. mes "If you would, do you think";
  885. mes "you can get some Royal Jelly";
  886. mes "that I can give to my mom? The old lady next door says that it's";
  887. mes "really nutritious and helps you get better faster if you're sick.";
  888. next;
  889. mes "[Boy]";
  890. mes "My mom would be mad";
  891. mes "at me if she found out";
  892. mes "I was begging for it, but";
  893. mes "Royal Jelly is too expensive";
  894. mes "for me to get without any help!";
  895. close;
  896. }
  897. mes "[Boy]";
  898. mes "Oh, would it be alright";
  899. mes "if I have this Royal Jelly?";
  900. mes "It would really help my mom";
  901. mes "feel better. Thanks so much~";
  902. delitem 526,1;
  903. next;
  904. mes "[Boy]";
  905. mes "Hey, to pay you back, why";
  906. mes "don't I make a Baby Pacifier";
  907. mes "for you? I learned how to make";
  908. mes "one when my baby brother was";
  909. mes "born. But first, I'll need some";
  910. mes "materials to put it together...";
  911. next;
  912. mes "[Boy]";
  913. mes "Would you";
  914. mes "please bring";
  915. mes "^3131FF1 Nursing Bottle^000000,";
  916. mes "^3131FF1 Nose Ring^000000 and";
  917. mes "^3131FF1 Pacifier^000000? Oh, and one";
  918. mes "more ^3131FFRoyal Jelly^000000 for me~";
  919. close;
  920. break;
  921. case 2:
  922. mes "[Boy]";
  923. mes "Oh... Um, that's";
  924. mes "alright. Maybe I was";
  925. mes "asking too much from";
  926. mes "you. I mean, it's true";
  927. mes "that you barely know me...";
  928. emotion e_sob;
  929. close;
  930. break;
  931. }
  932. break;
  933. case 2:
  934. mes "[Boy]";
  935. mes "Th-that's okay.";
  936. mes "I guess you must";
  937. mes "be so busy that you";
  938. mes "don't even have the";
  939. mes "time to listen to some";
  940. mes "little boy's problems...";
  941. emotion e_sob;
  942. close;
  943. break;
  944. }
  945. }
  946. einbech,70,222,5 script Mater#LhzHat 91,{
  947. if(countitem(983) && countitem(7267) > 998 && countitem(749) && Zeny > 49999)
  948. {
  949. mes "[Mater]";
  950. mes "Oh, hello, what's this?";
  951. mes "You're carrying 1 Black";
  952. mes "Dyestuffs, 1 Frozen Rose,";
  953. mes "999 Tiger Panties and even";
  954. mes "50,000 zeny with you. That's";
  955. mes "enough to make a Winter Hat...";
  956. next;
  957. mes "[Mater]";
  958. mes "Um, would you mind letting";
  959. mes "me have those items so that";
  960. mes "I can make a Winter Hat?";
  961. mes "I'd never be able to gather";
  962. mes "those things on my own...";
  963. next;
  964. switch( select( "Let her have the items.", "Don't give her the items." ) )
  965. {
  966. case 1:
  967. mes "[Mater]";
  968. mes "Oh, thank you so much!";
  969. mes "I've always wanted to make";
  970. mes "this hat and try it on, even";
  971. mes "if it's just once. But don't";
  972. mes "worry, I'll give it to you~";
  973. mes "Now please next; a moment...";
  974. next;
  975. mes "[Mater]";
  976. mes "Let's see...";
  977. mes "I've got to fold";
  978. mes "the rose like this...";
  979. mes "Be careful with the dye...";
  980. mes "Where did I put all those";
  981. mes "pan--Oh, here we are.";
  982. next;
  983. mes "[Mater]";
  984. mes "^333333*Whew!*^000000";
  985. mes "Finally, it's done!";
  986. mes "Now, if you don't mind,";
  987. mes "let me try this hat on";
  988. mes "for just a little while.";
  989. delitem 983,1;
  990. delitem 7267,999;
  991. delitem 749,1;
  992. set Zeny,Zeny - 50000;
  993. getitem 5115,1;
  994. next;
  995. mes "...";
  996. mes "......";
  997. next;
  998. mes "[Mater]";
  999. mes "Ahhhhhh~";
  1000. mes "It just feels...";
  1001. mes "I felt so free~";
  1002. mes "It was everything";
  1003. mes "I imagined it to be.";
  1004. next;
  1005. mes "[Mater]";
  1006. mes "Here, please take";
  1007. mes "this Winter Hat. I really";
  1008. mes "hope that you'll enjoy it";
  1009. mes "as much as I do. Well then,";
  1010. mes "be safe in your travels, okay?";
  1011. close;
  1012. break;
  1013. case 2:
  1014. mes "[Mater]";
  1015. mes "I'm sorry, I know that";
  1016. mes "I was asking a pretty big";
  1017. mes "favor from someone I just";
  1018. mes "met. I hope you understand";
  1019. mes "how much I really want to";
  1020. mes "make that Winter Hat...";
  1021. close;
  1022. break;
  1023. }
  1024. }
  1025. mes "[Mater]";
  1026. mes "Look at that blue";
  1027. mes "sky. Don't you wish";
  1028. mes "you could just soar";
  1029. mes "through the heavens";
  1030. mes "with your own wings?";
  1031. next;
  1032. mes "[Mater]";
  1033. mes "Of course, it's an";
  1034. mes "impossible dream,";
  1035. mes "but with this Winter Hat,";
  1036. mes "you can at least enjoy the";
  1037. mes "sensation of freedom that";
  1038. mes "a bird in flight must feel.";
  1039. next;
  1040. mes "[Mater]";
  1041. mes "If you would like";
  1042. mes "a hat like this, I would";
  1043. mes "need to have some items";
  1044. mes "that I don't think I can ever";
  1045. mes "obtain on my very own.";
  1046. next;
  1047. mes "[Mater]";
  1048. mes "^FF00001 Black Dyestuffs^000000,";
  1049. mes "^FF0000999 Tiger Panties^000000,";
  1050. mes "^FF00001 Frozen Rose^000000 and";
  1051. mes "^FF000050,000 zeny^000000. If you can";
  1052. mes "bring those to me, I shall";
  1053. mes "make you a Winter Hat.";
  1054. close;
  1055. }
  1056. lhz_in02,91,38,5 script Margaret Mary#LhzHat 90,{
  1057. mes "[Margaret Mary]";
  1058. mes "The white rose, in its";
  1059. mes "purity and simplicity, is";
  1060. mes "like a woman who doesn't";
  1061. mes "need jewels or fancy dresses";
  1062. mes "to look noble and beautiful. It's the perfect gift for a lady.";
  1063. next;
  1064. switch( select( "Make a Mystic Rose.", "End Conversation." ) )
  1065. {
  1066. case 1:
  1067. if(countitem(731) > 9 && countitem(748) > 1 && countitem(982) && Zeny > 49999)
  1068. {
  1069. mes "[Margaret Mary]";
  1070. mes "Ah, I see that you've brought";
  1071. mes "what I need to bleach the blood";
  1072. mes "red hue from these Witherless";
  1073. mes "Roses and adorn these flowers";
  1074. mes "with eternal elegance. May I use these items to make a Mystic Rose?";
  1075. next;
  1076. switch( select( "Yes", "No" ) )
  1077. {
  1078. case 1:
  1079. mes "[Margaret Mary]";
  1080. mes "Thank you. Please";
  1081. mes "next; a moment while";
  1082. mes "I concentrate in order to";
  1083. mes "preserve the natural beauty";
  1084. mes "of these gorgeous flowers...";
  1085. next;
  1086. mes "[Margaret Mary]";
  1087. mes "The rose truly is the";
  1088. mes "undisputed queen of all";
  1089. mes "flowers. All other flora must";
  1090. mes "humbly bow to its regal beauty.";
  1091. next;
  1092. mes "...";
  1093. mes "......";
  1094. next;
  1095. mes "...";
  1096. mes "......";
  1097. mes ".........";
  1098. next;
  1099. mes "[Margaret Mary]";
  1100. mes "There, it is finished.";
  1101. mes "Please remember to wear";
  1102. mes "your hair in an elegant and";
  1103. mes "refined manner when wearing";
  1104. mes "the Mystic Rose so as not to disgrace these beautiful flowers.";
  1105. delitem 731,10;
  1106. delitem 748,2;
  1107. delitem 982,1;
  1108. set Zeny,Zeny - 50000;
  1109. getitem 5117,1;
  1110. close;
  1111. break;
  1112. case 2:
  1113. mes "[Margaret Mary]";
  1114. mes "White roses with thorns";
  1115. mes "makes my heart beat with";
  1116. mes "unceasing trepidation. What";
  1117. mes "if I prick my finger and shed";
  1118. mes "blood on its snow white petals?";
  1119. close;
  1120. break;
  1121. }
  1122. }
  1123. mes "[Margaret Mary]";
  1124. mes "I love roses, but it makes";
  1125. mes "me sad that their beauty";
  1126. mes "fades far too soon. And so,";
  1127. mes "I've found a way to preserve";
  1128. mes "the beauty of the roses, so";
  1129. mes "that it lasts for all eternity.";
  1130. next;
  1131. mes "[Margaret Mary]";
  1132. mes "Do you love roses as well?";
  1133. mes "If you like, I can make a";
  1134. mes "^3131FFMystic Rose^000000 that you can wear";
  1135. mes "upon your crown. It's not easy";
  1136. mes "for me to create, but I believe that you would enjoy it greatly.";
  1137. next;
  1138. mes "[Margaret Mary]";
  1139. mes "Please bring me";
  1140. mes "^3131FF10 2 Carat Diamonds^000000,";
  1141. mes "^3131FF3 Witherless Roses^000000,";
  1142. mes "^3131FF1 White Dyestuffs^000000 and";
  1143. mes "^3131FF50,000 zeny^000000 if you would";
  1144. mes "like to have a Mystic Rose.";
  1145. close;
  1146. break;
  1147. case 2:
  1148. mes "[Margaret Mary]";
  1149. mes "White roses with thorns";
  1150. mes "makes my heart beat with";
  1151. mes "unceasing trepidation. What";
  1152. mes "if I prick my finger and shed";
  1153. mes "blood on its snow white petals?";
  1154. close;
  1155. break;
  1156. }
  1157. }
  1158. lighthalzen,182,89,0 script Rich Girl#LhzHat 91,{
  1159. if(LHZBTQ == 0)
  1160. {
  1161. mes "[Rich Girl]";
  1162. mes "Hmmm...?";
  1163. mes "What? Did you";
  1164. mes "need something?";
  1165. next;
  1166. switch( select( "N-Nothing.", "Um, you look so relaxed." ) )
  1167. {
  1168. case 1:
  1169. mes "[Rich Girl]";
  1170. mes "Huh.";
  1171. mes "Alright then.";
  1172. mes "Well, try not to stare";
  1173. mes "at people so much.";
  1174. close;
  1175. break;
  1176. case 2:
  1177. mes "[Rich Girl]";
  1178. mes "Really? You are probably";
  1179. mes "the twentieth person to";
  1180. mes "tell me that today. Mmm.";
  1181. mes "That's strange, isn't it?";
  1182. next;
  1183. menu "I guess.",-,"It's not strange at all.",-;
  1184. mes "[Rich Girl]";
  1185. mes "Oh yeah.";
  1186. mes "What's your name?";
  1187. mes "That is, if you don't";
  1188. mes "mind me asking you.";
  1189. next;
  1190. mes "[" + strcharinfo(0) + "]";
  1191. mes "My name is " + strcharinfo(0) + "";
  1192. mes "and I'm an adventurer~";
  1193. next;
  1194. mes "[Achiha]";
  1195. mes "Oh, one of those?";
  1196. mes "My name is Achiha, nice";
  1197. mes "to meet you. I don't really";
  1198. mes "do much of anything.";
  1199. mes "Just sit. Relax.";
  1200. set LHZBTQ,1;
  1201. emotion e_heh;
  1202. next;
  1203. mes "[Achiha]";
  1204. mes "I do have a hobby,";
  1205. mes "though. Once in a while,";
  1206. mes "I'll sew a hat. Do you think";
  1207. mes "an adventurer like you would";
  1208. mes "want to have a hat I made?";
  1209. next;
  1210. switch( select( "Er, I dunno.", "Sure." ) )
  1211. {
  1212. case 1:
  1213. mes "[Achiha]";
  1214. mes "Mm. I mean, the";
  1215. mes "Red Bonnets I make";
  1216. mes "might not be sturdy";
  1217. mes "enough for battles.";
  1218. mes "But what about those";
  1219. mes "fish and cake hats?";
  1220. next;
  1221. mes "[Achiha]";
  1222. mes "Hats...?";
  1223. mes "That look like";
  1224. mes "fish or cake? Mm.";
  1225. mes "Haha. I just got it.";
  1226. mes "That's, that's funny.";
  1227. close;
  1228. break;
  1229. case 2:
  1230. mes "[Achiha]";
  1231. mes "Really? Well, I can sew";
  1232. mes "together a ^0000FFRed Bonnet^000000.";
  1233. mes "It reminds most people";
  1234. mes "of a baby's bonnet, but";
  1235. mes "it does look good on";
  1236. mes "most people I know.";
  1237. next;
  1238. mes "[Achiha]";
  1239. mes "Um, did you want me";
  1240. mes "to make you one? I can";
  1241. mes "go ahead and do it if you";
  1242. mes "bring me some materials.";
  1243. mes "Since it's just for fun,";
  1244. mes "I won't ask for too much.";
  1245. next;
  1246. mes "[Achiha]";
  1247. mes "Just bring";
  1248. mes "^0000FF1 Green Lace^000000,";
  1249. mes "^0000FF1 Silk Ribbon^000000,";
  1250. mes "^0000FF1 Scarlet Dyestuffs^000000,";
  1251. mes "^0000FF1 Sunday Hat^000000 and";
  1252. mes "^0000FF50,000 zeny^000000.";
  1253. next;
  1254. mes "[Achiha]";
  1255. mes "I think I'm going";
  1256. mes "to just sit and relax";
  1257. mes "a little bit longer. But";
  1258. mes "if you want me to make";
  1259. mes "a hat for you, come back";
  1260. mes "with those materials, okay?";
  1261. set LHZBTQ,2;
  1262. close;
  1263. break;
  1264. }
  1265. break;
  1266. }
  1267. }
  1268. else if(LHZBTQ == 1)
  1269. {
  1270. mes "[Achiha]";
  1271. mes "Oh, hello.";
  1272. mes "Isn't it such a nice,";
  1273. mes "quiet, pleasant day?";
  1274. next;
  1275. switch( select( "Indeed.", "Would you please make a hat for me?" ) )
  1276. {
  1277. case 1:
  1278. mes "[Achiha]";
  1279. mes "Yeah. Today would";
  1280. mes "be a nice day for a";
  1281. mes "picnic or a long stroll.";
  1282. mes "But all I want to do is";
  1283. mes "just sit and relax...";
  1284. close;
  1285. break;
  1286. case 2:
  1287. mes "[Achiha]";
  1288. mes "What are you talking";
  1289. mes "about? Oh, you mean the";
  1290. mes "Red Bonnet? Well, I guess";
  1291. mes "I can make one. But I think";
  1292. mes "I need some materials first.";
  1293. next;
  1294. mes "[Achiha]";
  1295. mes "^0000FF1 Green Lace^000000,";
  1296. mes "^0000FF1 Silk Ribbon^000000,";
  1297. mes "^0000FF1 Scarlet Dyestuffs^000000,";
  1298. mes "^0000FF1 Sunday Hat^000000 and";
  1299. mes "^0000FF50,000 zeny^000000.";
  1300. mes "That's what I need.";
  1301. next;
  1302. mes "[Achiha]";
  1303. mes "Oh, but I don't";
  1304. mes "feel like making it";
  1305. mes "right now. I'm soooo";
  1306. mes "tired. Let me just sit,";
  1307. mes "relax, even if it's just";
  1308. mes "a little while longer...";
  1309. set LHZBTQ,2;
  1310. close;
  1311. break;
  1312. }
  1313. }
  1314. else if(LHZBTQ == 2)
  1315. {
  1316. mes "[Achiha]";
  1317. mes "Oh, good, you're here.";
  1318. mes "I've been waiting for you.";
  1319. mes "Did you bring everything that";
  1320. mes "you need to make a ^0000FFRed Bonnet^000000?";
  1321. next;
  1322. switch( select( "Yes.", "I forgot what I need." ) )
  1323. {
  1324. case 1:
  1325. if(countitem(10015) < 1 || countitem(10007) < 1 || countitem(975) < 1 || countitem(5032) < 1 || Zeny < 50000)
  1326. {
  1327. mes "[Achiha]";
  1328. mes "Uh oh.";
  1329. mes "You forgot";
  1330. mes "a couple things.";
  1331. mes "Would you like me";
  1332. mes "to remind you what";
  1333. mes "you need to bring?";
  1334. next;
  1335. mes "[Achiha]";
  1336. mes "^0000FF1 Green Lace^000000,";
  1337. mes "^0000FF1 Silk Ribbon^000000,";
  1338. mes "^0000FF1 Scarlet Dyestuffs^000000,";
  1339. mes "^0000FF1 Sunday Hat^000000 and";
  1340. mes "^0000FF50,000 zeny^000000. Come back";
  1341. mes "when you're ready, okay?";
  1342. close;
  1343. }
  1344. mes "[Achiha]";
  1345. mes "Oh, you brought";
  1346. mes "everything. That's";
  1347. mes "good. Okay, just give";
  1348. mes "it to me. Um, let's see.";
  1349. next;
  1350. mes "[Achiha]";
  1351. mes "Well, I'm finished.";
  1352. mes "^333333*Yawn*^000000 And now I'm";
  1353. mes "even more tired. Here,";
  1354. mes "take this Red Bonnet.";
  1355. mes "I hope you like it~";
  1356. mes "I think I'll relax now...";
  1357. delitem 10015,1;
  1358. delitem 10007,1;
  1359. delitem 975,1;
  1360. delitem 5032,1;
  1361. set Zeny,Zeny - 50000;
  1362. getitem 5109,1;
  1363. set LHZBTQ,3;
  1364. next;
  1365. mes "[Achiha]";
  1366. mes "I hope you will enjoy the hat~";
  1367. close;
  1368. break;
  1369. case 2:
  1370. mes "[Achiha]";
  1371. mes "Oh, you really";
  1372. mes "forgot? Oh dear,";
  1373. mes "let me try to remember.";
  1374. mes "I didn't forget too, did I?";
  1375. mes "Oh next;, I remember now...";
  1376. next;
  1377. mes "[Achiha]";
  1378. mes "^0000FF1 Green Lace^000000,";
  1379. mes "^0000FF1 Silk Ribbon^000000,";
  1380. mes "^0000FF1 Scarlet Dyestuffs^000000,";
  1381. mes "^0000FF1 Sunday Hat^000000 and";
  1382. mes "^0000FF50,000 zeny^000000. Come back";
  1383. mes "when you're ready, okay?";
  1384. close;
  1385. break;
  1386. }
  1387. }
  1388. else if(LHZBTQ == 3)
  1389. {
  1390. mes "[Achiha]";
  1391. mes "Oh, I remember you.";
  1392. mes "You're the adventurer";
  1393. mes "who likes my Red Bonnets";
  1394. mes "so much. Did you want me";
  1395. mes "to make another one for you?";
  1396. next;
  1397. switch( select( "Yes.", "I forgot what I need." ) )
  1398. {
  1399. case 1:
  1400. if(countitem(10015) < 1 || countitem(10007) < 1 || countitem(975) < 1 || countitem(5032) < 1 || Zeny < 50000)
  1401. {
  1402. mes "[Achiha]";
  1403. mes "Uh oh.";
  1404. mes "You forgot";
  1405. mes "a couple things.";
  1406. mes "Would you like me";
  1407. mes "to remind you what";
  1408. mes "you need to bring?";
  1409. next;
  1410. mes "[Achiha]";
  1411. mes "^0000FF1 Green Lace^000000,";
  1412. mes "^0000FF1 Silk Ribbon^000000,";
  1413. mes "^0000FF1 Scarlet Dyestuffs^000000,";
  1414. mes "^0000FF1 Sunday Hat^000000 and";
  1415. mes "^0000FF50,000 zeny^000000. Come back";
  1416. mes "when you're ready, okay?";
  1417. close;
  1418. }
  1419. mes "[Achiha]";
  1420. mes "Oh, you brought";
  1421. mes "everything. That's";
  1422. mes "good. Okay, just give";
  1423. mes "it to me. Um, let's see.";
  1424. next;
  1425. mes "[Achiha]";
  1426. mes "Well, I'm finished.";
  1427. mes "^333333*Yawn*^000000 And now I'm";
  1428. mes "even more tired. Here,";
  1429. mes "take this Red Bonnet.";
  1430. mes "I hope you like it~";
  1431. mes "I think I'll relax now...";
  1432. delitem 10015,1;
  1433. delitem 10007,1;
  1434. delitem 975,1;
  1435. delitem 5032,1;
  1436. set Zeny,Zeny - 50000;
  1437. getitem 5109,1;
  1438. next;
  1439. mes "[Achiha]";
  1440. mes "I hope you will enjoy the hat~";
  1441. close;
  1442. break;
  1443. case 2:
  1444. mes "[Achiha]";
  1445. mes "Oh, you really";
  1446. mes "forgot? Oh dear,";
  1447. mes "let me try to remember.";
  1448. mes "I didn't forget too, did I?";
  1449. mes "Oh next;, I remember now...";
  1450. next;
  1451. mes "[Achiha]";
  1452. mes "^0000FF1 Green Lace^000000,";
  1453. mes "^0000FF1 Silk Ribbon^000000,";
  1454. mes "^0000FF1 Scarlet Dyestuffs^000000,";
  1455. mes "^0000FF1 Sunday Hat^000000 and";
  1456. mes "^0000FF50,000 zeny^000000. Come back";
  1457. mes "when you're ready, okay?";
  1458. close;
  1459. break;
  1460. }
  1461. }
  1462. }
  1463. gl_prison1,137,138,5 script Zealotus#LhzHat 1200,{
  1464. if(ZLMASKQ == 0)
  1465. {
  1466. mes "[Zealotus]";
  1467. mes "Kneel, worm!";
  1468. mes "As ruler of this";
  1469. mes "Underground Prison,";
  1470. mes "I command all who step";
  1471. mes "into my private realm!";
  1472. next;
  1473. mes "[Zealotus]";
  1474. mes "Resist, and you shall be";
  1475. mes "punished! Grovel and kiss";
  1476. mes "my feet, and perhaps you";
  1477. mes "might be spared. Hohohohoho!";
  1478. next;
  1479. switch( select( "Oh, your highness!", "Whatever." ) )
  1480. {
  1481. case 1:
  1482. mes "[Zealotus]";
  1483. mes "The submissive woman is";
  1484. mes "nothing but an ideal dream";
  1485. mes "for the arrogant male! A true";
  1486. mes "woman revels in her power to";
  1487. mes "have her man do her bidding!";
  1488. next;
  1489. switch( select( "Yes, it's so true!", "Boooo!" ) )
  1490. {
  1491. case 1:
  1492. mes "[Zealotus]";
  1493. mes "However, in my lust for power, I may have inadventently crushed";
  1494. mes "the spirits of my beloved a little too harshly. His pride crumbled,";
  1495. mes "my man even cowers in front of the humans! It pains me to see it.";
  1496. next;
  1497. mes "[Zealotus]";
  1498. mes "It is beneath me to ask";
  1499. mes "this of you, but it will take";
  1500. mes "a human like you to make";
  1501. mes "him remember who he truly is,";
  1502. mes "a proud creature of darkness";
  1503. mes "who should fear only me!";
  1504. next;
  1505. mes "[Zealotus]";
  1506. mes "Human. I offer you a small";
  1507. mes "share of my power if you can";
  1508. mes "take the pathetic, weeping lump";
  1509. mes "of monster crying in the corner";
  1510. mes "of this prison and make him";
  1511. mes "realize his true nature.";
  1512. set ZLMASKQ,1;
  1513. close;
  1514. break;
  1515. case 2:
  1516. mes "[Zealotus]";
  1517. mes "You dirty, dirty human...";
  1518. mes "How dare you have an ";
  1519. mes "opinion different than mine!";
  1520. mes "No matter. The day will come";
  1521. mes "when all of your race shall";
  1522. mes "address me only as \"queen.\"";
  1523. close;
  1524. break;
  1525. }
  1526. break;
  1527. case 2:
  1528. mes "[Zealotus]";
  1529. mes "Mortal simpleton!";
  1530. mes "Bah! The mocking of";
  1531. mes "a boorish cur is worthless";
  1532. mes "to me. I have all the time in";
  1533. mes "the world to grind your pride";
  1534. mes "to dust beneath my heels.";
  1535. close;
  1536. break;
  1537. }
  1538. }
  1539. else if(ZLMASKQ > 0 && ZLMASKQ < 6)
  1540. {
  1541. mes "[Zealotus]";
  1542. mes "Hm. If my beloved is";
  1543. mes "acting stubborn or refuses";
  1544. mes "to listen, feel free to take";
  1545. mes "drastic measures. Just think";
  1546. mes "of what I would do in your";
  1547. mes "place. Ohohohohoho~!";
  1548. close;
  1549. }
  1550. else if(ZLMASKQ == 6)
  1551. {
  1552. mes "[Zealotus]";
  1553. mes "Ooh, you're back.";
  1554. mes "Phendark is certainly";
  1555. mes "back to his old self again,";
  1556. mes "thanks to your efforts, human.";
  1557. mes "Yes, his anger, his courage";
  1558. mes "and passion are all restored~";
  1559. next;
  1560. mes "[Zealotus]";
  1561. mes "As I promised, I shall";
  1562. mes "grant you a share of my";
  1563. mes "power. However, I will need";
  1564. mes "some items to form this minor";
  1565. mes "contract between you and me.";
  1566. next;
  1567. mes "[Zealotus]";
  1568. mes "I will need";
  1569. mes "^3131FF1 Cat's Eye^000000,";
  1570. mes "^3131FF1 Forbidden Red Candle^000000 and";
  1571. mes "^3131FF30 Worn-Out Magic Scrolls^000000.";
  1572. mes "Then, I can grant you a measure";
  1573. mes "of my power as I've promised.";
  1574. set ZLMASKQ,7;
  1575. close;
  1576. }
  1577. else if(ZLMASKQ == 7)
  1578. {
  1579. if(countitem(7263) && countitem(660) && countitem(7099) > 29)
  1580. {
  1581. mes "[Zealotus]";
  1582. mes "I see that you have";
  1583. mes "brought what I need to";
  1584. mes "complete the contract";
  1585. mes "between you and me,";
  1586. mes "human. Let's begin...";
  1587. next;
  1588. mes "^3355FFZealotus takes the red";
  1589. mes "candle you've given her and";
  1590. mes "drips the wax into her open";
  1591. mes "palm. The Cat's Eye begins";
  1592. mes "to glow with an eerie light.^000000";
  1593. next;
  1594. mes "[Zealotus]";
  1595. mes "Now, place your index";
  1596. mes "finger into my palm so";
  1597. mes "that we may complete the";
  1598. mes "final step of this contract...";
  1599. next;
  1600. switch( select( "Don't complete the contract.", "Complete the contract." ) )
  1601. {
  1602. case 1:
  1603. mes "[Zealotus]";
  1604. mes "Hm? What are you";
  1605. mes "afraid of? This is a";
  1606. mes "minor contract, so";
  1607. mes "you are not selling me";
  1608. mes "your soul, or anything";
  1609. mes "else for that matter.";
  1610. close;
  1611. break;
  1612. case 2:
  1613. mes "[Zealotus]";
  1614. mes "I, Zealotus, as ruler";
  1615. mes "of this realm, seal this";
  1616. mes "eternal contract with this";
  1617. mes "Forbidden Red Candle.";
  1618. next;
  1619. mes "[Zealotus]";
  1620. mes "" + strcharinfo(0) + " will";
  1621. mes "forever have a share";
  1622. mes "in my power. Those that";
  1623. mes "bow to me must also bow";
  1624. mes "to " + strcharinfo(0) + ". It shall be done.";
  1625. specialeffect EF_DEVIL;
  1626. specialeffect EF_POISONHIT;
  1627. next;
  1628. mes "[Zealotus]";
  1629. mes "Human, take this";
  1630. mes "mask with you as an";
  1631. mes "everlasting token of our";
  1632. mes "contract. So long as you";
  1633. mes "carry this, I will be at your";
  1634. mes "side. So says Zealotus!";
  1635. delitem 7263,1;
  1636. delitem 660,1;
  1637. delitem 7099,30;
  1638. getitem2 5121,1,1,0,0,254,0,getcharid(0)&0xffff,(getcharid(0)>>16)&0xffff;
  1639. set ZLMASKQ,8;
  1640. close;
  1641. break;
  1642. }
  1643. }
  1644. mes "[Zealotus]";
  1645. mes "I will need";
  1646. mes "^3131FF1 Cat's Eye^000000,";
  1647. mes "^3131FF1 Forbidden Red Candle^000000 and";
  1648. mes "^3131FF30 Worn-Out Magic Scrolls^000000.";
  1649. mes "Then, I can grant you a measure";
  1650. mes "of my power as I've promised.";
  1651. close;
  1652. }
  1653. else if(ZLMASKQ == 8)
  1654. {
  1655. mes "[Zealotus]";
  1656. mes "Ah, I greet you in";
  1657. mes "peace, human. Behold,";
  1658. mes "the splendor of our realm!";
  1659. mes "Though, I do not blame you";
  1660. mes "if you have no interest in";
  1661. mes "commanding these Injustices...";
  1662. next;
  1663. mes "[Zealotus]";
  1664. mes "Thanks to your help,";
  1665. mes "my Phendark has returned";
  1666. mes "to his old, monstrously";
  1667. mes "passionate ways. Now I can";
  1668. mes "show him the stinging love";
  1669. mes "of my whip! Hohohohohoho!";
  1670. emotion e_kis;
  1671. close;
  1672. }
  1673. }
  1674. gl_prison1,97,104,1 script Phendark#LhzHat 1202,{
  1675. if(ZLMASKQ == 0)
  1676. {
  1677. mes "[Phendark]";
  1678. mes "Huh? Oh no!";
  1679. mes "Another h-human?!";
  1680. mes "P-please! S-stay away,";
  1681. mes "don't come near me!";
  1682. close;
  1683. }
  1684. else if(ZLMASKQ == 1)
  1685. {
  1686. mes "[Phendark]";
  1687. mes "Huh? Oh no!";
  1688. mes "Another h-human?!";
  1689. mes "P-please! S-stay away,";
  1690. mes "don't come near me!";
  1691. next;
  1692. mes "[Phendark]";
  1693. mes "I... I swear!";
  1694. mes "I'm not carrying any";
  1695. mes "rare items or stuff you";
  1696. mes "can wear, so please don't";
  1697. mes "beat me! I... Oh my god, you";
  1698. mes "don't believe me, don't you?";
  1699. next;
  1700. mes "[Phendark]";
  1701. mes "You humans never leave";
  1702. mes "me alone! Why do you have";
  1703. mes "to bully me like this?! I'm";
  1704. mes "honestly not carrying anything";
  1705. mes "of value! Z-Zealotus, please!";
  1706. mes "Zealotus, heeeeeelp me~!";
  1707. emotion e_sob;
  1708. if(!(
  1709. countitem(1950) || countitem(1951) || countitem(1952) ||
  1710. countitem(1953) || countitem(1954) || countitem(1955) ||
  1711. countitem(1956) || countitem(1957) || countitem(1958) ||
  1712. countitem(1959) || countitem(1960) || countitem(1961) ||
  1713. countitem(1962) || countitem(1963) || countitem(1964) ||
  1714. countitem(1965) || countitem(1966) || countitem(1967) ||
  1715. countitem(1968) || countitem(1969) || countitem(1970) ||
  1716. countitem(1971)
  1717. ))
  1718. close; // no whip equipped or in inventory
  1719. next;
  1720. mes "[" + strcharinfo(0) + "]";
  1721. mes "You're pathetic!";
  1722. mes "Aren't you supposed";
  1723. mes "to be a monster? You know";
  1724. mes "what Zealotus would do if";
  1725. mes "she were actually here?";
  1726. next;
  1727. mes "[Phendark]";
  1728. mes "^333333*Sniff...*^000000";
  1729. mes "P-probably...";
  1730. mes "Probably whip me.";
  1731. next;
  1732. mes "^3355FFYou nonchalantly^000000";
  1733. mes "^3355FFbrandish your Whip.^000000";
  1734. next;
  1735. mes "[" + strcharinfo(0) + "]";
  1736. mes "That's right.";
  1737. next;
  1738. mes "^3355FF*Snap!*";
  1739. mes "*Snap!*";
  1740. mes "*Crack crack crack!*";
  1741. mes "*Snap snap snap crack!*^000000";
  1742. next;
  1743. mes "[Phendark]";
  1744. mes "Oh! That stinging pain";
  1745. mes "that burns with bloodlust!";
  1746. mes "It's almost as good as";
  1747. mes "Zealtos's whip of love!";
  1748. next;
  1749. mes "[Phendark]";
  1750. mes "Zealotus...";
  1751. mes "She must be pissed";
  1752. mes "at me, but I just can't";
  1753. mes "stop being afraid of all";
  1754. mes "you humans! Damn it all!";
  1755. set ZLMASKQ,2;
  1756. close;
  1757. }
  1758. else if(ZLMASKQ == 2 || ZLMASKQ == 3)
  1759. {
  1760. if(countitem(7315) > 368 && ZLMASKQ == 3)
  1761. {
  1762. mes "[Phendark]";
  1763. mes "Y-you again!";
  1764. mes "Why do you hound me?!";
  1765. mes "Th-there's nothing I can";
  1766. mes "give you, so please don't";
  1767. mes "hurt me! Oh, oh p-please...!";
  1768. emotion e_swt2;
  1769. next;
  1770. switch( select( "Feed him Dark Crystal Fragment.", "Threaten him." ) )
  1771. {
  1772. case 1:
  1773. mes "[Phendark]";
  1774. mes "What...? You want";
  1775. mes "me to eat these?";
  1776. mes "It doesn't seem natural,";
  1777. mes "but if Rybio says I should,";
  1778. mes "it might not be that bad.";
  1779. next;
  1780. mes "...";
  1781. mes "......";
  1782. next;
  1783. mes "[Phendark]";
  1784. mes "What's supposed to";
  1785. mes "happen now? My inner";
  1786. mes "demon is supposed to";
  1787. mes "awaken by eating these?";
  1788. mes "That sounds ridiculous!";
  1789. mes "Though, I did just eat crystal.";
  1790. next;
  1791. mes "[Phendark]";
  1792. mes "Wh-whoa. Ugh!";
  1793. mes "My chest! Something's";
  1794. mes "burning inside! I c-can't--!";
  1795. mes "Can't think straight... I'm...";
  1796. mes "Slowly... Losing my humanity!";
  1797. next;
  1798. mes "[Phendark]";
  1799. mes "Huh... Huuurg--!";
  1800. mes "Huk-huk! Heeeeh!";
  1801. mes "Heeeeeh! Waaoooooh!";
  1802. next;
  1803. mes "[Phendark]";
  1804. mes "...";
  1805. mes "Grrrrr...!";
  1806. next;
  1807. mes "[Phendark]";
  1808. mes "^333333*Pant pant*^000000";
  1809. mes "What... just...";
  1810. mes "What happened?";
  1811. set ZLMASKQ,4;
  1812. delitem 7315,369;
  1813. close;
  1814. break;
  1815. case 2:
  1816. mes "[" + strcharinfo(0) + "]";
  1817. mes "So what happens";
  1818. mes "if I don't decide not";
  1819. mes "to hurt you? Whatcha";
  1820. mes "gonna do then, huh?";
  1821. next;
  1822. mes "...";
  1823. mes "......";
  1824. next;
  1825. mes "[Phendark]";
  1826. mes "S-stop it!";
  1827. mes "Just--Just stop it!";
  1828. close;
  1829. break;
  1830. }
  1831. }
  1832. mes "[Phendark]";
  1833. mes "Humans...";
  1834. mes "They're everywhere!";
  1835. mes "You guys--I can't...";
  1836. mes "You're torturing me!";
  1837. emotion e_sob;
  1838. close;
  1839. }
  1840. else if(ZLMASKQ == 4)
  1841. {
  1842. mes "[Phendark]";
  1843. mes "My chest was on fire,";
  1844. mes "like I was, I dunno,";
  1845. mes "burning with anger or";
  1846. mes "something. It's gone";
  1847. mes "now, but what were";
  1848. mes "those crystals?";
  1849. close;
  1850. }
  1851. else if(ZLMASKQ == 5)
  1852. {
  1853. mes "[Phendark]";
  1854. mes "You again? Oh no,";
  1855. mes "you're not going to hurt";
  1856. mes "me or make me eat those";
  1857. mes "weird crystals again, are you?";
  1858. next;
  1859. mes "^3131FF[" + strcharinfo(0) + "]^000000";
  1860. switch( select( "Rybio", "Injustice", "Zealotus" ) )
  1861. {
  1862. case 1:
  1863. mes "Rybio";
  1864. set @temp1,1;
  1865. break;
  1866. case 2:
  1867. mes "Injustice";
  1868. set @temp1,2;
  1869. break;
  1870. case 3:
  1871. mes "Zealotus";
  1872. set @temp1,3;
  1873. break;
  1874. }
  1875. switch( select( "hates", "likes" ) )
  1876. {
  1877. case 1:
  1878. mes "hates";
  1879. set @temp2,1;
  1880. break;
  1881. case 2:
  1882. mes "likes";
  1883. set @temp2,2;
  1884. break;
  1885. }
  1886. switch( select( "Rybio.", "Injustice.", "Phendark.", "Zealotus." ) )
  1887. {
  1888. case 1:
  1889. mes "Rybio.";
  1890. break;
  1891. case 2:
  1892. mes "Injustice.";
  1893. break;
  1894. case 3:
  1895. if((@temp1 == 1 || @temp1 == 2) && @temp2 == 1)
  1896. {
  1897. mes "[Phendark]";
  1898. mes "I can't believe";
  1899. mes "something like that!";
  1900. mes "Oh, that doesn't matter.";
  1901. mes "Zealotus is too good for me.";
  1902. mes "I'm not even worthy of tasting";
  1903. mes "the sting of her Love Whip.";
  1904. emotion e_sob;
  1905. close;
  1906. }
  1907. else if(@temp1 == 3 && @temp2 == 1)
  1908. {
  1909. mes "[Phendark]";
  1910. mes "...";
  1911. mes "......";
  1912. mes "Hates me?";
  1913. mes "N-no, that can't--";
  1914. mes "I didn't, that doesn't--";
  1915. next;
  1916. mes "[Phendark]";
  1917. mes "Huh...?";
  1918. mes "What is that";
  1919. mes "supposed to mean?";
  1920. close;
  1921. }
  1922. else if(@temp1 == 3 && @temp2 == 2)
  1923. {
  1924. mes "[Phendark]";
  1925. mes "I can't believe";
  1926. mes "something like that!";
  1927. mes "Oh, that doesn't matter.";
  1928. mes "Zealotus is too good for me.";
  1929. mes "I'm not even worthy of tasting";
  1930. mes "the sting of her Love Whip.";
  1931. emotion e_sob;
  1932. close;
  1933. }
  1934. break;
  1935. case 4:
  1936. mes "Zealotus.";
  1937. break;
  1938. }
  1939. switch( select( "Insult him.", "Apologize." ) )
  1940. {
  1941. case 1:
  1942. mes "[" + strcharinfo(0) + "]";
  1943. mes "First of all,";
  1944. mes "what exactly sets";
  1945. mes "you apart from all the";
  1946. mes "other eligible monsters";
  1947. mes "that she can choose from?";
  1948. mes "Not like you're much better...";
  1949. next;
  1950. mes "[Phendark]";
  1951. mes "...";
  1952. mes "......";
  1953. next;
  1954. switch( select( "Break his pride.", "Tell him you were joking." ) )
  1955. {
  1956. case 1:
  1957. mes "^3131FF[" + strcharinfo(0) + "]^000000";
  1958. mes "I mean, there are guys";
  1959. mes "like Bloody Murderer out";
  1960. mes "there who are more evil";
  1961. mes "than you, and best of all,";
  1962. mes "not afraid of humans!";
  1963. next;
  1964. switch( select( "Go for the low blow.", "Try to salvage his confidence." ) )
  1965. {
  1966. case 1:
  1967. mes "[" + strcharinfo(0) + "]";
  1968. mes "You know, me and Zealotus";
  1969. mes "were actually talking about";
  1970. mes "you recently. She told me that";
  1971. mes "the sight of you makes her";
  1972. mes "feel sick! I mean, what kind";
  1973. mes "of monster is afraid of humans?";
  1974. next;
  1975. mes "[" + strcharinfo(0) + "]";
  1976. mes "Now you've reached the";
  1977. mes "point where even Injustice";
  1978. mes "is manlier than you now,";
  1979. mes "if you know what I mean!";
  1980. mes "Hahahahahahahahaha!";
  1981. next;
  1982. mes "[Phendark]";
  1983. mes "...";
  1984. mes "......";
  1985. next;
  1986. mes "[Phendark]";
  1987. mes "...";
  1988. mes "......";
  1989. mes ".........";
  1990. next;
  1991. mes "[Phendark]";
  1992. mes "...";
  1993. mes "......";
  1994. mes ".........";
  1995. mes "............";
  1996. next;
  1997. mes "[Phendark]";
  1998. mes "GRRRRRR!";
  1999. mes "THAT'S ENOUGH!";
  2000. emotion e_ag;
  2001. next;
  2002. mes "[Phendark]";
  2003. mes "I don't care who the";
  2004. mes "hell she is, I'm going";
  2005. mes "to see Zealotus and give";
  2006. mes "that tramp a piece of my";
  2007. mes "mind! Grrrr! She'll be sorry!";
  2008. set ZLMASKQ,6;
  2009. emotion e_an;
  2010. close;
  2011. break;
  2012. case 2:
  2013. mes "^3131FF[" + strcharinfo(0) + "]^000000";
  2014. mes "But know that I think";
  2015. mes "about it, maybe you look";
  2016. mes "much tougher than that";
  2017. mes "Bloody Murderer guy.";
  2018. next;
  2019. mes "[Phendark]";
  2020. mes "*Sniff sniff*";
  2021. mes "You really think so?";
  2022. next;
  2023. mes "...";
  2024. mes "......";
  2025. next;
  2026. mes "[" + strcharinfo(0) + "]";
  2027. mes "...Yeeeeeah.";
  2028. close;
  2029. break;
  2030. }
  2031. break;
  2032. case 2:
  2033. mes "[" + strcharinfo(0) + "]";
  2034. mes "But now that I think";
  2035. mes "about it, you actually";
  2036. mes "are much better than all";
  2037. mes "those other monsters.";
  2038. mes "That stuff I said before?";
  2039. mes "I was just kidding you.";
  2040. next;
  2041. mes "[Phendark]";
  2042. mes "^333333*Sniff!*^000000";
  2043. mes "You're...";
  2044. mes "Not helping!";
  2045. close;
  2046. break;
  2047. }
  2048. break;
  2049. case 2:
  2050. mes "[" + strcharinfo(0) + "]";
  2051. mes "I...";
  2052. mes "I was just kidding!";
  2053. mes "How could she hate";
  2054. mes "somebody like you?";
  2055. next;
  2056. mes "[Phendark]";
  2057. mes "No... No.";
  2058. mes "You're right.";
  2059. mes "I don't deserve love.";
  2060. mes "Not from Zealotus or";
  2061. mes "from anybody else...";
  2062. close;
  2063. break;
  2064. }
  2065. }
  2066. else if(ZLMASKQ > 5)
  2067. {
  2068. mes "[Phendark]";
  2069. mes "Zealotus! How dare";
  2070. mes "she say those things";
  2071. mes "against me! Less manly";
  2072. mes "than Injustice?! I'll just";
  2073. mes "have to prove her wrong!";
  2074. mes "Out the way, pithy human!";
  2075. close;
  2076. }
  2077. }
  2078. gl_prison1,100,48,5 script Rybio#LhzHat 1201,{
  2079. if(ZLMASKQ == 2)
  2080. {
  2081. mes "[Rybio]";
  2082. mes "You know, I usually just";
  2083. mes "run up and slash like crazy";
  2084. mes "once I see you humans, but";
  2085. mes "my heart's not in it today, so";
  2086. mes "I'm gonna give you just one";
  2087. mes "chance to run for your life.";
  2088. next;
  2089. switch( select( "Talk about Phendark.", "Run for your life." ) )
  2090. {
  2091. case 1:
  2092. mes "[Rybio]";
  2093. mes "What th--? You know the";
  2094. mes "same Phendark I know?";
  2095. mes "Dayam, that's weird. But";
  2096. mes "yeah, him and Zealotus have";
  2097. mes "some kind of... I dunno what";
  2098. mes "it is, actually. Um, love?";
  2099. next;
  2100. mes "[Rybio]";
  2101. mes "Anyway, Phendark has";
  2102. mes "been acting really weird";
  2103. mes "lately. I guess Zealotus";
  2104. mes "loved him to the point that";
  2105. mes "she abused him to the point";
  2106. mes "that he's scared of humans now.";
  2107. next;
  2108. mes "[Rybio]";
  2109. mes "Huh. You know what'd help?";
  2110. mes "Dark Crystal Fragments. It's";
  2111. mes "worthless to humans, but if";
  2112. mes "creatures of darkness eat it,";
  2113. mes "it brings out more of their";
  2114. mes "inner demon. Scary, huh?";
  2115. next;
  2116. mes "[Rybio]";
  2117. mes "Since Phendark's pretty big, and he's acting like a total wuss, you";
  2118. mes "you should probably get him to eat ^3131FF369 Dark Crystal Fragments^000000. Don't";
  2119. mes "worry, you should be able to find those all over Rune-Midgard.";
  2120. next;
  2121. mes "[Rybio]";
  2122. mes "I dunno why a human";
  2123. mes "like you would want to";
  2124. mes "help one of us out, though.";
  2125. mes "What's in it for you, exactly?";
  2126. set ZLMASKQ,3;
  2127. close;
  2128. break;
  2129. case 2:
  2130. mes "[Rybio]";
  2131. mes "That's right!";
  2132. mes "Run, get outta here!";
  2133. mes "If you're not fast enough,";
  2134. mes "I might eat you, human!";
  2135. mes "...Well... Probably not.";
  2136. close;
  2137. break;
  2138. }
  2139. }
  2140. else if(ZLMASKQ == 3)
  2141. {
  2142. mes "[Rybio]";
  2143. mes "I don't get why someone";
  2144. mes "like you, a seemingly heroic";
  2145. mes "adventurer, would want to help";
  2146. mes "out Phendark? Did Zealotus";
  2147. mes "blackmail you or something?";
  2148. next;
  2149. mes "[Rybio]";
  2150. mes "Well, you could";
  2151. mes "probably help him";
  2152. mes "by getting him to eat";
  2153. mes "^3131FF369 Dark Crystal Fragments^000000";
  2154. mes "to sort of stir up the demon";
  2155. mes "that sleeping within, you know?";
  2156. close;
  2157. }
  2158. else if(ZLMASKQ == 4)
  2159. {
  2160. mes "[Rybio]";
  2161. mes "Feeding him all of those";
  2162. mes "Dark Crystal Fragments didn't";
  2163. mes "work? But that was supposed";
  2164. mes "to be foolproof! Dayam, what";
  2165. mes "the hell happened to Phendark's";
  2166. mes "inner demon?! Man oh man...";
  2167. next;
  2168. mes "[Rybio]";
  2169. mes "Well, I don't know what";
  2170. mes "else you could try. I mean,";
  2171. mes "maybe you could try motivating";
  2172. mes "him. Reverse psychology?";
  2173. mes "It's weird talking about this";
  2174. mes "with a human. Hahahaha~";
  2175. set ZLMASKQ,5;
  2176. close;
  2177. }
  2178. else if(ZLMASKQ == 5)
  2179. {
  2180. mes "[Rybio]";
  2181. mes "Phendark sure looks";
  2182. mes "tough, but I guess even";
  2183. mes "he isn't totally evil. Yeah.";
  2184. mes "We monsters aren't all";
  2185. mes "bad... Just mostly bad.";
  2186. close;
  2187. }
  2188. }