quests_ein.txt 109 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104
  1. //===== eAthena Script =======================================
  2. //= Quest NPCs related to Einbroch and Einbech
  3. //===== By: ==================================================
  4. //= Evera and The eAthena Dev Team
  5. //===== Current Version: =====================================
  6. //= 1.4.2
  7. //===== Compatible With: =====================================
  8. //= eAthena 7.15 +
  9. //===== Description: =========================================
  10. //= Shinokas Quest, Einbroch Lover Quest, Factory Quest,
  11. //= Uwe Quest.
  12. //===== Additional Comments: =================================
  13. //= 1.0 Initial Release [Evera]
  14. //= 1.1 Added more quests [Evera]
  15. //= 1.2 Added quest bits from Einbech and renamed file to
  16. //= quests_ein.txt [Evera]
  17. //= 1.3 Implemented the polution quest. [MasterOfMuppets]
  18. //= 1.4.1 Massive bugfix. Fixed Pollution exploit [Lupus]
  19. //= 1.4.2 Fixed Khowropher bug [Lupus]
  20. //============================================================
  21. //============================================================
  22. //=================================================== Shinokas
  23. //====================================================== Quest
  24. ein_in01.gat,231,163,1 script Sick Old Man 849,6,6,{
  25. if(Shinokas_Quest == 9){
  26. mes "^3131FFShinokas's";
  27. mes "body has grown";
  28. mes "cold to the tough.";
  29. close;
  30. }
  31. if(Shinokas_Quest == 8){
  32. mes "["+strcharinfo(0)+"]";
  33. mes "Shinokas,";
  34. mes "I found something!";
  35. next;
  36. mes "[Shinokas]";
  37. mes "You...";
  38. mes "Came... back...";
  39. mes "Even... if... it's";
  40. mes "already... Too late.";
  41. mes "*Couhg Cough*";
  42. next;
  43. mes "^3131FFYou help Shinokas";
  44. mes "sit up, but find that";
  45. mes "your hands have been";
  46. mes "stained with his blood.^000000";
  47. next;
  48. mes "["+strcharinfo(0)+"]";
  49. mes "Blood...?!";
  50. mes "Shinokas!";
  51. mes "Who did this to you?";
  52. mes "W-we need to call for help!";
  53. next;
  54. mes "[Shinokas]";
  55. mes "No...";
  56. mes "It's already";
  57. mes "too late for me.";
  58. mes "I should have died";
  59. mes "a long time ago...";
  60. next;
  61. mes "[Shinokas]";
  62. mes "*Cough*";
  63. mes "I only regret that";
  64. mes "I've never been able";
  65. mes "to apologize to my";
  66. mes "friends... *Cough!*";
  67. next;
  68. mes "[Shinokas]";
  69. mes "But did you";
  70. mes "find out? D-did";
  71. mes "you find out what's";
  72. mes "so special about";
  73. mes "that ore? W-what";
  74. mes "is it... Really?";
  75. next;
  76. mes "["+strcharinfo(0)+"]";
  77. mes "It was...";
  78. next;
  79. input @text$;
  80. mes "^0000FF"+@text$+"^000000!";
  81. next;
  82. mes "[Shinokas]";
  83. mes "W-wait...!";
  84. mes "What did...";
  85. mes "I can't underst--";
  86. mes "*Couhgh cough!*";
  87. next;
  88. mes "["+strcharinfo(0)+"]";
  89. mes "No...!";
  90. mes "Tell me who";
  91. mes "did this to you!";
  92. mes "Where are they?";
  93. mes "Speak to me, please!";
  94. next;
  95. mes "[Shinokas]";
  96. mes "W-wha...?";
  97. mes "I told you.";
  98. mes "Th-they we--";
  99. next;
  100. mes "[Shinokas]";
  101. mes "...";
  102. mes "......";
  103. next;
  104. mes "["+strcharinfo(0)+"]";
  105. mes "No!";
  106. mes "Shinokas!";
  107. mes "Why, God?";
  108. mes "Why...";
  109. set Shinokas_Quest,9;
  110. close;
  111. }
  112. if(Shinokas_Quest == 7){
  113. mes "[Shinokas]";
  114. mes "...";
  115. mes "......";
  116. close;
  117. }
  118. if(Shinokas_Quest == 6){
  119. mes "[Shinokas]";
  120. mes "So...?";
  121. mes "Did you learn";
  122. mes "anything new";
  123. mes "in the Factory?";
  124. next;
  125. mes "["+strcharinfo(0)+"]";
  126. if(EinFactory != 16){
  127. mes "I haven't went there";
  128. mes "yet.";
  129. next;
  130. mes "[Shinokas]";
  131. mes "Then why did you come";
  132. mes "back? Go and investigate";
  133. mes "the factory now.";
  134. close;
  135. }
  136. mes "Well...";
  137. mes "There's a lot of";
  138. mes "suspicious business";
  139. mes "in the factory, but I don't";
  140. mes "think any of it is related";
  141. mes "to that ore you mentioned.";
  142. next;
  143. mes "[Shinokas]";
  144. mes "Damn it...";
  145. mes "Then where did";
  146. mes "they hide it? Where";
  147. mes "do you think that";
  148. mes "ore might be?";
  149. next;
  150. while(1){
  151. switch(select("Airport:Factory:Train Station:Airship Repairshop:Laboratory")){
  152. case 1: //airport
  153. mes "[Shinokas]";
  154. mes "No...";
  155. mes "The Airport is always";
  156. mes "crowded with people.";
  157. mes "It'd be a bad idea to hide";
  158. mes "something so important";
  159. mes "in that kind of place.";
  160. next;
  161. break;
  162. case 2: //factory
  163. mes "[Shinokas]";
  164. mes "Didn't you just";
  165. mes "check the factory?";
  166. mes "You couldn't find";
  167. mes "any clues to the";
  168. mes "ore over there...";
  169. next;
  170. break;
  171. case 3: //train
  172. mes "[Shinokas]";
  173. mes "Hmm...";
  174. mes "People are always going";
  175. mes "in and out of the Train Station.";
  176. mes "It's not the best place to hide";
  177. mes "something as important as the ore.";
  178. next;
  179. break;
  180. case 4: //repairshop
  181. mes "The Airship? Hm, it does";
  182. mes "fly through some mysterious";
  183. mes "power... But I already checked";
  184. mes "the Airship Replairshop myself.";
  185. mes "I haven't found any trace of";
  186. mes "the ore over there.";
  187. next;
  188. break;
  189. case 5: //Laboratory
  190. mes "[Shinokas]";
  191. mes "...!";
  192. mes "Yes. Yes...!";
  193. mes "That could be it!";
  194. mes "Why didn't I think";
  195. mes "about the Laboratory?";
  196. mes "It makes so much sense!";
  197. next;
  198. mes "[Shinokas]";
  199. mes "I have a good feeling";
  200. mes "about this. Please sneak";
  201. mes "into that Laboratory and";
  202. mes "see if you can find the ore!";
  203. next;
  204. mes "[Shinokas]";
  205. mes "Remember...";
  206. mes "Not just anybody";
  207. mes "can enter that kind";
  208. mes "of place. But I'm sure";
  209. mes "you'll figure something out.";
  210. set Shinokas_Quest,7;
  211. close;
  212. }
  213. }
  214. }
  215. if(Shinokas_Quest == 5){
  216. mes "[Shinokas]";
  217. mes "So, did you find";
  218. mes "anything from the";
  219. mes "Kapellthaines?";
  220. next;
  221. mes "["+strcharinfo(0)+"]";
  222. mes "Well, Mr. Kapelltheine";
  223. mes "is kind of violent, but";
  224. mes "I didn't find anything";
  225. mes "really suspicious.";
  226. next;
  227. mes "[Shinokas]";
  228. mes "Huh...";
  229. mes "I must have";
  230. mes "been wrong, then...";
  231. mes "Where else could it be?";
  232. next;
  233. mes "[Shinokas]";
  234. mes "Oh, right! The huge";
  235. mes "factory in Einbroch!";
  236. mes "What could be more";
  237. mes "suspicious? There's a ton";
  238. mes "of workers, but no one really";
  239. mes "knows what they do there...";
  240. next;
  241. mes "[Shinokas]";
  242. mes "If they're so secretive";
  243. mes "it's possible that they're";
  244. mes "keeping the ore over there.";
  245. mes "Please go and search the";
  246. mes "Factory for that ore as";
  247. mes "soon as you can.";
  248. set Shinokas_Quest,6;
  249. close;
  250. }
  251. if(Shinokas_Quest == 4){
  252. mes "[Shinokas]";
  253. mes "Please...";
  254. mes "Find out if the Kapelltheines";
  255. mes "are keeping some kind of unique";
  256. mes "ore. Their manor is on the road";
  257. mes "that leads to the Airport.";
  258. close;
  259. }
  260. mes "[Sick Old Man]";
  261. mes "...!";
  262. next;
  263. mes "[Sick Old Man]";
  264. mes "Awwwk~";
  265. mes "It's killing me!";
  266. mes "Arrrgh! Awwwrgh!";
  267. mes "W-when will my son";
  268. mes "come back from";
  269. mes "the factory...?!";
  270. next;
  271. if(Shinokas_Quest != 3){
  272. mes "^3131FFYou feel really awkward";
  273. mes "just staring at this old";
  274. mes "man violently rolling";
  275. mes "around in his bed.";
  276. close;
  277. }
  278. mes "["+strcharinfo(0)+"]";
  279. mes "Shi...";
  280. mes "Shinokas?";
  281. next;
  282. mes "[Sick Old Man]";
  283. mes "Huh...?";
  284. mes "Noooo! My name is";
  285. mes "Shinotarous. Y-you've";
  286. mes "got the wrong person!";
  287. next;
  288. mes "["+strcharinfo(0)+"]";
  289. mes "This has to be the";
  290. mes "Shinokas that Hikeman";
  291. mes "was talking about in Einbech";
  292. mes "Hmmm, but how can I get";
  293. mes "him to admit it?";
  294. next;
  295. mes "["+strcharinfo(0)+"]";
  296. mes "*Ahem!*";
  297. mes "Excuse me...";
  298. next;
  299. while(1){
  300. switch(select("Remember the mine tunnel collapse?:Didn't you used to be a miner?:Have you lived in Einbroch all your life?")){
  301. case 1: //remember
  302. if(@shinqst2 > 4 || @shinqst3 > 4) goto L_Cont;
  303. mes "[Sick Old Man]";
  304. mes "Noooo!";
  305. mes "I don't know";
  306. mes "what the hell";
  307. mes "you're talking";
  308. mes "about!";
  309. next;
  310. break;
  311. case 2: //miner
  312. if(@shinqst2 > 1)goto s_Quest2;
  313. mes "[Sick Old Man]";
  314. mes "Noooo...!";
  315. mes "W-why would you";
  316. mes "even ask me that";
  317. mes "kind of question?!";
  318. s_Quest2:
  319. set @shinqst2,@shinqst2 + 1;
  320. if(@shinqst3)set @shinqst3,0;
  321. next;
  322. break;
  323. case 3: //einbroch
  324. if(@shinqst3 > 1)goto s_Quest3;
  325. mes "[Sick Old Man]";
  326. mes "Y-yes!";
  327. mes "Born and raised";
  328. mes "raised here in";
  329. mes "Einbe--Einbroch!";
  330. next;
  331. mes "^3131FFIt doesn't seem";
  332. mes "like this old man";
  333. mes "is telling the truth...";
  334. s_Quest3:
  335. set @shinqst3,@shinqst3 + 1;
  336. if(@shinqst2)set @shinqst2,0;
  337. next;
  338. break;
  339. }
  340. }
  341. L_Cont:
  342. mes "[Shinokas]";
  343. mes "Hmm...";
  344. mes "^0000FFBuender Hikeman^000000...";
  345. next;
  346. mes "[Shinokas]";
  347. mes "No!";
  348. mes "I've never met";
  349. mes "Buender Hikeman";
  350. mes "in my entire li--";
  351. next;
  352. mes "[Shinokas]";
  353. mes "...";
  354. mes "......";
  355. next;
  356. mes "["+strcharinfo(0)+"]";
  357. mes "I was right!";
  358. mes "You're Shinokas!";
  359. next;
  360. mes "[Shinokas]";
  361. mes "Curses!";
  362. mes "I've blown";
  363. mes "my cover!";
  364. mes "W-wait! How much";
  365. mes "do you know?!";
  366. next;
  367. mes "[Shinokas]";
  368. mes "Did ^0000FFthey^000000 send you?";
  369. mes "*Sigh* I think that this";
  370. mes "is it. I'll never be";
  371. mes "able to solve the";
  372. mes "secret before I die.";
  373. next;
  374. mes "[Shinokas]";
  375. mes "Okay.";
  376. mes "Get on with it.";
  377. mes "I'm ready now...";
  378. next;
  379. mes "["+strcharinfo(0)+"]";
  380. mes "Tell me everything";
  381. mes "you know related to";
  382. mes "that incident where";
  383. mes "the mine tunnel";
  384. mes "collapsed around";
  385. mes "you and Hikeman.";
  386. next;
  387. mes "[Shinokas]";
  388. mes "...?";
  389. mes "Errr....";
  390. mes "You're not";
  391. mes "here to kill me?";
  392. next;
  393. mes "["+strcharinfo(0)+"]";
  394. mes "No...!";
  395. mes "I'm here to find";
  396. mes "out the truth";
  397. next;
  398. mes "[Shinokas]";
  399. mes "That means...";
  400. mes "I still have some time.";
  401. mes "This must be destiny!";
  402. mes "Allright, I'll tell you what";
  403. mes "happened. But it's a";
  404. mes "long story...";
  405. next;
  406. mes "[Shinokas]";
  407. mes "How much do you know";
  408. mes "about the accident? No,";
  409. mes "wait. Don't answer that.";
  410. mes "I don't want to hear it";
  411. next;
  412. mes "[Shinokas]";
  413. mes "I admit it. Yes.";
  414. mes "I stabbed my friends";
  415. mes "in the back. It was an";
  416. mes "unforgivable sin that will";
  417. mes "haunt me untill the day that I die";
  418. next;
  419. mes "[Shinokas]";
  420. mes "I sold out my friends for";
  421. mes "money. I destroyed that";
  422. mes "tunnel and killed them. But";
  423. mes "I suppose I was tricked as well.";
  424. mes "^0000FFThey^000000 never intended to keep";
  425. mes "their end of our agreement.";
  426. next;
  427. mes "[Shinokas]";
  428. mes "After I destroyed the tunnel,";
  429. mes "they targeted me and I ended";
  430. mes "spending the rest of my life being";
  431. mes "pursued and running for place to";
  432. mes "place. What the hell was that ^0000FFore^000000";
  433. mes "and why was it so important?";
  434. next;
  435. mes "[Shinokas]";
  436. mes "I need to know more about";
  437. mes "that ore if it's worth killing for.";
  438. mes "That's why I've risked sneaking";
  439. mes "into Einbroch. Sopposedly, an ore";
  440. mes "similar to the ore we found has";
  441. mes "been transported here recently";
  442. next;
  443. menu "Did you find it?",-;
  444. mes "[Shinokas]";
  445. mes "No, not yet.";
  446. mes "I've been searching";
  447. mes "for that ore every night.";
  448. mes "During the day, this kind";
  449. mes "blacksmith has managed";
  450. mes "to hide me from those men";
  451. next;
  452. mes "[Shinokas]";
  453. mes "But I won't be safe";
  454. mes "for very long. Look, I'm";
  455. mes "no saint, but before I die,";
  456. mes "I wanna do this one last";
  457. mes "thing and see what's so";
  458. mes "great about this ore...";
  459. next;
  460. menu "Wait, who's trying to get you?",-;
  461. mes "[Shinokas]";
  462. mes "Who's trying to kill me?";
  463. mes "The people who hired me and";
  464. mes "my friends to dig up that ore in";
  465. mes "the first place. We thought they";
  466. mes "were ordinary businessmen,";
  467. mes "but... They're dangerous.";
  468. next;
  469. mes "[Shinokas]";
  470. mes "So I told you everything";
  471. mes "and now you know that my";
  472. mes "day might be numbered.";
  473. mes "Please do an old man a favor";
  474. mes "and search Einbroch for that";
  475. mes "strange, mysterious ore.";
  476. next;
  477. mes "[Shinokas]";
  478. mes "Now, the first thing I learned";
  479. mes "in this tows is that the richest";
  480. mes "family is the Kapelltheines. Only";
  481. mes "the rich and powerful can possibly";
  482. mes "be involved in something so big.";
  483. next;
  484. mes "[Shinokas]";
  485. mes "Would you search";
  486. mes "Kappelltheine Manor";
  487. mes "for that ore? It's on the way";
  488. mes "to the Airport and it shouldn't be";
  489. mes "hard to miss. They're the richest";
  490. mes "people in Einbroch, after all.";
  491. next;
  492. mes "[Shinokas]";
  493. mes "I'm too old and weak to leave";
  494. mes "this house, and there's the change";
  495. mes "that those men will find me. If you";
  496. mes "can sympathize with my situation,";
  497. mes "please find out if the Kapelltheine";
  498. mes "family has any unique ores...";
  499. set Shinokas_Quest,4;
  500. close;
  501. OnTouch:
  502. if(Shinokas_Quest != 8) end;
  503. mes "^3131FFThe open window rattles";
  504. mes "as you enter the room and";
  505. mes "are welcomed by a sudden";
  506. mes "chill. A trail of red footprints";
  507. mes "lies near your feet.";
  508. next;
  509. mes "^3131FFA grey sheet lies";
  510. mes "rumpled on the bed,";
  511. mes "but you can see dark red";
  512. mes "stains in between the folds.";
  513. //set ein_lab,3; //wth? -Yhn
  514. close;
  515. }
  516. ein_in01.gat,32,133,6 script Maid 850,{
  517. mes "[Maid]";
  518. if(Shinokas_Quest != 4){
  519. mes "There's no end";
  520. mes "to all these plates";
  521. mes "I have to clean...!";
  522. close;
  523. }
  524. mes "Did you ask me";
  525. mes "if I saw some kind";
  526. mes "of ore around here?";
  527. mes "That's strange...";
  528. next;
  529. mes "[Maid]";
  530. mes "Will, I've been with";
  531. mes "this family for a long";
  532. mes "time. Let me assure you";
  533. mes "that there's no secrets";
  534. mes "from me in this household!";
  535. next;
  536. mes "[Maid]";
  537. mes "I'm sorry, but I don't";
  538. mes "think we have any ores,";
  539. mes "special or otherwise, here";
  540. mes "in the manor. What exactly";
  541. mes "do you need them for?";
  542. set Shinokas_Quest,5;
  543. close;
  544. }
  545. einbroch.gat,51,52,1 script lab_warp 45,2,2{
  546. if(Shinokas_Quest != 7){
  547. mes "^3131FFThe door is locked.";
  548. mes "You cannot enter.";
  549. close;
  550. }
  551. mes "[Security System]";
  552. mes "^FF0000*Beep Boop*^000000";
  553. mes "Restricted Access Area.";
  554. mes "Please identify yourself";
  555. mes "through the system.";
  556. next;
  557. switch(select("Identify.:Information:Cancel")){
  558. case 1: //Identify
  559. break; //continue after switch =\
  560. case 2: //information
  561. mes "[Security System]";
  562. mes "You must use the";
  563. mes "security system in order";
  564. mes "to gain access into the";
  565. mes "Einbroch Laboratory.";
  566. next;
  567. mes "[Security System]";
  568. mes "You will be given";
  569. mes "a password that you";
  570. mes "must input correctly";
  571. mes "withing 60 seconds.";
  572. mes "Otherwise, you will";
  573. mes "fail the security check.";
  574. //hell of a security system ye got there mate
  575. //wonder if gravity co has the same sort? xD
  576. next;
  577. mes "[Security System]";
  578. mes "If you take longer";
  579. mes "then 3 minutes to";
  580. mes "enter the password,";
  581. mes "the security system";
  582. mes "will initiate lockout.";
  583. close;
  584. case 3: //cancel
  585. mes "[Security System]";
  586. mes "You have canceled";
  587. mes "the ID security check.";
  588. close;
  589. }
  590. //ID check:
  591. mes "[Security System]";
  592. mes "Enter the following";
  593. mes "password in 60 seconds.";
  594. mes "Failure to do so will result";
  595. mes "in lockout. Please wait.";
  596. next;
  597. mes "[Security System]";
  598. set @startseconds,gettime(3)*60*60+gettime(2)*60+gettime(1);
  599. switch(rand(1,11)){
  600. case 1:
  601. mes "^00CCFFburrdingdingdilidingdingphoohudaamb";
  602. mes "^00CCFFandoora^0000FFbambarambambamburanbamding";
  603. input @str$;
  604. if(@str$ != "burrdindingdilidingdingphoohudaambandoorabambarambambamburanbamding") goto L_SCFail;
  605. goto L_Suc;
  606. case 2:
  607. mes "^FF33CCbarapaphurarlandreamduranbatuhi^990066wooi";
  608. mes "^990066kabamturubamdingding";
  609. next;
  610. input @str$;
  611. if(@str$ != "barapaphurarlandreamduranbatuhiwooikabamturubamdingding") goto L_SCFail;
  612. goto L_Suc;
  613. case 3:
  614. mes "^00CCFFbelief love luck grimace sweat rush";
  615. mes "^00CCFFfolktale rodimus optimus burnblebe";
  616. input @str$;
  617. if(@str$ != "belief love luck grimace sweat rush folktale rodimus optimus burnblebe") goto L_SCFail;
  618. goto L_Suc;
  619. case 4:
  620. mes "^FF33CCLiGhTsPeEd RiGhT SPEed leFT TURn";
  621. mes "^FF33CCRiGhT BuRn OrIGInAL GaNgSteR SmACk";
  622. input @str$;
  623. if(@str$ != "LiGhTsPeEd RiGhT SPEed leFT TURn RiGhT BuRn OrIGInAL GaNgSteR SmACk") goto L_SCFail;
  624. goto L_Suc;
  625. case 5:
  626. mes "^00CCFFCoboman no chikara-yumei na";
  627. mes "^00CCFFchikara-daiookii na chikara da ze!";
  628. mes "^00CCFFCOBO ON";
  629. input @str$;
  630. if(@str$ != "Coboman no chikara-yumei na chikara-daiookii na chikara da ze! COBO ON") goto L_SCFail;
  631. goto L_Suc;
  632. case 6:
  633. mes "^FF33CChfjdkeldjs^990066hfjdjeiskdlefvbd";
  634. input @str$;
  635. if(@str$ != "hfjdkeldjshfjdjeiskdlefvbd") goto L_SCFail;
  636. goto L_Suc;
  637. case 7:
  638. mes "^00CCFFI'm the King of all Weirdos! Now";
  639. mes "^00CCFFyou know of my true power. Obey~!";
  640. input @str$;
  641. if(@str$ != "I'm the King of all Weirdos! Now you know of my true power. Obey~!") goto L_SCFail;
  642. goto L_Suc;
  643. case 8:
  644. mes "^990066uNflAPPaBLe LoVaBLe SeCreTs AnD";
  645. mes "^990066BoWLiNg aGaINST tHe KarMA of YoUtH";
  646. input @str$;
  647. if(@str$ != "uNflAPPaBLe LoVaBLe SeCreTs AnD BoWLiNg aGaINST tHe KarMA if YoUtH") goto L_SCFail;
  648. goto L_Suc;
  649. case 9:
  650. mes "^00CCFFBy the power of^000000";
  651. mes "^00CCFFp-po-poi-po-poi-poin-poing";
  652. mes "^00CCFFGOD-POING. I NEVER LOSE!";
  653. input @str$;
  654. if(@str$ != "By the power of p-po-poi-po-poi-poin-poing GOD-POING. I NEVER LOSE!") goto L_SCFail;
  655. goto L_Suc;
  656. case 10:
  657. mes "^00CCFF...silence. quiet benevolence...";
  658. mes "^00CCFFsoul mate... wonder. enigma...";
  659. mes "^00CCFFcloud.^000000";
  660. input @str$;
  661. if(@str$ != "...silence. quiet benevolence... soul mate... wonder. enigma... cloud") goto L_SCFail;
  662. goto L_Suc;
  663. case 11:
  664. mes "^FF33CCopeN,Open!op3n.openOpen0p3nOpEn0pen";
  665. mes "^FF33CC`open'0Pen open?open!111OPENSESAME";
  666. input @str$;
  667. if(@str$ != "opeN,Open!op3n.openOpenOp3nIoEnOpen`open'0Pen open?open!111OPENSESAME") goto L_SCFail;
  668. goto L_Suc;
  669. }
  670. L_Suc:
  671. next;
  672. set @endtime,gettime(3)*60*60+gettime(2)*60+gettime(1);
  673. set @time,@endtime-@startseconds;
  674. if(@time > 60) goto L_SC60;
  675. mes "[Security System]";
  676. mes "It took ^FF0000"+@time+" seconds^000000";
  677. mes "for you to enter the";
  678. mes "password. Initiating";
  679. mes "override. Access granted.";
  680. close2;
  681. warp "ein_in01.gat",283,25;
  682. end;
  683. L_SC60:
  684. mes "[Security System]";
  685. mes "Time over.";
  686. mes "It took ^FF0000"+@time+" seconds^000000";
  687. mes "for you to enter the";
  688. mes "password. Initiating";
  689. mes "lockout. Access denied.";
  690. close;
  691. L_SCFail:
  692. next;
  693. mes "[Security System]";
  694. mes "You have failed";
  695. mes "the identification";
  696. mes "check. Access denied.";
  697. close;
  698. }
  699. einbroch.gat,51,56,6 script Laboratory Soldier#01 852,{
  700. mes "[Laboratory Soldier]";
  701. mes "This area is off limits.";
  702. mes "Please leave";
  703. mes "immediately";
  704. close;
  705. OnHide:
  706. specialeffect 16;
  707. disablenpc "Laboratory Soldier#01";
  708. end;
  709. OnUnhide:
  710. misceffect 215;
  711. end;
  712. }
  713. einbroch.gat,51,47,6 script Laboratory Soldier#02 852,{
  714. mes "[Laboratory Soldier]";
  715. mes "This area is off limits.";
  716. mes "Please leave";
  717. mes "immediately";
  718. close;
  719. OnHide:
  720. specialeffect 16;
  721. disablenpc "Laboratory Soldier#02";
  722. end;
  723. OnUnhide:
  724. misceffect 215;
  725. end;
  726. }
  727. ein_in01.gat,254,35,1 script Scientist 749,{
  728. mes "[Scientist]";
  729. mes "*Grumble grumble*";
  730. next;
  731. if(ein_scientist == 1) goto L_P2;
  732. mes "[Scientist]";
  733. mes "Huh...?";
  734. mes "How did you";
  735. mes "get in here?";
  736. next;
  737. mes "["+strcharinfo(0)+"]";
  738. mes "Oh! Ah...";
  739. mes "I'm the new...";
  740. mes "Guard. Nice";
  741. mes "to meet you.";
  742. next;
  743. mes "[Scientist]";
  744. mes "Oh. Yeah.";
  745. mes "Nice-meet-you";
  746. mes "..............";
  747. mes "*Grumble grumble*";
  748. next;
  749. if(select("What's wrong?:Catch you later.")==2){
  750. mes "[Scientist]";
  751. mes "Right.";
  752. mes "Yeah.";
  753. mes "Later, man.";
  754. close;
  755. }
  756. mes "[Scientist]";
  757. mes "What's wrong...?!";
  758. mes "Oh, don't get me started!";
  759. mes "I'm stuck here doing all the";
  760. mes "work while the Lab Departement";
  761. mes "Head goes out every freakin' day!";
  762. next;
  763. mes "[Scientist]";
  764. mes "While I'm slaving";
  765. mes "away here, he's in";
  766. mes "that Airship, busy";
  767. mes "flirting with that";
  768. mes "woman. God...!";
  769. mes "I'm like, so teed off!";
  770. set ein_scientist,1;
  771. close;
  772. L_P2:
  773. mes "[Scientist]";
  774. mes "Man alive!";
  775. mes "Would it kill the";
  776. mes "Department Head";
  777. mes "to come in here and do";
  778. mes "some work for a change?!";
  779. next;
  780. mes "[Scientist]";
  781. mes "I mean, come on!";
  782. mes "I shouldn't have to";
  783. mes "carry his workload!";
  784. close;
  785. }
  786. ein_in01.gat,266,26,1 script Unknown Stuff 111,{
  787. mes "^3131FFThere's something";
  788. mes "attached to a huge";
  789. mes "machine with many cords";
  790. mes "and folds of barbed wire";
  791. set ein_stuff,1;
  792. close;
  793. }
  794. airplane.gat,31,77,4 script Drunken Man#03 853,{
  795. if(Shinokas_Quest >= 8){
  796. mes "[Drunken Man]";
  797. mes "Hahahahaha!";
  798. mes "You're great!";
  799. mes "I feel great!";
  800. mes "Everything's great!";
  801. mes "Bwahahahaahahah!";
  802. mes "*Hiccup*";
  803. close;
  804. }
  805. mes "[Drunken Man]";
  806. mes "Okay okay...";
  807. mes "Daddy's gonna";
  808. mes "win some Apples";
  809. mes "this time for sure!";
  810. next;
  811. if(ein_stuff && ein_scientist){
  812. mes "[Drunken Man]";
  813. mes "Let's do it!";
  814. mes "^3131FFYmir's Heart^000000 is";
  815. mes "on my side! GO!";
  816. next;
  817. mes "["+strcharinfo(0)+"]";
  818. mes "Huh...?";
  819. mes "What did he just say?";
  820. mes "It seemed important!";
  821. next;
  822. }
  823. mes "^0000FF*Rolling and rumbling*^000000";
  824. next;
  825. mes "[Kaci]";
  826. mes "I have a total of ^FF000011^000000";
  827. mes "and you have total ^FF00005^000000.";
  828. mes "You lose this game. I'm";
  829. mes "sorry, but I hope we play";
  830. mes "again sometime.";
  831. donpcevent "Kaci::OnLose";
  832. next;
  833. mes "[Drunken Man]";
  834. mes "Waaaaaahhhhhhhhh!";
  835. mes "Apples! My apples!";
  836. mes "Apples, I need more...!";
  837. if(countitem(512) && ein_stuff && ein_scientist) goto L_Apples;
  838. close;
  839. L_Apples:
  840. next;
  841. mes "["+strcharinfo(0)+"]";
  842. mes "Do you want";
  843. mes "some of mine?";
  844. next;
  845. if(countitem(512) <100){
  846. mes "[Drunken Man]";
  847. mes "What...?";
  848. mes "I can't do anything";
  849. mes "with so few Apples!";
  850. mes "I'm a high roller and";
  851. mes "this is a high stakes game!";
  852. close;
  853. }
  854. mes "[Drunken Man]";
  855. mes "Wha--? Yes...";
  856. mes "Hell yes! Gimme";
  857. mes "some of your Apples!";
  858. mes "Yeeeeeeeeeeehaw!";
  859. mes "I'm back, baby!";
  860. next;
  861. mes "[Drunken Man]";
  862. mes "Now, to win!";
  863. mes "Daddy needs love...";
  864. mes "Time to go from";
  865. mes "crappy to classy!";
  866. next;
  867. mes "^0000FF*Rolling and rumbling*^000000";
  868. next;
  869. delitem 512,countitem(512);
  870. set @kaci,rand(2,12);
  871. set @man,rand(2,12);
  872. if(@man == @kaci){
  873. if(rand(2)){
  874. if(@man != 12)
  875. set @man,@man+1;
  876. else
  877. set @man,@man-1;
  878. }else{
  879. if(@man != 2)
  880. set @man,@man-1;
  881. else
  882. set @man,@man+1;
  883. }
  884. }
  885. mes "[Kaci]";
  886. mes "Oooh...";
  887. mes "I got a total of ^FF0000"+@kaci+"^000000,";
  888. mes "and you have a total of ^FF0000"+@man+"^000000.";
  889. if(@man < @kaci){
  890. mes "I'm sorry, but you lose";
  891. mes "again. Better luck next time...";
  892. donpcevent "Kaci::OnLose";
  893. next;
  894. mes "[Drunken Man]";
  895. mes "Waaaaaahhhhhhhhhhhh!";
  896. mes "Waaaaaaaahhhhhhh!";
  897. close;
  898. }
  899. mes "Congratulations, you won!";
  900. mes "Let me give you your winning";
  901. mes "and we'll play again some time~";
  902. donpcevent "Kaci::OnWin";
  903. next;
  904. mes "[Drunken Man]";
  905. mes "Mwahhhahahahaha!";
  906. mes "Whahahahahahahahaha!";
  907. mes "That's why they call me";
  908. mes "the 'Resurrection Kid!'";
  909. mes "I always come back!";
  910. next;
  911. mes "[Drunken Man]";
  912. mes "Oh yes, right!";
  913. mes "You...! You lent";
  914. mes "me those lucky";
  915. mes "Apples. ^111111*Hiccup*^000000";
  916. next;
  917. mes "[Drunken Man]";
  918. mes "I'm Kurschenburg!";
  919. mes "Thanks to you, I'm";
  920. mes "on a winning streak!";
  921. mes "Hahaha! Th-thank you~";
  922. mes "^111111*Hic-hic-hiccup!*^000000";
  923. next;
  924. if(select("So what was that about Ymir's Heart?:Hehe, you're welcome.")==2){
  925. mes "[Drunken Man]";
  926. mes "Hahahaha!";
  927. mes "You're great!";
  928. mes "And I feel great!";
  929. mes "Bwahahahaahahah!";
  930. mes "^111111*Hiccup*^000000";
  931. close;
  932. }
  933. mes "[Drunken Man]";
  934. mes "What...?";
  935. mes "Ymir's Heart?";
  936. mes "How do you know";
  937. mes "about that? ^111111*Hiccup*^000000";
  938. next;
  939. mes "["+strcharinfo(0)+"]";
  940. mes "Y-you...!";
  941. mes "You were just yelling,";
  942. mes "'Ymir's Heart is on my";
  943. mes "side,' while you were";
  944. mes "gambling with those Apples!";
  945. next;
  946. mes "[Drunken Man]";
  947. mes "What...?!";
  948. mes "No way~";
  949. mes "Err...? Did I...?";
  950. next;
  951. mes "[Drunken Man]";
  952. mes "Heh heh...";
  953. mes "I'm not really";
  954. mes "supposed to be talking";
  955. mes "about this. As head of";
  956. mes "the Laboratory, I'm sworn";
  957. mes "to secrecy about Ymir's Heart.";
  958. next;
  959. mes "[Drunken Man]";
  960. mes "But what do I care?!";
  961. mes "All they want are the";
  962. mes "results of my research!";
  963. mes "They don't appreciate";
  964. mes "my work at all! My title";
  965. mes "is completely worthless!";
  966. next;
  967. mes "[Drunken Man]";
  968. mes "You don't know how long I've";
  969. mes "been imprisoned in the lab and";
  970. mes "that the work conditions just get";
  971. mes "worse and worse. Screw them! I'll";
  972. mes "keep getting paid as long as I show";
  973. mes "them some progress in our project!";
  974. next;
  975. menu "Project?",-;
  976. mes "[Drunken Man]";
  977. mes "Yeah, we're researching";
  978. mes "Ymir's Heart. It was found";
  979. mes "a long time ago in ^3131FFEinbech^000000";
  980. mes "and it's in our lab now.";
  981. next;
  982. mes "[Drunken Man]";
  983. mes "Everyone knows it's supposed";
  984. mes "to hold some legendary power,";
  985. mes "but even I was surprised to see";
  986. mes "what it was capable of. It's both";
  987. mes "terrible and miraculous, scary";
  988. mes "and wondrous...";
  989. next;
  990. mes "[Drunken Man]";
  991. mes "So...";
  992. mes "I figure...";
  993. mes "It may even";
  994. mes "have the power to";
  995. mes "win me Dice games!";
  996. mes "Bwahaha--*Hiccup!*";
  997. next;
  998. mes "["+strcharinfo(0)+"]";
  999. mes "(That thing I saw";
  1000. mes "hooked up to all those";
  1001. mes "wires in the Laboratory";
  1002. mes "must have been a piece";
  1003. mes "of ^3131FFYmir's Heart^000000. I better";
  1004. mes "tell Shinokas about this.)";
  1005. set Shinokas_Quest,8;
  1006. //cleaning temp variables from the lab.
  1007. set ein_stuff,0;
  1008. set ein_scientist,0;
  1009. close;
  1010. }
  1011. einbech.gat,57,210,4 script Young Man#04 854,{
  1012. mes "[Young Man]";
  1013. mes "Behind the pub,";
  1014. mes "you'll see this old man";
  1015. mes "who's always mumbling";
  1016. mes "something to himself.";
  1017. next;
  1018. mes "[Young Man]";
  1019. mes "Sometimes he seems really";
  1020. mes "angry, but other times he looks";
  1021. mes "awfully depressed. He must have";
  1022. mes "lived through some really horrible";
  1023. mes "experiences. I can't help but feel";
  1024. mes "really sorry for the old guy.";
  1025. next;
  1026. mes "[Young Man]";
  1027. mes "He says and does";
  1028. mes "a lot of strange things.";
  1029. mes "It's sad to see someone";
  1030. mes "that old act that way, but";
  1031. mes "it makes me wonder what";
  1032. mes "could have happened to him.";
  1033. if(!Shinokas_Quest)set Shinokas_Quest,1;
  1034. close;
  1035. }
  1036. einbech.gat,165,105,7 script Buender Hikeman 847,{
  1037. if(Shinokas_Quest == 9) goto L_P2;
  1038. if(Shinokas_Quest == 3)goto L_BEST;
  1039. if(Shinokas_Quest == 2)goto L_BASTARD;
  1040. mes "[Buender Hikeman]";
  1041. mes "...";
  1042. mes "......";
  1043. if(!Shinokas_Quest)close;
  1044. next;
  1045. mes "[Buender Hikeman]";
  1046. mes "...";
  1047. mes "......";
  1048. mes "......You...";
  1049. next;
  1050. mes "[Buender Hikeman]";
  1051. mes "...";
  1052. mes "......";
  1053. mes "......You...";
  1054. mes "......Stop it...";
  1055. next;
  1056. mes "[Buender Hikeman]";
  1057. mes "...";
  1058. mes "......";
  1059. mes "......You...";
  1060. mes "......Stop it...";
  1061. mes "...You ^FF0000bastard^000000!";
  1062. next;
  1063. mes "[Buender Hikeman]";
  1064. mes "RaaaaAAAARGHHH!!";
  1065. next;
  1066. mes "[Buender Hikeman]";
  1067. mes "^0000FFThe old man seems^000000";
  1068. mes "^0000FFslightly irked at seeing^000000";
  1069. mes "^0000FFyou. Unfortunately, his^000000";
  1070. mes "^0000FFscreaming and rambling^000000";
  1071. mes "^0000FFis totally incoherent.^000000";
  1072. next;
  1073. mes "[Buender Hikeman]";
  1074. mes "It ^FF0000is^000000 you!";
  1075. mes "You're responsible!";
  1076. mes "You've taken everything";
  1077. mes "away from me!!";
  1078. next;
  1079. menu "What are you talking about?",L_WHAT,"Ignore Him.",-;
  1080. mes "[Buender Hikeman]";
  1081. mes "W...wait!";
  1082. mes "I said wait!";
  1083. mes "*Cough!*";
  1084. close;
  1085. L_WHAT:
  1086. mes "[Buender Hikeman]";
  1087. mes "How dare you...";
  1088. mes "How dare you treat";
  1089. mes "after destroying all the";
  1090. mes "happiness in my life!";
  1091. next;
  1092. mes "[Buender Hikeman]";
  1093. mes "Damn you...";
  1094. mes "How can you have";
  1095. mes "the audacity to pretend";
  1096. mes "as if nothing happened?!";
  1097. mes "*C-cough Cough...*";
  1098. next;
  1099. mes "[Buender Hikeman]";
  1100. mes "Are you so evil to";
  1101. mes "just shallowly forget";
  1102. mes "what you've done to our";
  1103. mes "lives? Did you already";
  1104. mes "forget what you did";
  1105. mes "here in Einbech?!";
  1106. next;
  1107. mes "[Buender Hikeman]";
  1108. mes "It was such a long";
  1109. mes "time ago, but I'll never";
  1110. mes "forget. This town was";
  1111. mes "small, but full of folk";
  1112. mes "with warm hearts...";
  1113. next;
  1114. mes "[Buender Hikeman]";
  1115. mes "Me, Khartophe, Anuto,";
  1116. mes "Maskharundt... All of";
  1117. mes "us were friends hired";
  1118. mes "by that businessman";
  1119. mes "to dig up ores in the mine.";
  1120. next;
  1121. mes "[Buender Hikeman]";
  1122. mes "And then there";
  1123. mes "was you! All of us";
  1124. mes "put together made the";
  1125. mes "greatest mining team!";
  1126. mes "That was, until, we";
  1127. mes "discovered ^FF0000it^000000.";
  1128. next;
  1129. mes "[Buender Hikeman]";
  1130. mes "Yes...";
  1131. mes "The mysterious ore";
  1132. mes "that dazzled with a";
  1133. mes "magnificent light.";
  1134. next;
  1135. mes "[Buender Hikeman]";
  1136. mes "But we should have known";
  1137. mes "that the ^0000FFUngoliant^000000 would";
  1138. mes "be arround that ore. We";
  1139. mes "should have realized";
  1140. mes "the danger...";
  1141. next;
  1142. mes "[Buender Hikeman]";
  1143. mes "We reported our findings";
  1144. mes "to our employer, and then";
  1145. mes "the ore just disappeared. He";
  1146. mes "must have sent it somewhere,";
  1147. mes "it was none of our business.";
  1148. next;
  1149. mes "[Buender Hikeman]";
  1150. mes "Then life was back";
  1151. mes "to normal for a while.";
  1152. mes "But one day you yelled";
  1153. mes "to us that you had found";
  1154. mes "another special, mysterious";
  1155. mes "ore in the mines.";
  1156. next;
  1157. mes "[Buender Hikeman]";
  1158. mes "But when we came";
  1159. mes "over to check the hole";
  1160. mes "you dug up, you know";
  1161. mes "what we found...?!";
  1162. next;
  1163. menu "Ungoliant?",L_UNGOLIANT,"A mysterious ore, right?",L_ORE,"Nothing...?",-;
  1164. mes "[Buender Hikeman]";
  1165. mes "Yes...";
  1166. mes "Nothing.";
  1167. next;
  1168. goto L_CONTINUE;
  1169. L_UNGOLIANT:
  1170. mes "[Buender Hikeman]";
  1171. mes "Don't you remember";
  1172. mes "what happened? What";
  1173. mes "you did to us at that time?!";
  1174. next;
  1175. L_CONTINUE:
  1176. mes "[Buender Hikeman]";
  1177. mes "There was nothing";
  1178. mes "inside the hole!";
  1179. next;
  1180. mes "[Buender Hikeman]";
  1181. mes "Then you pointed to";
  1182. mes "the wall behind us and";
  1183. mes "screamed that Ungoliant";
  1184. mes "was coming! In our panic";
  1185. mes "we started to dig our way out!";
  1186. next;
  1187. mes "[Buender Hikeman]";
  1188. mes "I remember that the expression on";
  1189. mes "your face seemed so strange. I had";
  1190. mes "thought you looked sad, but now I'm";
  1191. mes "sure you were consumed by greed! We";
  1192. mes "trusted you and you betrayed us!";
  1193. next;
  1194. mes "[Buender Hikeman]";
  1195. mes "When we finally smashed";
  1196. mes "down that last wall, everything";
  1197. mes "started to fall around us. We";
  1198. mes "were the only two to survive";
  1199. mes "that tunnel collapse.";
  1200. next;
  1201. mes "[Buender Hikeman]";
  1202. mes "Then I learned...";
  1203. mes "You planned it all along.";
  1204. set Shinokas_Quest,2;
  1205. close;
  1206. L_ORE:
  1207. mes "[Buender Hikeman]";
  1208. mes "Don't you remember";
  1209. mes "what happened? What";
  1210. mes "you did to us at that time?!";
  1211. next;
  1212. goto L_CONTINUE;
  1213. L_BASTARD:
  1214. mes "[Buender Hikeman]";
  1215. mes "Bastard!";
  1216. mes "I'm sick of";
  1217. mes "your lies!";
  1218. next;
  1219. menu "I'm not who you think!",L_IM,"How did you survive the accident?",-;
  1220. L_HOW:
  1221. mes "[Buender Hikeman]";
  1222. mes "When I came to,";
  1223. mes "I was lying on my";
  1224. mes "stomach in the ruins";
  1225. mes "of that dark tunnel.";
  1226. next;
  1227. mes "[Buender Hikeman]";
  1228. mes "And I found...";
  1229. mes "You know what I found.";
  1230. next;
  1231. mes "[Buender Hikeman]";
  1232. mes "*Cough Cough*";
  1233. mes "The corpses of my friends!";
  1234. mes "Kartophe, Anuto, Maskharundt";
  1235. mes "Great men and my best friends.";
  1236. mes "But where were you?!";
  1237. next;
  1238. mes "[Buender Hikeman]";
  1239. mes "Your body was nowhere";
  1240. mes "to be found. I searched";
  1241. mes "the tunnel and finnaly";
  1242. mes "climbed outside where";
  1243. mes "I was found unconscious.";
  1244. next;
  1245. mes "[Buender Hikeman]";
  1246. mes "I was so stupid.";
  1247. mes "It was because of";
  1248. mes "that ore! You killed our";
  1249. mes "friend and destroyed";
  1250. mes "my life for that thing!";
  1251. next;
  1252. mes "[Buender Hikeman]";
  1253. mes "And now...";
  1254. mes "You come out of";
  1255. mes "hiding and show up.";
  1256. mes "What do you want of";
  1257. mes "me? What more can";
  1258. mes "you possibly take away?!";
  1259. next;
  1260. menu "I'm not who you think I am!",L_THINK,"I'd like to apologize.",-;
  1261. mes "[Buender Hikeman]";
  1262. mes "Ha ha...";
  1263. mes "Apologize?";
  1264. mes "The harm is";
  1265. mes "already done...";
  1266. goto L_CONTINUE2;
  1267. L_THINK:
  1268. mes "[Buender Hikeman]";
  1269. mes "Quit lying!";
  1270. mes "You've stirred up";
  1271. mes "my hatred by showing";
  1272. mes "up again! I've never";
  1273. mes "forgotten that day!";
  1274. next;
  1275. L_CONTINUE2:
  1276. mes "[Buender Hikeman]";
  1277. mes "It's too late";
  1278. mes "for you now. For";
  1279. mes "the sake of my friends,";
  1280. mes "I'll have my vengeance!";
  1281. next;
  1282. mes "[Buender Hikeman]";
  1283. mes "Prepare to die!";
  1284. mes "^0000FFShinokas^000000!!!!";
  1285. next;
  1286. mes "[Buender Hikeman]";
  1287. mes "...!";
  1288. mes "*Cough! Cough!*";
  1289. mes "Noooo! N-not now...";
  1290. mes "*Cough! Cough!*";
  1291. next;
  1292. mes "[" + strcharinfo(0) + "]";
  1293. mes "...";
  1294. mes "I better";
  1295. mes "get away";
  1296. mes "from him!";
  1297. next;
  1298. mes "^0000FFYou ran away from Hikeman^000000";
  1299. mes "^0000FFas he collapsed on the ground^000000";
  1300. mes "^0000FFIt wouldn't be a good idea to^000000";
  1301. mes "^0000FFprovoke the old man anymore,^000000";
  1302. mes "^0000FFintentionally or not.^000000";
  1303. set Shinokas_Quest,3;
  1304. close;
  1305. L_BEST:
  1306. mes "^0000FFIt'd be best^000000";
  1307. mes "^0000FFto avoid aggravating^000000";
  1308. mes "^0000FFthe old man for now.^000000";
  1309. close;
  1310. L_IM:
  1311. mes "[Buender Hikeman]";
  1312. mes "Ha...!";
  1313. mes "Do you think";
  1314. mes "I'd so easily";
  1315. mes "forget the face";
  1316. mes "of the person who";
  1317. mes "shattered my life?!";
  1318. goto L_HOW;
  1319. L_P2:
  1320. mes "^0000FFHikeman is dozing^000000";
  1321. mes "^0000FFoff in his chair. Judging^000000";
  1322. mes "^0000FFfrom the look of discomfort^000000";
  1323. mes "^0000FFon his face, he seems to be^000000";
  1324. mes "^0000FFhaving a nightmare.^000000";
  1325. if(Shinokas_Quest == 10) close;
  1326. next;
  1327. mes "["+strcharinfo(0)+"]";
  1328. mes "Excuse me...";
  1329. next;
  1330. mes "[Buender Hikeman]";
  1331. mes "Huh...?";
  1332. mes ".........!!";
  1333. mes "Hahahahaha!";
  1334. mes "Come back for";
  1335. mes "your beating,";
  1336. mes "eh, Shinokas?!";
  1337. next;
  1338. mes "["+strcharinfo(0)+"]";
  1339. mes "Look...!";
  1340. mes "I'm not Shinokas,";
  1341. mes "okay? How can you";
  1342. mes "forget what he looks";
  1343. mes "like or how old he is?";
  1344. mes "I'm way younger!";
  1345. next;
  1346. mes "[Buender Hikeman]";
  1347. mes "What...?";
  1348. next;
  1349. mes "[Buender Hikeman]";
  1350. mes "..................";
  1351. next;
  1352. mes "[Buender Hikeman]";
  1353. mes "Uhhhh......";
  1354. next;
  1355. mes "[Buender Hikeman]";
  1356. mes "Huh.";
  1357. next;
  1358. mes "[Buender Hikeman]";
  1359. mes "It seems...";
  1360. mes "I've made a";
  1361. mes "huge mistake.";
  1362. next;
  1363. mes "[Buender Hikeman]";
  1364. mes "Ever since the accident, people";
  1365. mes "have said that I haven't been the";
  1366. mes "same. Maybe they're right.";
  1367. next;
  1368. mes "[Buender Hikeman]";
  1369. mes "I keep making the same";
  1370. mes "mistakes, so maybe they're";
  1371. mes "right about me getting senile.";
  1372. mes "Did you come just to clear";
  1373. mes "up this misunderstanding?";
  1374. next;
  1375. mes "["+strcharinfo(0)+"]";
  1376. mes "Um...";
  1377. mes "Actually...";
  1378. next;
  1379. menu "Tell Hikeman about Shinakas's death.",-,"Don't notify Hikeman",L_NNotify;
  1380. mes "["+strcharinfo(0)+"]";
  1381. mes "Shinokas died";
  1382. mes "a while ago in";
  1383. mes "Einbroch.";
  1384. next;
  1385. mes "[Buender Hikeman]";
  1386. mes "Wh-what...?";
  1387. next;
  1388. mes "["+strcharinfo(0)+"]";
  1389. mes "Shinokas was killed by";
  1390. mes "some men. He thinks they";
  1391. mes "may have been the ones";
  1392. mes "who hired you guys. In the";
  1393. mes "end, he was betrayed too...";
  1394. next;
  1395. mes "[Buender Hikeman]";
  1396. mes "I...";
  1397. mes "I see...";
  1398. next;
  1399. mes "["+strcharinfo(0)+"]";
  1400. mes "Shinokas may have";
  1401. mes "gotten some money,";
  1402. mes "but he spent the rest";
  1403. mes "of his life in hiding,";
  1404. mes "being hunted down.";
  1405. next;
  1406. mes "[Buender Hikeman]";
  1407. mes "Nothing's left.";
  1408. mes "I've got nothing";
  1409. mes "to look forward to.";
  1410. mes "I was living only to";
  1411. mes "avenge my friends...";
  1412. next;
  1413. mes "[Buender Hikeman]";
  1414. mes "Please...";
  1415. mes "Just go back to";
  1416. mes "wherever you came";
  1417. mes "from. Leave me alone...";
  1418. next;
  1419. mes "["+strcharinfo(0)+"]";
  1420. mes "...";
  1421. next;
  1422. mes "["+strcharinfo(0)+"]";
  1423. mes "Did Hikeman really want";
  1424. mes "revenge on Shinokas or did";
  1425. mes "he want to hear him out since";
  1426. mes "they used to be close friends?";
  1427. next;
  1428. mes "["+strcharinfo(0)+"]";
  1429. mes "If I mention that";
  1430. mes "what they found was";
  1431. mes "the Ymir Heart Piece,";
  1432. mes "Hikeman might end up";
  1433. mes "getting hunter down, so";
  1434. mes "I better not say anything.";
  1435. next;
  1436. mes "["+strcharinfo(0)+"]";
  1437. mes "Why are those men";
  1438. mes "so obsessed with that";
  1439. mes "Ymir Heart Piece? Is it";
  1440. mes "really worth this kind of";
  1441. mes "cruelty? Whoever they are,";
  1442. mes "their intentions can't be good.";
  1443. close2;
  1444. set Shinokas_Quest,10;
  1445. if(BaseLevel < 41)set BaseExp,BaseExp+34750;
  1446. if(BaseLevel > 40 && BaseLevel < 61)set BaseExp,BaseExp+69500;
  1447. if(BaseLevel > 60 && BaseLevel < 71)set BaseExp,BaseExp+139000;
  1448. if(BaseLevel > 70 && BaseLevel < 81)set BaseExp,BaseExp+278000;
  1449. if(BaseLevel > 80 && BaseLevel < 91)set BaseExp,BaseExp+417000;
  1450. if(BaseLevel > 90)set BaseExp,BaseExp+556000;
  1451. end;
  1452. L_NNotify:
  1453. mes "["+strcharinfo(0)+"]";
  1454. mes "Yeah...";
  1455. mes "That's right.";
  1456. mes "I wanted to clear up";
  1457. mes "this misunderstanding";
  1458. mes "so you could calm down,";
  1459. mes "even if it's just a little bit.";
  1460. next;
  1461. mes "[Buender Hikeman]";
  1462. mes "Well, you don't have";
  1463. mes "to worry so much about";
  1464. mes ",u stress. I find that the";
  1465. mes "winds that pass through";
  1466. mes "this town to be very relaxing.";
  1467. next;
  1468. mes "[Buender Hikeman]";
  1469. mes "Each time the wind";
  1470. mes "blows by, my vision blurs,";
  1471. mes "my memories haze and all";
  1472. mes "of my hatred just drifts away.";
  1473. next;
  1474. mes "[Buender Hikeman]";
  1475. mes "Without the wind, I'd only";
  1476. mes "have my hatred towards ^FF0000him^000000.";
  1477. mes "Maybe it's my only reason for";
  1478. mes "living and maybe I'm lonely,";
  1479. mes "but it's too late to feel";
  1480. mes "sorry for myself now.";
  1481. close;
  1482. }
  1483. //============================================================
  1484. //============================================= Einbroch Lover
  1485. //====================================================== Quest
  1486. ein_in01.gat,31,151,4 script Satra 850,{
  1487. if(EIN_LOVERQ > 11)goto s_Intimi;
  1488. if(EIN_LOVERQ == 11)goto s_Coal4;
  1489. if(EIN_LOVERQ == 10)goto s_Coal3;
  1490. if(EIN_LOVERQ == 9)goto s_Coal2;
  1491. if(EIN_LOVERQ == 8)goto s_Coal1;
  1492. if(EIN_LOVERQ == 7)goto s_Advent;
  1493. mes "[Satra]";
  1494. mes "A wandering";
  1495. mes "adventurer...?";
  1496. mes "How sinfully";
  1497. mes "intriguing!";
  1498. mes "Ho ho ho ho~";
  1499. next;
  1500. mes "[Satra]";
  1501. mes "Oh, do not worry";
  1502. mes "I'm sure the beauty of";
  1503. mes "my home has captured your";
  1504. mes "curiosity. My brutish excuse";
  1505. mes "for a husband would have you";
  1506. mes "beat if he found you...";
  1507. next;
  1508. mes "[Satra]";
  1509. mes "But I'm far more genteel";
  1510. mes "then Megass. You're more";
  1511. mes "than welcome to enjoy the";
  1512. mes "furnishings. Ho ho ho ho~";
  1513. close;
  1514. s_Advent:
  1515. mes "[Satra]";
  1516. mes "A wandering adventurer...?";
  1517. mes "How ravishingly delightful!";
  1518. mes "You must have risked life and";
  1519. mes "limb to sneak past my husband";
  1520. mes "to enjoy the captivating sights";
  1521. mes "of my home. Ho ho ho ho~";
  1522. next;
  1523. mes "[Satra]";
  1524. mes "Since you're a very";
  1525. mes "unique quest, I shall";
  1526. mes "give you a unique honor";
  1527. mes "and deign to converse";
  1528. mes "with you, adventurer.";
  1529. next;
  1530. mes "[Satra]";
  1531. mes "Einbech exists to provide";
  1532. mes "my family with coal and";
  1533. mes "materials from their mines.";
  1534. mes "It's a natural law: workers";
  1535. mes "must be led by a chosen few.";
  1536. next;
  1537. mes "[Satra]";
  1538. mes "It's delightfully";
  1539. mes "ludicrous to see those";
  1540. mes "workers aspire to reach";
  1541. mes "our heights of social";
  1542. mes "prestige. Ho ho ho ho~";
  1543. next;
  1544. mes "[Satra]";
  1545. mes "Oh, I haven't spoken to";
  1546. mes "someone from a lower";
  1547. mes "class in ages! It feels";
  1548. mes "so forbiddenly exciting!";
  1549. next;
  1550. mes "[Satra]";
  1551. mes "Well adventurer, that's";
  1552. mes "the end of our informal";
  1553. mes "chat. I'll even grant you";
  1554. mes "full permission to boast";
  1555. mes "of the fact that you've";
  1556. mes "spoken to Lady Satra.";
  1557. next;
  1558. mes "[Satra]";
  1559. mes "If you wish for";
  1560. mes "me to share words with";
  1561. mes "you once more, prove to";
  1562. mes "me that you're worthier";
  1563. mes "than the other peons of";
  1564. mes "my graceful presence.";
  1565. next;
  1566. s_Coal1:
  1567. mes "[Satra]";
  1568. mes "Oh, I have a marvelous";
  1569. mes "idea! Why don't you bring";
  1570. mes "me ^9C0000Coals^000000? It's not impossible";
  1571. mes "for someone like yourself, but";
  1572. mes "this kind of task will require";
  1573. mes "some effort on your part.";
  1574. next;
  1575. if(EIN_LOVERQ == 8 && countitem(1003) > 9)goto s_GotCoal1;
  1576. mes "[Satra]";
  1577. mes "Tah tah,";
  1578. mes "adventurer~";
  1579. if(EIN_LOVERQ == 7)set EIN_LOVERQ,8;
  1580. close;
  1581. s_GotCoal1:
  1582. mes "[Satra]";
  1583. mes "My, you've already";
  1584. mes "brought the Coal?";
  1585. mes "How charmingly";
  1586. mes "prompt you are~";
  1587. next;
  1588. mes "[Satra]";
  1589. mes "On behalf of the";
  1590. mes "Kappellthaine family,";
  1591. mes "I shall ignore your lowly";
  1592. mes "status and graciously";
  1593. mes "accept your small gift.";
  1594. mes "Ho ho ho~";
  1595. next;
  1596. mes "[Satra]";
  1597. mes "Do you hail from";
  1598. mes "Einbech, adventurer?";
  1599. mes "Ah, the Rune-Midgarts";
  1600. mes "kingdom! I've visited your";
  1601. mes "country. It's quite quaint";
  1602. mes "and Jawaii is very lovely.";
  1603. next;
  1604. mes "[Satra]";
  1605. mes "Well, I shall try to";
  1606. mes "find some use for these.";
  1607. mes "I'm afraid the gift I've asked";
  1608. mes "from you isn't very practical.";
  1609. mes "How is coal usually used?";
  1610. mes "Ah, I have a novel idea!";
  1611. next;
  1612. mes "[Satra]";
  1613. mes "Wouldn't it be";
  1614. mes "intoxicatingly wild if";
  1615. mes "Megass were to hold one";
  1616. mes "of those social functions that";
  1617. mes "the lower classes are so fond";
  1618. mes "of? A 'barbeque', yes?";
  1619. next;
  1620. mes "[Satra]";
  1621. mes "In any case, If you";
  1622. mes "bring me more of that";
  1623. mes "Coal, you would be even";
  1624. mes "more favored by me and";
  1625. mes "you'll become a recipient";
  1626. mes "of my good graces. Ho ho~";
  1627. set EIN_LOVERQ,9;
  1628. delitem 1003,10;
  1629. close;
  1630. s_Coal2:
  1631. mes "[Satra]";
  1632. mes "^111111*Titter~*^000000";
  1633. mes "Why, if it isn't my";
  1634. mes "intrepid adventurer.";
  1635. mes "Ho ho ho ho~";
  1636. next;
  1637. if(countitem(1003) > 9)goto s_GotCoal2;
  1638. mes "[Satra]";
  1639. mes "My apologies, but you";
  1640. mes "must first prove to me";
  1641. mes "that you are worthy of";
  1642. mes "conversation. Why don't";
  1643. mes "you deliver more of those";
  1644. mes "^9C0000Coals^000000, mmm?";
  1645. next;
  1646. mes "[Satra]";
  1647. mes "After all, I have no other";
  1648. mes "means of knowing whether";
  1649. mes "or not you appreciate the time";
  1650. mes "I sacrifice by socializing with";
  1651. mes "someone of your status.";
  1652. mes "Ho ho ho ho~";
  1653. close;
  1654. s_GotCoal2:
  1655. mes "[Satra]";
  1656. mes "My word!";
  1657. mes "Why are you carrying";
  1658. mes "all of that dirty Coal";
  1659. mes "with you? You poor,";
  1660. mes "impoverished thing.";
  1661. next;
  1662. mes "[Satra]";
  1663. mes "Oh! Dear me,";
  1664. mes "I've nearly forgotten~";
  1665. mes "How divinely silly of me!";
  1666. mes "Once again, I graciously";
  1667. mes "accept your small gift on";
  1668. mes "behalf of the Kappelthaines.";
  1669. next;
  1670. mes "[Satra]";
  1671. mes "Let me share a little";
  1672. mes "bit of history concerning";
  1673. mes "our lovely Einbroch. At one";
  1674. mes "time, there was only Einbech,";
  1675. mes "the mining village. You can";
  1676. mes "imagine how long ago that was.";
  1677. next;
  1678. mes "[Satra]";
  1679. mes "However, the minerals";
  1680. mes "and ores mined in Einbech";
  1681. mes "need to be processed and";
  1682. mes "refined in factories that were";
  1683. mes "all built in a nearby industrial";
  1684. mes "comple which became Einbroch.";
  1685. next;
  1686. mes "[Satra]";
  1687. mes "Now every citizen in";
  1688. mes "Einbroch is wealthy and";
  1689. mes "it's well known that there";
  1690. mes "is a higher standard of";
  1691. mes "living here than in Einbech.";
  1692. next;
  1693. mes "[Satra]";
  1694. mes "Goodness, I believe";
  1695. mes "it's time for a spot of tea~";
  1696. mes "The next time you wish to have";
  1697. mes "an audience with me, it would";
  1698. mes "behoove you to bring another";
  1699. mes "gift of Coal. Toodles~";
  1700. set EIN_LOVERQ,10;
  1701. delitem 1003,10;
  1702. close;
  1703. s_Coal3:
  1704. mes "[Satra]";
  1705. mes "Why hello~";
  1706. mes "Your visits have";
  1707. mes "recently been quite";
  1708. mes "delightful, fair adventurer.";
  1709. next;
  1710. mes "[Satra]";
  1711. mes "Oh, my apologies!";
  1712. mes "I supposed you're just";
  1713. mes "here for sight seeing,";
  1714. mes "or perhaps you're running";
  1715. mes "some sort of adventurer's";
  1716. mes "errand. Am I right?";
  1717. next;
  1718. if(countitem(1003) > 9)goto s_GotCoal3;
  1719. mes "[Satra]";
  1720. mes "I know you well enough";
  1721. mes "to know that you wouldn't";
  1722. mes "be so rude as to stop by";
  1723. mes "and chat without bringing";
  1724. mes "any ^9C0000Coal^000000. Ho ho ho ho~";
  1725. close;
  1726. s_GotCoal3:
  1727. mes "[Satra]";
  1728. mes "Continue to show";
  1729. mes "your appreciation";
  1730. mes "and dedication to me";
  1731. mes "and you'll soon be known";
  1732. mes "to be my most favored";
  1733. mes "commoner. Ho ho ho ho~";
  1734. next;
  1735. mes "[Satra]";
  1736. mes "I'm sure you've noticed";
  1737. mes "the strained relationship";
  1738. mes "between Einbroch and Einbech";
  1739. mes "by now. It's a shame, really.";
  1740. next;
  1741. mes "[Satra]";
  1742. mes "As Einbroch grew wealthier";
  1743. mes "and Einbech became more";
  1744. mes "destitude, the affluent began";
  1745. mes "despising the impoverished.";
  1746. mes "I supposed it follows that the";
  1747. mes "poor started to resent the rich.";
  1748. next;
  1749. mes "[Satra]";
  1750. mes "It might be said that";
  1751. mes "both towns have been";
  1752. mes "trying to take advantage";
  1753. mes "of each other, but it's";
  1754. mes "clear that Einbroch has";
  1755. mes "always had the upper hand.";
  1756. next;
  1757. mes "[Satra]";
  1758. mes "In fact, because of";
  1759. mes "this rift between our";
  1760. mes "cities, our families are";
  1761. mes "taught not to associate";
  1762. mes "with the people of Einbech.";
  1763. next;
  1764. mes "[Satra]";
  1765. mes "Now, I believe that most";
  1766. mes "people who live in Einbech";
  1767. mes "are peons, but that does not";
  1768. mes "mean I will not give them a";
  1769. mes "chance to prove their worth.";
  1770. next;
  1771. mes "[Satra]";
  1772. mes "Why should I deprive";
  1773. mes "the lowly of my gracious";
  1774. mes "presence if they prove";
  1775. mes "themselves meritable?";
  1776. mes "Ho ho ho ho~";
  1777. next;
  1778. mes "[Satra]";
  1779. mes "Oh, that was scrumptious!";
  1780. mes "If you wish to pay me another";
  1781. mes "visit, don't forget to bring some";
  1782. mes "Coal with you. Tah tah~";
  1783. set EIN_LOVERQ,11;
  1784. delitem 1003,10;
  1785. close;
  1786. s_Coal4:
  1787. mes "[Satra]";
  1788. mes "Ho ho ho ho~";
  1789. mes "Welcome adventurer,";
  1790. mes "I so enjoy our little chats.";
  1791. mes "Hors d'oeuvre?";
  1792. next;
  1793. if(countitem(1003) > 9)goto s_GotCoal4;
  1794. mes "[Satra]";
  1795. mes "Ah...";
  1796. mes "It seems you've";
  1797. mes "forgotten your ^9C0000Coals^000000.";
  1798. mes "A silly mistake, but one";
  1799. mes "I'm willing to overlook.";
  1800. close;
  1801. s_GotCoal4:
  1802. mes "[Satra]";
  1803. mes "Oh! You can't enjoy";
  1804. mes "any food in that state!";
  1805. mes "Your hands are atrociously";
  1806. mes "grimy! May I ask why?";
  1807. next;
  1808. mes "[Satra]";
  1809. mes "Ah~";
  1810. mes "In my excitement,";
  1811. mes "I nearly forgot that";
  1812. mes "I asked you to bring";
  1813. mes "Coals to me again!";
  1814. mes "My apologies~";
  1815. next;
  1816. mes "[Satra]";
  1817. mes "You've brought so much Coal";
  1818. mes "to me, I'm convinced that you're";
  1819. mes "much more diligent than those";
  1820. mes "languid peasants in Einbech.";
  1821. mes "I appreciate that you've labored";
  1822. mes "so much to win my favor.";
  1823. next;
  1824. mes "[Satra]";
  1825. mes "Hm, what was that?";
  1826. mes "someone else provided";
  1827. mes "these Coals and you were";
  1828. mes "only delivering them? Then";
  1829. mes "who actually gathered these?";
  1830. next;
  1831. input @str$;
  1832. mes "[Satra]";
  1833. if(@str$ != "Clitzer"){
  1834. mes "I beg your pardon?";
  1835. mes "" + @str$ + "? Oh my...";
  1836. mes "I believe I may have";
  1837. mes "misheard you. Ho ho ho ho~";
  1838. close;
  1839. }
  1840. mes "Ah, Clitzer?";
  1841. mes "I must say, that's";
  1842. mes "a very humble name.";
  1843. mes "Yet it's so familiar...";
  1844. next;
  1845. mes "[Satra]";
  1846. mes "Ah, I recall there";
  1847. mes "was a hooligan that";
  1848. mes "has been pestering my";
  1849. mes "daughter named Clitzer.";
  1850. mes "Perhaps they are one";
  1851. mes "and the same. Hmm...";
  1852. next;
  1853. mes "[Satra]";
  1854. mes "I remember that he was";
  1855. mes "rather shabby looking and";
  1856. mes "lacked any semblance of";
  1857. mes "etiquette whatsoever. Clearly,";
  1858. mes "he is a fool and a coward, but";
  1859. mes "now I see that he is sincere.";
  1860. next;
  1861. mes "[Satra]";
  1862. mes "It might not be possible";
  1863. mes "to let him go otu with my";
  1864. mes "daughter straight away, but";
  1865. mes "I will invite him for a spot of";
  1866. mes "tea. And if Calla likes him,";
  1867. mes "well, he must be special.";
  1868. next;
  1869. mes "[Satra]";
  1870. mes "For a humble peasant,";
  1871. mes "this must be like a dream";
  1872. mes "come true! And to have tea";
  1873. mes "with Clitzer. Oh, what would";
  1874. mes "the girls say? Ah, but I did";
  1875. mes "marry that oafish Megass~";
  1876. next;
  1877. mes "[Satra]";
  1878. mes "Anyway, when you next";
  1879. mes "meet Clitzer, please tell";
  1880. mes "him to pay me a visit soon.";
  1881. mes "Oh, and remind him to dress";
  1882. mes "appropriately for this special";
  1883. mes "occasion. Ho ho ho ho ho~";
  1884. set EIN_LOVERQ,12;
  1885. close;
  1886. s_Intimi:
  1887. mes "[Satra]";
  1888. mes "I understand that my";
  1889. mes "home is extravagantly";
  1890. mes "splendid and to approach";
  1891. mes "any Kappelthaine is an";
  1892. mes "honor t most commoners.";
  1893. next;
  1894. mes "[Satra]";
  1895. mes "However, Clitzer";
  1896. mes "has no reason to feel so";
  1897. mes "intimidated. Tell the poor";
  1898. mes "boy that he's earned the";
  1899. mes "honor of speaking with me.";
  1900. close;
  1901. }
  1902. ein_in01.gat,31,138,4 script Calla 90,{
  1903. if(EIN_LOVERQ > 4 && EIN_LOVERQ < 14)goto s_NoSwitch;
  1904. if(EIN_LOVERQ > 1)goto s_Switches;
  1905. s_NoSwitch:
  1906. mes "[Calla]";
  1907. mes "Hello adventurer.";
  1908. mes "Our city must just be";
  1909. mes "another place where";
  1910. mes "you'll stay no longer";
  1911. mes "than a few days.";
  1912. next;
  1913. mes "[Calla]";
  1914. mes "You must have so much";
  1915. mes "freedom. I envy you. I can't";
  1916. mes "do what I want to do. I don't";
  1917. mes "even have the courage to tell";
  1918. mes "my family what I really want,";
  1919. mes "much less change things here...";
  1920. next;
  1921. mes "[Calla]";
  1922. mes "How is it like?";
  1923. mes "Going wherever you";
  1924. mes "please, following your";
  1925. mes "heart's true desire?";
  1926. mes "What I would give to";
  1927. mes "be able to do that...";
  1928. if(!EIN_LOVERQ)set EIN_LOVERQ,1;
  1929. close;
  1930. s_Switches:
  1931. switch(EIN_LOVERQ)
  1932. {
  1933. case 2:
  1934. mes "[Calla]";
  1935. mes "You're the adventurer";
  1936. mes "from before, aren't you?";
  1937. mes "Sadly, there isn't much";
  1938. mes "to do around here. This";
  1939. mes "place is basically like";
  1940. mes "a prison to me...";
  1941. next;
  1942. mes "[Calla]";
  1943. mes "Oh, you've met Clitzer?";
  1944. mes "Isn't he so kind, such";
  1945. mes "a perfect gentleman?";
  1946. next;
  1947. mes "[Calla]";
  1948. mes "I really wish I could";
  1949. mes "see him, but it's almost";
  1950. mes "impossible. My parents think";
  1951. mes "he's not good enough for me,";
  1952. mes "but they're wrong! What am";
  1953. mes "I going to do? Oh, Clitzer...";
  1954. next;
  1955. mes "[Calla]";
  1956. mes "Well, maybe I can't see";
  1957. mes "him, but would you give";
  1958. mes "my violin to Clitzer for me?";
  1959. mes "I used to play this for him";
  1960. mes "all the time...";
  1961. next;
  1962. mes "[Calla]";
  1963. mes "I'm sorry to trouble you,";
  1964. mes "but please understand";
  1965. mes "that I want to comfort my";
  1966. mes "Clitzer in any way that";
  1967. mes "I possibly can. Thank";
  1968. mes "you so much, adventurer...";
  1969. set EIN_LOVERQ,3;
  1970. getitem 1901,1;
  1971. close;
  1972. break;
  1973. case 3:
  1974. s_Regards:
  1975. mes "[Calla]";
  1976. mes "Oh, please send my";
  1977. mes "regards to Clitzer for me.";
  1978. mes "I wish I could comnfort";
  1979. mes "him in person, but this";
  1980. mes "is the best I can do for now.";
  1981. close;
  1982. break;
  1983. case 4:
  1984. if(!countitem(712))goto s_Regards;
  1985. mes "[Calla]";
  1986. mes "You've spoken";
  1987. mes "with Clitzer? How";
  1988. mes "is he? What did he say?";
  1989. next;
  1990. mes "[Calla]";
  1991. mes "Oh...?";
  1992. mes "He asked you to";
  1993. mes "deliver this flower";
  1994. mes "to me? How sweet~";
  1995. mes "Thank you very much,";
  1996. mes "kind adventurer~";
  1997. next;
  1998. mes "[Calla]";
  1999. mes "Ah, I'm so rude!";
  2000. mes "I've been calling you";
  2001. mes "^111111*adventurer*^000000 this whole";
  2002. mes "time you've been helping";
  2003. mes "me! Would you please";
  2004. mes "tell me your name?";
  2005. next;
  2006. input @str$;
  2007. mes "[Calla]";
  2008. if(@str$ != strcharinfo(0)){
  2009. mes "I'm sorry...";
  2010. mes "I didn't catch that.";
  2011. mes "would you please tell";
  2012. mes "me your name again?";
  2013. close;
  2014. }
  2015. mes "Ah, " + strcharinfo(0) + "!";
  2016. mes "Such a lovely name~";
  2017. mes "I promise that I won't ever";
  2018. mes "forget it. Oh, and if you pass by";
  2019. mes "Einbech, would you thank Clitzer";
  2020. mes "for the flower for me please?";
  2021. next;
  2022. mes "[Calla]";
  2023. mes "A-and... And...";
  2024. mes "Please tell him that";
  2025. mes "I really miss him a lot.";
  2026. mes "^565656*Sob Sob...*";
  2027. delitem 712,1;
  2028. set EIN_LOVERQ,5;
  2029. close;
  2030. break;
  2031. case 14:
  2032. mes "[Calla]";
  2033. mes "I just heard from my mother";
  2034. mes "that she's planning to have";
  2035. mes "tea with Clitzer! I'm sure that";
  2036. mes "I have you to thank for this~";
  2037. next;
  2038. mes "[Calla]";
  2039. mes "I never dreamed that";
  2040. mes "something as wonderful";
  2041. mes "as this could happen.";
  2042. mes "I'm so happy, I could cry...";
  2043. mes "I'll always be grateful";
  2044. mes "for what you've done.";
  2045. next;
  2046. mes "[Calla]";
  2047. mes "I feel like such a fool,";
  2048. mes "thinking it was all hopeless.";
  2049. mes "I'll be doing my best to have";
  2050. mes "my parents accept Clitzer and";
  2051. mes "someday we'll be married~";
  2052. next;
  2053. mes "[Calla]";
  2054. mes "There isn't much that I can";
  2055. mes "give you, but I can show you";
  2056. mes "one of my family's secrets.";
  2057. mes "It's an invigorating massage";
  2058. mes "technique that makes you alot";
  2059. mes "healthier in only ten seconds.";
  2060. next;
  2061. mes "[Calla]";
  2062. mes "Well, please take";
  2063. mes "off your equipment";
  2064. mes "and stand still while";
  2065. mes "I give the massage. It";
  2066. mes "might hurt a bit at first...";
  2067. nude;
  2068. next;
  2069. mes "^3151FF*Rub Rub Rub*";
  2070. mes "*Knead Knead Knead*";
  2071. mes "*Crrack C-c-c--c-crack*";
  2072. mes "*Crack Crack Crrrrrack*";
  2073. mes "*Rub Crrraaaaaaaaaackk*^000000";
  2074. next;
  2075. mes "[" + strcharinfo(0) + "]";
  2076. mes "Ooooooooh...";
  2077. mes "I feel sooo";
  2078. mes "sore and yet";
  2079. mes "soooooo good.";
  2080. mes "Wait. Now I just";
  2081. mes "feel goooood~";
  2082. if(BaseLevel < 41)set BaseExp,BaseExp+3712;
  2083. else if(BaseLevel > 40 && BaseLevel < 61)set BaseExp,BaseExp+7425;
  2084. else if(BaseLevel > 60 && BaseLevel < 71)set BaseExp,BaseExp+14850;
  2085. else if(BaseLevel > 70 && BaseLevel < 81)set BaseExp,BaseExp+29700;
  2086. else if(BaseLevel > 80 && BaseLevel < 91)set BaseExp,BaseExp+59400;
  2087. else if(BaseLevel > 90)set BaseExp,BaseExp+118800;
  2088. set EIN_LOVERQ,15;
  2089. next;
  2090. mes "[Calla]";
  2091. mes "So how was it?";
  2092. mes "I hope it was refreshing.";
  2093. mes "Please understand that";
  2094. mes "it's the best thing I can";
  2095. mes "give you to show my gratitude.";
  2096. next;
  2097. mes "[Calla]";
  2098. mes "Once again,";
  2099. mes "thank you so";
  2100. mes "much, " + strcharinfo(0) + ".";
  2101. mes "I'll always pray for";
  2102. mes "your safety on your";
  2103. mes "your adventures~";
  2104. close;
  2105. break;
  2106. case 15:
  2107. mes "[Calla]";
  2108. mes "Thank you so much!";
  2109. mes "I'll try my best to convince";
  2110. mes "my parents to accept our";
  2111. mes "relationship. It'll be hard,";
  2112. mes "but it's a good first step~";
  2113. next;
  2114. mes "[Calla]";
  2115. mes "I hope that we can all";
  2116. mes "work together ti improve";
  2117. mes "relations between Einbech";
  2118. mes "and Einbroch. The hatred";
  2119. mes "between our towns must end...";
  2120. next;
  2121. mes "[Calla]";
  2122. mes "I really appreciate";
  2123. mes "what you've done for";
  2124. mes "all of use. I'll be praying";
  2125. mes "for your safety, adventurer.";
  2126. close;
  2127. break;
  2128. }
  2129. }
  2130. ein_in01.gat,191,102,4 script Kaijeta 846,{
  2131. if(EIN_LOVERQ > 13)goto s_Learned;
  2132. if(EIN_LOVERQ == 13)goto s_Clothes;
  2133. if(EIN_LOVERQ > 6 && EIN_LOVERQ < 13)goto s_Hatred;
  2134. if(EIN_LOVERQ == 6)goto s_Helping;
  2135. mes "[Kaijeta]";
  2136. mes "Welcome to my humble";
  2137. mes "abode, adventurer. I'm";
  2138. mes "sorry if I'm a poor host.";
  2139. next;
  2140. mes "[Kaijeta]";
  2141. mes "As you can see, we have";
  2142. mes "to share this house with";
  2143. mes "other families so we don't";
  2144. mes "have much open space or";
  2145. mes "privacy. I'm afraid we can't";
  2146. mes "even affor basic comfort.";
  2147. next;
  2148. mes "[Kaijeta]";
  2149. mes "For now, this is the best";
  2150. mes "we can do. We don't have";
  2151. mes "the zeny to buy a house or";
  2152. mes "land, so we have no choice";
  2153. mes "but to endure through this...";
  2154. close;
  2155. s_Helping:
  2156. mes "[Kaijeta]";
  2157. mes "Thank you for helping my";
  2158. mes "son. He may look like a fool";
  2159. mes "for falling in love with someone";
  2160. mes "from Einbroch, but he's an honest";
  2161. mes "hard working man.";
  2162. next;
  2163. mes "[Kaijeta]";
  2164. mes "Then again, it was bound to";
  2165. mes "happen sometime. Einbech is";
  2166. mes "a very poor town while Einbroch";
  2167. mes "is a very rich town. I'd understand";
  2168. mes "if you don't agree, but opposites";
  2169. mes "attract sooner of later.";
  2170. next;
  2171. mes "[Kaijeta]";
  2172. mes "^565656*Sigh...*^000000";
  2173. mes "If my son and Calla can";
  2174. mes "work things out, maybe it";
  2175. mes "would improve relations";
  2176. mes "between our two towns.";
  2177. mes "I certainly hope so...";
  2178. next;
  2179. mes "[Kaijeta]";
  2180. mes "Still, I'm quite baffled!";
  2181. mes "I raised my son to have more";
  2182. mes "guts than to wallow in misery";
  2183. mes "when his heart's broken. And";
  2184. mes "I still have no idea how he got";
  2185. mes "together with such a rich woman.";
  2186. next;
  2187. mes "[Kaijeta]";
  2188. mes "Do you have any idea";
  2189. mes "how we can put an end";
  2190. mes "to the hate between our";
  2191. mes "two towns? I don't want to";
  2192. mes "see this couple separated";
  2193. mes "because of such pettiness.";
  2194. set EIN_LOVERQ,7;
  2195. close;
  2196. s_Hatred:
  2197. mes "[Kaijeta]";
  2198. mes "I can't bear to see the";
  2199. mes "petty hatred between our";
  2200. mes "two towns stop my son from";
  2201. mes "seeing the woman he loves...";
  2202. close;
  2203. s_Clothes:
  2204. mes "[Kaijeta]";
  2205. mes "Thank you for helping";
  2206. mes "my son Clitzer. Sadly, the";
  2207. mes "little fool doesn't have any";
  2208. mes "clue when it comes to certain";
  2209. mes "things like choosing clothing.";
  2210. mes "he gets so nervous about it!";
  2211. next;
  2212. mes "[Kaijeta]";
  2213. mes "A man should wear nice";
  2214. mes "clothes, like a Formal Suit";
  2215. mes "or a Tuxedo, for important";
  2216. mes "meetings and special occassions.";
  2217. mes "hopefully, he'll learn that soon.";
  2218. close;
  2219. s_Learned:
  2220. mes "[Kaijeta]";
  2221. mes "My son learned";
  2222. mes "an awful lot from";
  2223. mes "your good example.";
  2224. mes "As a mother, I really";
  2225. mes "appreciate everything";
  2226. mes "you've done for him.";
  2227. next;
  2228. mes "[Kaijeta]";
  2229. mes "Well, adventurer,";
  2230. mes "I will be praying for";
  2231. mes "your safety wherever";
  2232. mes "your journeys may";
  2233. mes "take you.";
  2234. close;
  2235. }
  2236. ein_in01.gat,200,101,4 script Clitzer 854,{
  2237. if(EIN_LOVERQ)goto s_Switches;
  2238. s_Back:
  2239. mes "[Clitzer]";
  2240. mes "Is there something";
  2241. mes "that you really want";
  2242. mes "in life, but it's just";
  2243. mes "beyond your grasp?";
  2244. next;
  2245. mes "[Clitzer]";
  2246. mes "I wish I was more";
  2247. mes "like you adventurers.";
  2248. mes "People like you never";
  2249. mes "seem to give up, no matter";
  2250. mes "what the obstacles may be.";
  2251. mes "But I'm so helpless...";
  2252. next;
  2253. mes "[Clitzer]";
  2254. mes "I can't even see";
  2255. mes "the one person that";
  2256. mes "I love. We're just so";
  2257. mes "different that it's not";
  2258. mes "even possible anymore...";
  2259. close;
  2260. s_Switches:
  2261. switch(EIN_LOVERQ){
  2262. case 1:
  2263. mes "[Clitzer]";
  2264. mes "That faintly sweet";
  2265. mes "and pleasant scent...";
  2266. mes "It's just like the fragrance";
  2267. mes "they use in Calla's house.";
  2268. next;
  2269. mes "[Clitzer]";
  2270. mes "Ah, so you visited";
  2271. mes "Calla in Einbroch?";
  2272. mes "I miss her sooo much!";
  2273. mes "Is she doing alright?";
  2274. next;
  2275. mes "[Clitzer]";
  2276. mes "Calla's so beautiful.";
  2277. mes "And she's so lovely.";
  2278. mes "Every time I close my";
  2279. mes "eyes, I can still see";
  2280. mes "her lovely smile.";
  2281. next;
  2282. mes "[Clitzer]";
  2283. mes "I'm sorry if I sound";
  2284. mes "silly, but I can't help";
  2285. mes "it. I know I'm acting like";
  2286. mes "a complete idiot. But I'd";
  2287. mes "give anything to see her...";
  2288. next;
  2289. mes "[Clitzer]";
  2290. mes "Just...";
  2291. mes "Just don't listen";
  2292. mes "to anything I say.";
  2293. mes "I'm just a poor fool";
  2294. mes "in love with the wrong";
  2295. mes "person. That has to be it...";
  2296. set EIN_LOVERQ,2;
  2297. close;
  2298. break;
  2299. case 2:
  2300. mes "[Clitzer]";
  2301. mes "^565656*Sigh*^000000";
  2302. mes "I really appreciate your";
  2303. mes "sympathy, but I'm merely";
  2304. mes "a coward and a fool.";
  2305. next;
  2306. mes "[Clitzer]";
  2307. mes "Yeah...";
  2308. mes "I'm a coward for doing";
  2309. mes "nothing about my feelings";
  2310. mes "and an idiot for falling in love";
  2311. mes "with such a high class girl in";
  2312. mes "the first place... Oh, Calla...";
  2313. close;
  2314. break;
  2315. case 3:
  2316. if(!countitem(1901))goto s_Back;
  2317. mes "[Clitzer]";
  2318. mes "What brings you here?";
  2319. mes "aren't you tired of hearing";
  2320. mes "me moan and whine about";
  2321. mes "lost love? ^111111*Siiiiigh...*^000000";
  2322. next;
  2323. mes "[Clitzer]";
  2324. mes "Hey, this violin...";
  2325. mes "Calla used to play";
  2326. mes "such beautiful music";
  2327. mes "on this for me. Did";
  2328. mes "she give this to you?";
  2329. next;
  2330. mes "[Clitzer]";
  2331. mes "I see. Calla must have";
  2332. mes "known that I'm all broken up";
  2333. mes "right now. She's too good to";
  2334. mes "me. How can se consider";
  2335. mes "my feelings before thinking";
  2336. mes "about herself?";
  2337. next;
  2338. mes "[Clitzer]";
  2339. mes "I know I'm being";
  2340. mes "shameless, but I have";
  2341. mes "a favor to ask. Adventurer,";
  2342. mes "would you please send";
  2343. mes "Calla a present for me?";
  2344. next;
  2345. mes "[Clitzer]";
  2346. mes "All you need to do is";
  2347. mes "just give her ^FF00001 Flower^000000.";
  2348. mes "I don't have the zeny and";
  2349. mes "I don't think I'm welcome";
  2350. mes "at Kapellthaine Manor.";
  2351. next;
  2352. mes "[Clitzer]";
  2353. mes "Here, in return, I'll";
  2354. mes "give you this health";
  2355. mes "massage. It's not a";
  2356. mes "big deal, but when I'm";
  2357. mes "done, your mind and body";
  2358. mes "will be refreshed. Here goes!";
  2359. next;
  2360. mes "^3151FF*Knead Knead*";
  2361. mes "*Rub Rub Rub Rub*";
  2362. mes "*Press Press Press*";
  2363. mes "*C-c-c-c-c-c-crakck!*^000000";
  2364. next;
  2365. mes "[" + strcharinfo(0) + "]";
  2366. mes "Oh--";
  2367. mes "Hell yeah!";
  2368. mes "That's the stuff!";
  2369. delitem 1901,1;
  2370. if(BaseLevel < 41)set BaseExp,BaseExp+3712;
  2371. else if(BaseLevel > 40 && BaseLevel < 61)set BaseExp,BaseExp+7425;
  2372. else if(BaseLevel > 60 && BaseLevel < 71)set BaseExp,BaseExp+14850;
  2373. else if(BaseLevel > 70 && BaseLevel < 81)set BaseExp,BaseExp+29700;
  2374. else if(BaseLevel > 80 && BaseLevel < 91)set BaseExp,BaseExp+59400;
  2375. else if(BaseLevel > 90)set BaseExp,BaseExp+118800;
  2376. set EIN_LOVERQ,4;
  2377. next;
  2378. mes "[Clitzer]";
  2379. mes "Would you please bring";
  2380. mes "1 Flower to Calla for me?";
  2381. mes "I'm sorry for troubling you...";
  2382. close;
  2383. break;
  2384. case 4:
  2385. mes "[Clitzer]";
  2386. mes "Would you please bring";
  2387. mes "1 Flower to Calla for me?";
  2388. mes "I'm sorry for troubling you...";
  2389. close;
  2390. break;
  2391. case 5:
  2392. mes "[Clitzer]";
  2393. mes "You've given her";
  2394. mes "the flower? That's";
  2395. mes "great! Thank you,";
  2396. mes "thank you so mu--";
  2397. next;
  2398. mes "[Clitzer]";
  2399. mes "...Oh!";
  2400. mes "Gosh! I was thinking so";
  2401. mes "much about myself that";
  2402. mes "I forgot to ask you for your";
  2403. mes "name! I'm sorry for being";
  2404. mes "so knuckle-headed...";
  2405. next;
  2406. mes "[Clitzer]";
  2407. mes "So...";
  2408. mes "What's your name?";
  2409. next;
  2410. input @str$;
  2411. mes "[Clitzer]";
  2412. if(@str$ != strcharinfo(0)){
  2413. mes "Hm...?";
  2414. mes "Oh, don't be";
  2415. mes "so nervous~";
  2416. mes "But would you please";
  2417. mes "tell me your name again?";
  2418. mes "I couldn't hear you...";
  2419. close;
  2420. }
  2421. mes "" + strcharinfo(0) + "...";
  2422. mes "That's very nice. Thank you,";
  2423. mes "I'm really grateful for your help.";
  2424. mes "Although I can't see Calla in";
  2425. mes "person, I can at least send";
  2426. mes "my regards if you help me.";
  2427. next;
  2428. mes "[Clitzer]";
  2429. mes "I feel so much";
  2430. mes "better now. Oh!";
  2431. mes "When you have the";
  2432. mes "time, why don't you talk";
  2433. mes "to my mother? She always";
  2434. mes "likes meeting my friends.";
  2435. set EIN_LOVERQ,6;
  2436. close;
  2437. break;
  2438. case 6:
  2439. case 7:
  2440. case 8:
  2441. case 9:
  2442. case 10:
  2443. case 11:
  2444. mes "[Clitzer]";
  2445. mes "^111111*Sigh...*^000000";
  2446. mes "What can I do to";
  2447. mes "get Calla's parents";
  2448. mes "to accept me as her";
  2449. mes "boyfriend? I can't";
  2450. mes "think of anything...";
  2451. close;
  2452. break;
  2453. case 12:
  2454. mes "[Clitzer]";
  2455. mes "Eh...?";
  2456. mes "What did you just say?";
  2457. mes "You did something for";
  2458. mes "the Kapellthaines?";
  2459. next;
  2460. mes "[Clitzer]";
  2461. mes "What...?";
  2462. mes "Did you just say";
  2463. mes "that Calla's mother";
  2464. mes "wants me to have tea";
  2465. mes "with her? Holy moley...!";
  2466. next;
  2467. mes "[Clitzer]";
  2468. mes "Okay, okay.";
  2469. mes "I-I I'll need something";
  2470. mes "nice to wear, right? Oh.";
  2471. mes "Wow. This is so sudden!";
  2472. mes "W-what should I do?";
  2473. next;
  2474. mes "[Clitzer]";
  2475. mes "This monkey suit";
  2476. mes "that I've got on just";
  2477. mes "won't do! Arrrgh! But I've";
  2478. mes "already outgrown all of my";
  2479. mes "nice clothes already. Boy,";
  2480. mes "am I in a pickle...";
  2481. set EIN_LOVERQ,13;
  2482. close;
  2483. break;
  2484. case 13:
  2485. if(countitem(2320) || countitem(7170))goto s_Clothes;
  2486. mes "[Clitzer]";
  2487. mes "Noooooo!";
  2488. mes "I've got to find";
  2489. mes "the perfect thing";
  2490. mes "to wear or Calla's";
  2491. mes "mother might ^FF0000hate^000000 me!";
  2492. next;
  2493. mes "[Clitzer]";
  2494. mes "Think, Clitzer, think!";
  2495. mes "Okay, no fun colors.";
  2496. mes "I don't want her to";
  2497. mes "think I'm not serious";
  2498. mes "about Calla. Stripes";
  2499. mes "might be bad too...";
  2500. close;
  2501. break;
  2502. case 14:
  2503. case 15:
  2504. mes "[Clitzer]";
  2505. mes "Look out, world!";
  2506. mes "I'm gonna become";
  2507. mes "worth of Calla's love!";
  2508. mes "Someday, maybe even her";
  2509. mes "parents will approve me!";
  2510. close;
  2511. break;
  2512. }
  2513. s_Clothes:
  2514. mes "[Clitzer]";
  2515. mes "Waaah!";
  2516. mes "What should I wear?!";
  2517. mes "I can't for the life of me";
  2518. mes "figure this out! Something,";
  2519. mes "um, formal? I've never worn";
  2520. mes "anything like that before!";
  2521. next;
  2522. if(countitem(7170)){
  2523. set @clothes,7170;
  2524. mes "[Clitzer]";
  2525. mes "Wait, " + strcharinfo(0) + ".";
  2526. mes "What's that you've got";
  2527. mes "there? I've seen something";
  2528. mes "like that before. It's called";
  2529. mes "a Tuxedo, right? Something";
  2530. mes "like that would be perfect!";
  2531. next;
  2532. menu "Give it to him.",s_Giveclothes,"Ignore him.",-;
  2533. mes "[Clitzer]";
  2534. mes "But how can I get";
  2535. mes "a Tuxedo? Ooh, I hope";
  2536. mes "it doesn't cost too much";
  2537. mes "zeny or I won't be able to";
  2538. mes "get one of those soon...";
  2539. } else if(countitem(2320)){
  2540. set @clothes,2320;
  2541. mes "[Clitzer]";
  2542. mes "Wait, " + strcharinfo(0) + ".";
  2543. mes "What's that you've got";
  2544. mes "there? I've seen something";
  2545. mes "like that before. It's called";
  2546. mes "a Formal Suit, right?";
  2547. mes "Something like that would";
  2548. mes "be perfect!";
  2549. next;
  2550. menu "Give it to him.",s_Giveclothes,"Ignore him.",-;
  2551. mes "[Clitzer]";
  2552. mes "But how can I get";
  2553. mes "a Formal Suit? I hope";
  2554. mes "it doesn't cost too much";
  2555. mes "zeny or I won't be able to";
  2556. mes "get one of those soon...";
  2557. }
  2558. close;
  2559. s_Giveclothes:
  2560. mes "[Clitzer]";
  2561. mes "I can have this?";
  2562. mes "Oh, thank you so much!";
  2563. mes "Finally, I have something";
  2564. mes "nice enough to wear to meet";
  2565. mes "Calla's mom! What a relief!";
  2566. next;
  2567. mes "[Clitzer]";
  2568. mes "You've been helping me all";
  2569. mes "this time and I haven't properly";
  2570. mes "expressed my gratitude. I'm sorry";
  2571. mes "if I've been to absorbed in my own";
  2572. mes "problems. I may be poor, but I need";
  2573. mes "to repay you somehow...";
  2574. next;
  2575. mes "[Clitzer]";
  2576. mes "Wait...";
  2577. mes "Why don't you have this";
  2578. mes "ore? I don't how";
  2579. mes "valuable it is, but I know";
  2580. mes "that it's pretty rare. It may";
  2581. mes "even be useful to you later~";
  2582. delitem @clothes,1;
  2583. set EIN_LOVERQ,14;
  2584. switch(rand(1,9)){
  2585. case 1:
  2586. getitem 7289,1;
  2587. break;
  2588. case 2:
  2589. getitem 7290,1;
  2590. break;
  2591. case 3:
  2592. getitem 7291,1;
  2593. break;
  2594. case 4:
  2595. getitem 7292,1;
  2596. break;
  2597. case 5:
  2598. getitem 7293,1;
  2599. break;
  2600. case 6:
  2601. getitem 7294,1;
  2602. break;
  2603. case 7:
  2604. getitem 7295,1;
  2605. break;
  2606. case 8:
  2607. getitem 7296,1;
  2608. break;
  2609. case 9:
  2610. getitem 7297,1;
  2611. break;
  2612. }
  2613. next;
  2614. mes "[Clitzer]";
  2615. mes "" + strcharinfo(0) + ",";
  2616. mes "you've really opened";
  2617. mes "my eyes. From now on,";
  2618. mes "I'll do my best to earn the";
  2619. mes "approval of Calla's parents and";
  2620. mes "become worthy of Calla's love.";
  2621. close;
  2622. }
  2623. //============================================================
  2624. //=========================================== Einbroch Polution
  2625. //============================================================
  2626. einbroch.gat,1,1,0 script #PolutionNPC -1,{
  2627. OnPolution:
  2628. set @AlrdEinPoll,1;
  2629. donpcevent "Liotzburg::OnHide";
  2630. donpcevent "Morei::OnHide";
  2631. donpcevent "Mark::OnHide";
  2632. donpcevent "Khemko::OnHide";
  2633. donpcevent "Oberu::OnHide";
  2634. donpcevent "Khowropher::OnHide";
  2635. donpcevent "Kesunboss::OnHide";
  2636. donpcevent "Train Station Staff#01::OnHide";
  2637. donpcevent "Train Station Staff#02::OnHide";
  2638. donpcevent "Leslie::OnHide";
  2639. donpcevent "Little Toby::OnHide";
  2640. donpcevent "Tan::OnHide";
  2641. donpcevent "Keneshiotz::OnHide";
  2642. donpcevent "Sleik::OnHide";
  2643. donpcevent "Uwe Kleine::OnHide";
  2644. donpcevent "Laboratory Soldier#01::OnHide";
  2645. donpcevent "Laboratory Soldier#02::OnHide";
  2646. disablenpc "Paddler";
  2647. disablenpc "Head Gear Dealer";
  2648. mapannounce "einbroch.gat","This is a state of emercency! Harmful smog is reaching high levels of saturation. Residents of Einbroch must find shelter immediately.",bc_map;
  2649. monster "einbroch.gat",82,332,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
  2650. monster "einbroch.gat",99,328,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
  2651. monster "einbroch.gat",122,317,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
  2652. monster "einbroch.gat",138,319,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
  2653. monster "einbroch.gat",147,312,"Red Fog",1620,1,"#PolutionNPC::OnMobChk";
  2654. monster "einbroch.gat",159,316,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
  2655. monster "einbroch.gat",173,315,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
  2656. monster "einbroch.gat",161,311,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
  2657. monster "einbroch.gat",147,296,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
  2658. monster "einbroch.gat",168,282,"Red Fog",1620,1,"#PolutionNPC::OnMobChk";
  2659. monster "einbroch.gat",175,271,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
  2660. monster "einbroch.gat",146,274,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
  2661. monster "einbroch.gat",160,272,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
  2662. monster "einbroch.gat",155,256,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
  2663. monster "einbroch.gat",179,262,"Red Fog",1620,1,"#PolutionNPC::OnMobChk";
  2664. monster "einbroch.gat",192,248,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
  2665. monster "einbroch.gat",212,255,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
  2666. monster "einbroch.gat",230,250,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
  2667. monster "einbroch.gat",246,251,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
  2668. monster "einbroch.gat",262,254,"Red Fog",1620,1,"#PolutionNPC::OnMobChk";
  2669. monster "einbroch.gat",253,240,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
  2670. monster "einbroch.gat",202,245,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
  2671. monster "einbroch.gat",181,251,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
  2672. monster "einbroch.gat",172,238,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
  2673. monster "einbroch.gat",146,242,"Red Fog",1620,1,"#PolutionNPC::OnMobChk";
  2674. monster "einbroch.gat",186,226,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
  2675. monster "einbroch.gat",173,239,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
  2676. monster "einbroch.gat",124,248,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
  2677. monster "einbroch.gat",120,234,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
  2678. monster "einbroch.gat",98,234,"Red Fog",1620,1,"#PolutionNPC::OnMobChk";
  2679. monster "einbroch.gat",101,219,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
  2680. monster "einbroch.gat",89,208,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
  2681. monster "einbroch.gat",96,191,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
  2682. monster "einbroch.gat",76,194,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
  2683. monster "einbroch.gat",60,196,"Red Fog",1620,1,"#PolutionNPC::OnMobChk";
  2684. monster "einbroch.gat",45,194,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
  2685. monster "einbroch.gat",34,201,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
  2686. monster "einbroch.gat",40,184,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
  2687. monster "einbroch.gat",64,173,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
  2688. monster "einbroch.gat",96,173,"Red Fog",1620,1,"#PolutionNPC::OnMobChk";
  2689. monster "einbroch.gat",41,155,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
  2690. monster "einbroch.gat",46,131,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
  2691. monster "einbroch.gat",46,108,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
  2692. monster "einbroch.gat",38,93,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
  2693. monster "einbroch.gat",55,86,"Red Fog",1620,1,"#PolutionNPC::OnMobChk";
  2694. monster "einbroch.gat",81,81,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
  2695. monster "einbroch.gat",107,82,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
  2696. monster "einbroch.gat",107,104,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
  2697. monster "einbroch.gat",123,73,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
  2698. monster "einbroch.gat",132,87,"Red Fog",1620,1,"#PolutionNPC::OnMobChk";
  2699. monster "einbroch.gat",125,63,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
  2700. monster "einbroch.gat",142,64,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
  2701. monster "einbroch.gat",150,52,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
  2702. monster "einbroch.gat",157,37,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
  2703. monster "einbroch.gat",179,39,"Red Fog",1620,1,"#PolutionNPC::OnMobChk";
  2704. monster "einbroch.gat",197,46,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
  2705. monster "einbroch.gat",217,67,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
  2706. monster "einbroch.gat",246,54,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
  2707. monster "einbroch.gat",228,110,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
  2708. monster "einbroch.gat",250,118,"Red Fog",1620,1,"#PolutionNPC::OnMobChk";
  2709. monster "einbroch.gat",273,127,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
  2710. monster "einbroch.gat",288,138,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
  2711. monster "einbroch.gat",281,160,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
  2712. monster "einbroch.gat",281,192,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
  2713. monster "einbroch.gat",291,201,"Red Fog",1620,1,"#PolutionNPC::OnMobChk";
  2714. monster "einbroch.gat",283,218,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
  2715. monster "einbroch.gat",268,216,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
  2716. monster "einbroch.gat",273,196,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
  2717. monster "einbroch.gat",262,164,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
  2718. monster "einbroch.gat",241,180,"Red Fog",1620,1,"#PolutionNPC::OnMobChk";
  2719. monster "einbroch.gat",216,205,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
  2720. monster "einbroch.gat",209,198,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
  2721. monster "einbroch.gat",224,177,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
  2722. monster "einbroch.gat",227,163,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
  2723. monster "einbroch.gat",208,166,"Red Fog",1620,1,"#PolutionNPC::OnMobChk";
  2724. monster "einbroch.gat",132,87,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
  2725. monster "einbroch.gat",149,119,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
  2726. monster "einbroch.gat",119,36,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
  2727. monster "einbroch.gat",84,155,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
  2728. monster "einbroch.gat",82,107,"Red Fog",1620,1,"#PolutionNPC::OnMobChk";
  2729. initnpctimer;
  2730. end;
  2731. OnMobChk:
  2732. if(mobcount("einbroch.gat","#PolutionNPC::OnMobChk"))end;
  2733. OnTimer600000:
  2734. killmonster "einbroch.gat","#PolutionNPC::OnMobChk";
  2735. mapannounce "einbroch.gat","Emergency status is now cancelled. Air pollution levels are now within the safety zone.",bc_map;
  2736. enablenpc "Liotzburg";
  2737. donpcevent "Liotzburg::OnUnHide";
  2738. enablenpc "Morei";
  2739. donpcevent "Morei::OnUnHide";
  2740. enablenpc "Mark";
  2741. donpcevent "Mark::OnUnHide";
  2742. enablenpc "Khemko";
  2743. donpcevent "Khemko::OnUnHide";
  2744. enablenpc "Oberu";
  2745. donpcevent "Oberu::OnUnHide";
  2746. enablenpc "Khowropher";
  2747. donpcevent "Khowropher::OnUnHide";
  2748. enablenpc "Kesunboss";
  2749. donpcevent "Kesunboss::OnUnHide";
  2750. enablenpc "Train Station Staff#01";
  2751. donpcevent "Train Station Staff#01::OnUnHide";
  2752. enablenpc "Train Station Staff#02";
  2753. donpcevent "Train Station Staff#02::OnUnHide";
  2754. enablenpc "Leslie";
  2755. donpcevent "Leslie::OnUnHide";
  2756. enablenpc "Little Toby";
  2757. donpcevent "Little Toby::OnUnHide";
  2758. enablenpc "Tan";
  2759. donpcevent "Tan::OnUnHide";
  2760. enablenpc "Keneshiotz";
  2761. donpcevent "Keneshiotz::OnUnHide";
  2762. enablenpc "Sleik";
  2763. donpcevent "Sleik::OnUnHide";
  2764. enablenpc "Uwe Kleine";
  2765. donpcevent "Uwe Kleine::OnUnHide";
  2766. enablenpc "Laboratory Soldier#01";
  2767. donpcevent "Laboratory Soldier#01::OnUnHide";
  2768. enablenpc "Laboratory Soldier#02";
  2769. donpcevent "Laboratory Soldier#02::OnUnHide";
  2770. enablenpc "Paddler";
  2771. enablenpc "Head Gear Dealer";
  2772. set $EinPolution,0;
  2773. set @AlrdEinPoll,0;
  2774. end;
  2775. }
  2776. sec_in02.gat,127,86,3 script Einbroch Polution 851,{
  2777. if(getgmlevel() > 79){
  2778. mes "[Einbroch Polution Variable Management]";
  2779. mes "$EinPolution is currently: " + $EinPolution + ".";
  2780. mes "What would you like to do?";
  2781. next;
  2782. menu "Reset $EinPolution to 0",s_0,"Input My Own Value",s_Input,"Cancel.",-;
  2783. close;
  2784. s_0:
  2785. mes "[Einbroch Polution Variable Management]";
  2786. mes "$EinPolution has been reset to 0.";
  2787. set $EinPolution,0;
  2788. set @AlrdEinPoll,0;
  2789. close;
  2790. s_Input:
  2791. mes "[Einbroch Polution Variable Management]";
  2792. mes "Insert a number you want $EinPollution";
  2793. mes "to be replaced with. Type '0' to cancel.";
  2794. input @temppol;
  2795. if(@temppol == 0)close;
  2796. set $EinPolution,@temppol;
  2797. mes "[Einbroch Polution Variable Management]";
  2798. mes "$EinPolution has been set to: " + $EinPolution + ".";
  2799. close;
  2800. } else {
  2801. mes "[Einbroch Polution Variable Management]";
  2802. mes "Sorry you don't have authorization";
  2803. mes "to use this NPC.";
  2804. close;
  2805. }
  2806. }
  2807. //============================================================
  2808. //=========================================== Einbroch Factory
  2809. //====================================================== Quest
  2810. einbroch.gat,132,84,3 script Liotzburg 853,{
  2811. if($EinPolution > 9){
  2812. mes "[Liotzburg]";
  2813. mes "What's going on?!";
  2814. mes "Who's responsible?!";
  2815. mes "God, I can't believe";
  2816. mes "this is happening!";
  2817. mes "^333333*Cough Cough!*^000000";
  2818. next;
  2819. mes "[Liotzburg]";
  2820. mes "I need to get out of here!";
  2821. mes "You! D-do something and";
  2822. mes "fix this! I gotta hide and find";
  2823. mes "someplace safe!";
  2824. close2;
  2825. if(!@AlrdEinPoll)donpcevent "#PolutionNPC::OnPolution";
  2826. end;
  2827. }
  2828. if(EinFactory >= 13){
  2829. if(EinFactory > 13){
  2830. mes "[Liotzburg]";
  2831. mes "What...?";
  2832. mes "Factory Repair";
  2833. mes "budget? No way!";
  2834. next;
  2835. }
  2836. mes "[Liotzburg]";
  2837. mes "Why waste money?";
  2838. mes "We haven't had any";
  2839. mes "problems so far! Look,";
  2840. mes "everything's fine! Why";
  2841. mes "are you exaggerating";
  2842. mes "such small details?";
  2843. next;
  2844. mes "[Liotzburg]";
  2845. mes "The field overseer,";
  2846. mes "Zelmeto, just came by to";
  2847. mes "ask for a budget increase.";
  2848. mes "Well, I think he's lying!";
  2849. mes "Everything's perfect!";
  2850. if(EinFactory == 13)set EinFactory,14;
  2851. close;
  2852. }
  2853. mes "[Liotzburg]";
  2854. mes "I'm the plant";
  2855. mes "superintendant of this";
  2856. mes "factory. Most of my employees";
  2857. mes "are diligent workers. I can't say";
  2858. mes "that of everyone, but overall we're";
  2859. mes "doing an excellent job. Ha ha ha~!";
  2860. next;
  2861. mes "[Liotzburg]";
  2862. mes "So long as this factory";
  2863. mes "is well maintained, we won't";
  2864. mes "have to worry about this city's";
  2865. mes "safety. The field overseer,";
  2866. mes "Zelmeto, is also very reliable.";
  2867. next;
  2868. mes "[Liotzburg]";
  2869. mes "I can trust Zelmeto";
  2870. mes "to look after things,";
  2871. mes "so there's no need for";
  2872. mes "me to go inside the factory.";
  2873. mes "Delegating work is great!";
  2874. next;
  2875. mes "[Liotzburg]";
  2876. mes "Our factory will";
  2877. mes "continue to develop";
  2878. mes "and everyone will be";
  2879. mes "proud of the progress";
  2880. mes "we're making. Yes, I can";
  2881. mes "assure you of that!";
  2882. close;
  2883. OnHide:
  2884. specialeffect 16;
  2885. disablenpc "Liotzburg";
  2886. end;
  2887. OnUnhide:
  2888. misceffect 215;
  2889. end;
  2890. }
  2891. ein_in01.gat,67,243,3 script Zelmeto 851,{
  2892. if($EinPolution > 9){
  2893. mes "[Zelmeto]";
  2894. mes "We've got a big problem";
  2895. mes "here! I appreciate that you've";
  2896. mes "been gathering the materials,";
  2897. mes "but the machines have been";
  2898. mes "broken for too long!";
  2899. next;
  2900. mes "[Zelmeto]";
  2901. mes "Right when I tried to";
  2902. mes "fix it, a huge shortout";
  2903. mes "occurred. Our town is";
  2904. mes "probably filled with";
  2905. mes "toxic fog right now!";
  2906. next;
  2907. mes "[Zelmeto]";
  2908. mes "I'll try my best to fix";
  2909. mes "this, but we really should";
  2910. mes "have allocated some funds";
  2911. mes "to fix this machine earlier!";
  2912. next;
  2913. mes "[Zelmeto]";
  2914. mes "The most important";
  2915. mes "thing is that you get";
  2916. mes "out of here and find";
  2917. mes "shelter! Right now!";
  2918. close2;
  2919. warp "einbroch.gat",131,83;
  2920. end;
  2921. }
  2922. if(EinFactory > 0)goto s_Switches;
  2923. mes "[Zelmeto]";
  2924. mes "Ah, you must be a visitor.";
  2925. mes "I'm Zelmeto Abellov, the";
  2926. mes "field overseer. Have you";
  2927. mes "been in this facility before?";
  2928. next;
  2929. mes "[Zelmeto]";
  2930. mes "This factory plays an";
  2931. mes "important role in our city";
  2932. mes "and generates a lot of income.";
  2933. mes "However, our employess suffer";
  2934. mes "from a poor work environment.";
  2935. next;
  2936. mes "[Zelmeto]";
  2937. mes "Our superintendant makes a lot";
  2938. mes "of money and seems content with";
  2939. mes "the current situation. However, the";
  2940. mes "rest of the workforce doesn't enjoy";
  2941. mes "all of the benefits he receives.";
  2942. mes "[Zelmeto]";
  2943. mes "Many people have already";
  2944. mes "quit and there are only a few";
  2945. mes "people who continue to work";
  2946. mes "here. So now we're understaffed";
  2947. mes "and I'm in quite a bind...";
  2948. next;
  2949. mes "[Zelmeto]";
  2950. mes "There are some urgent";
  2951. mes "tasks I need done, but";
  2952. mes "there's no way for me";
  2953. mes "to recruit new workers.";
  2954. mes "Ah, I'm sorry, I've spoken too";
  2955. mes "freely about my own problems...";
  2956. next;
  2957. menu "You're understaffed?",s_Underst,"No, it's okay.",-;
  2958. mes "[Zelmeto]";
  2959. mes "Thank you for";
  2960. mes "your kindness.";
  2961. mes "And please don't";
  2962. mes "let anyone know about";
  2963. mes "anything I just told you.";
  2964. close;
  2965. s_Underst:
  2966. mes "[Zelmeto]";
  2967. mes "Yes, we are!";
  2968. mes "I don't have enough";
  2969. mes "people to inspect the";
  2970. mes "factory machines and";
  2971. mes "determine what kinds";
  2972. mes "of problems we have.";
  2973. next;
  2974. mes "[Zelmeto]";
  2975. mes "It's a time consuming";
  2976. mes "task I'd rather do on my";
  2977. mes "own. However, between that";
  2978. mes "and managing the workforce,";
  2979. mes "I don't have enough time...";
  2980. next;
  2981. menu "I can help you.",s_Help,"Keep up the good job.",-;
  2982. mes "[Zelmeto]";
  2983. mes "Well, it's a living.";
  2984. mes "^6A6A6A*Sigh*^000000 I can put up with";
  2985. mes "this, but I hope the higher";
  2986. mes "ups will consider improving";
  2987. mes "the work environment here...";
  2988. close;
  2989. s_Help:
  2990. mes "[Zelmeto]";
  2991. mes "You can help me?";
  2992. mes "I know something like";
  2993. mes "this is too much to ask,";
  2994. mes "but I'll accept any help";
  2995. mes "anyone offers me. I'm";
  2996. mes "that desperate.";
  2997. next;
  2998. mes "[Zelmeto]";
  2999. mes "Alright, I'll have you";
  3000. mes "inspect the machines";
  3001. mes "in the factory one by one.";
  3002. mes "It's imperative that we know";
  3003. mes "what needs to be repaired";
  3004. mes "and what's working fine";
  3005. next;
  3006. mes "[Zelmeto]";
  3007. mes "First, find the ^FF00002nd control";
  3008. mes "panel^000000 and determine its";
  3009. mes "status. I'm fairly certain that";
  3010. mes "it broke a long time ago, but";
  3011. mes "it wouldn't hur to make sure.";
  3012. mes "You should find it easily.";
  3013. next;
  3014. mes "[Zelmeto]";
  3015. mes "When you finish your";
  3016. mes "inspection, report back";
  3017. mes "to me so I can tell you";
  3018. mes "which machine to check";
  3019. mes "next. Thanks again for";
  3020. mes "offering to help";
  3021. set EinFactory,1;
  3022. close;
  3023. s_Switches:
  3024. switch(EinFactory){
  3025. case 1:
  3026. mes "[Zelmeto]";
  3027. mes "If you would,";
  3028. mes "please inspect the";
  3029. mes "2nd control panel that";
  3030. mes "seems to have been";
  3031. mes "broken for a while...";
  3032. close;
  3033. break;
  3034. case 2:
  3035. mes "[Zelmeto]";
  3036. mes "Huh, I see.";
  3037. mes "We must do something";
  3038. mes "about that as soon as";
  3039. mes "we can. Now, let me tell";
  3040. mes "you what to check next.";
  3041. next;
  3042. mes "[Zelmeto]";
  3043. mes "There are 3 automatic";
  3044. mes "pressure governors which";
  3045. mes "hammer the bent iron plates";
  3046. mes "from above to flatten them. It";
  3047. mes "seems that one of them may";
  3048. mes "have some kind of problem.";
  3049. next;
  3050. mes "[Zelmeto]";
  3051. mes "Please inspect the ^FF0000automatic";
  3052. mes "pressure governors^000000. Even if the";
  3053. mes "problem seems small, please";
  3054. mes "report it to me. I know it might";
  3055. mes "seem fine now, but I want to";
  3056. mes "prevent an accident if I can.";
  3057. next;
  3058. mes "[Zelmeto]";
  3059. mes "Thank you";
  3060. mes "in advance,";
  3061. mes "adventurer.";
  3062. set EinFactory,3;
  3063. close;
  3064. break;
  3065. case 3:
  3066. mes "[Zelmeto]";
  3067. mes "You need to inspect";
  3068. mes "an automatic pressure";
  3069. mes "governor. It looks fine,";
  3070. mes "but sometimes it makes";
  3071. mes "strange noises.";
  3072. next;
  3073. mes "[Zelmeto]";
  3074. mes "It probably will";
  3075. mes "be a good idea to";
  3076. mes "check that machine";
  3077. mes "more carefully this";
  3078. mes "time, just in case.";
  3079. next;
  3080. mes "[Zelmeto]";
  3081. mes "Thank you";
  3082. mes "for helping us,";
  3083. mes "adventurer.";
  3084. close;
  3085. break;
  3086. case 4:
  3087. mes "[Zelmeto]";
  3088. mes "What...?";
  3089. mes "This is worse";
  3090. mes "than I expected. But";
  3091. mes "it's good that we know";
  3092. mes "about these problems";
  3093. mes "as soon as possible.";
  3094. next;
  3095. mes "[Zelmeto]";
  3096. mes "Don't you worry,";
  3097. mes "we'll take care of";
  3098. mes "this. In the meantime,";
  3099. mes "I'd like you to inspect";
  3100. mes "the next machine for me.";
  3101. next;
  3102. mes "[Zelmeto]";
  3103. mes "I want you to check";
  3104. mes "a ^FF0000control panel^000000. It's the";
  3105. mes "same kind as the one";
  3106. mes "you just inspected, but";
  3107. mes "bigger in size.";
  3108. next;
  3109. mes "[Zelmeto]";
  3110. mes "It's located in the";
  3111. mes "middle of the factory,";
  3112. mes "so you should be able";
  3113. mes "to find it. It may be in bad";
  3114. mes "condition, even though it's";
  3115. mes "operating fine for now...";
  3116. next;
  3117. mes "[Zelmeto]";
  3118. mes "We need to ensure that";
  3119. mes "it's stable, reliable and";
  3120. mes "doesn't pose a threat to";
  3121. mes "our workforce. Thanks";
  3122. mes "again, adventurer.";
  3123. set EinFactory,5;
  3124. close;
  3125. break;
  3126. case 5:
  3127. mes "[Zelmeto]";
  3128. mes "I'd like you to inspect";
  3129. mes "the control panel. It's";
  3130. mes "fairly large and can be";
  3131. mes "found in the middle of the";
  3132. mes "factory. You shouldn't have";
  3133. mes "too much trouble finding it.";
  3134. close;
  3135. break;
  3136. case 6:
  3137. mes "[Zelmeto]";
  3138. mes "I see...";
  3139. mes "It's most likely that";
  3140. mes "there was a short";
  3141. mes "circuit and most";
  3142. mes "of the internal devices";
  3143. mes "were burnt out...";
  3144. next;
  3145. mes "[Zelmeto]";
  3146. mes "Thanks for checking";
  3147. mes "that out for me. Now,";
  3148. mes "the next machine I need";
  3149. mes "you to inspect is different";
  3150. mes "than the others I've had";
  3151. mes "you examine.";
  3152. next;
  3153. mes "[Zelmeto]";
  3154. mes "It's a mechanical";
  3155. mes "hand that transports";
  3156. mes "small objects. We didn't";
  3157. mes "really give it a name, but";
  3158. mes "you should be able to find it.";
  3159. next;
  3160. mes "[Zelmeto]";
  3161. mes "Recently, it seems";
  3162. mes "that there have been";
  3163. mes "problems in operating";
  3164. mes "that machine. If something's";
  3165. mes "broken, we need to know";
  3166. mes "and fix it right away.";
  3167. next;
  3168. mes "[Zelmeto]";
  3169. mes "Thanks again";
  3170. mes "in advance.";
  3171. set EinFactory,7;
  3172. close;
  3173. break;
  3174. case 7:
  3175. mes "[Zelmeto]";
  3176. mes "The machine which";
  3177. mes "I want you to inspect";
  3178. mes "this time is a small";
  3179. mes "sized conveyor.";
  3180. next;
  3181. mes "[Zelmeto]";
  3182. mes "Be sure that you";
  3183. mes "inspect the small";
  3184. mes "one, since we also";
  3185. mes "have a large conveyor";
  3186. mes "in the factory as well";
  3187. close;
  3188. break;
  3189. case 8:
  3190. mes "[Zelmeto]";
  3191. mes "Huh?";
  3192. mes "I'm suprised to hear";
  3193. mes "that. ^6A6A6A*Sigh*^000000 There's just";
  3194. mes "too many things that need";
  3195. mes "fixing. This is terrible...";
  3196. next;
  3197. mes "[Zelmeto]";
  3198. mes "Well, let me worry";
  3199. mes "about that for now. Please";
  3200. mes "focus on continuing to inspect";
  3201. mes "some of the other machines.";
  3202. next;
  3203. mes "[Zelmeto]";
  3204. mes "Now, there's a pipe inside";
  3205. mes "this factory that I want you";
  3206. mes "to look at. Many of our pipes";
  3207. mes "aren't in the best condition,";
  3208. mes "but this particular one might";
  3209. mes "be severely damaged.";
  3210. next;
  3211. mes "[Zelmeto]";
  3212. mes "Now, the pipe I want";
  3213. mes "you to inspect is located";
  3214. mes "near those large caultrons";
  3215. mes "of molten metal. You should";
  3216. mes "be able to find it pretty easily";
  3217. next;
  3218. mes "[Zelmeto]";
  3219. mes "Thanks again";
  3220. mes "for your help,";
  3221. mes "adventurer.";
  3222. set EinFactory,9;
  3223. close;
  3224. break;
  3225. case 9:
  3226. mes "[Zelmeto]";
  3227. mes "The pipe I want";
  3228. mes "you to inspect is located";
  3229. mes "near those large caultrons";
  3230. mes "of molten metal. You should";
  3231. mes "be able to find it pretty easily";
  3232. next;
  3233. mes "[Zelmeto]";
  3234. mes "Thanks again";
  3235. mes "for your help,";
  3236. mes "adventurer.";
  3237. close;
  3238. break;
  3239. case 10:
  3240. mes "[Zelmeto]";
  3241. mes "This is";
  3242. mes "worse than";
  3243. mes "I imagined...";
  3244. next;
  3245. mes "[Zelmeto]";
  3246. mes "We've got to start";
  3247. mes "repairs as soon as we";
  3248. mes "can! Hopefully, we can";
  3249. mes "resolve this before";
  3250. mes "any serious problems happen...";
  3251. next;
  3252. mes "[Zelmeto]";
  3253. mes "Alright, the last";
  3254. mes "thing that you need to";
  3255. mes "inspect is a ^FF0000large conveyor^000000.";
  3256. mes "It's similiar to the one you";
  3257. mes "inspected before, but it's";
  3258. mes "bigger and more powerful.";
  3259. next;
  3260. mes "[Zelmeto]";
  3261. mes "We have only one of these";
  3262. mes "machines and it's usually";
  3263. mes "moved around a lot since";
  3264. mes "a lot of people in the factory";
  3265. mes "use it. I really don't know";
  3266. mes "where it could be now.";
  3267. next;
  3268. mes "[Zelmeto]";
  3269. mes "Still I'm sure that";
  3270. mes "it's inside the building,";
  3271. mes "so you should be able to";
  3272. mes "find it. I hope you can inspect";
  3273. mes "that conveyor for me soon.";
  3274. set EinFactory,11;
  3275. close;
  3276. break;
  3277. case 11:
  3278. mes "[Zelmeto]";
  3279. mes "The machine which";
  3280. mes "you are supposed to";
  3281. mes "inspect right now";
  3282. mes "is a large convyore.";
  3283. next;
  3284. mes "[Zelmeto]";
  3285. mes "Remember that we";
  3286. mes "also have a small sized";
  3287. mes "conveyor, so make sure";
  3288. mes "that you examine the";
  3289. mes "larger one, alright?";
  3290. close;
  3291. break;
  3292. case 12:
  3293. mes "[Zelmeto]";
  3294. mes "Well, I figured that both";
  3295. mes "conveyors would have";
  3296. mes "similiar problems. We";
  3297. mes "can fix them at the";
  3298. mes "same time, but it'll";
  3299. mes "be a hassle";
  3300. next;
  3301. mes "[Zelmeto]";
  3302. mes "Thank you so much for";
  3303. mes "your help. Without you,";
  3304. mes "I'm pretty sure we wouldn't";
  3305. mes "know about these problems";
  3306. mes "until it was too late.";
  3307. next;
  3308. mes "[Zelmeto]";
  3309. mes "Now, I've got to make sure";
  3310. mes "we have enough materials";
  3311. mes "to make the repairs so that";
  3312. mes "the machines will be safely";
  3313. mes "functioning again.";
  3314. next;
  3315. mes "[Zelmeto]";
  3316. mes "First, I better";
  3317. mes "hurry and request";
  3318. mes "an increase for the";
  3319. mes "Factory Repair budget";
  3320. mes "from our superintendant.";
  3321. set EinFactory,13;
  3322. close;
  3323. break;
  3324. case 13:
  3325. mes "[Zelmeto]";
  3326. mes "I've got to report this";
  3327. mes "to our superintendant";
  3328. mes "as soon as possible.";
  3329. next;
  3330. mes "[Zelmeto]";
  3331. mes "With any luck, he'll approve";
  3332. mes "a budget increase so that we";
  3333. mes "can get all of the materials";
  3334. mes "needed for the repairs.";
  3335. close;
  3336. break;
  3337. case 14:
  3338. mes "[Zelmeto]";
  3339. mes "...";
  3340. mes "......";
  3341. next;
  3342. mes "[Zelmeto]";
  3343. mes "^6A6A6A*Sigh*^000000";
  3344. mes "My proposal was rejected";
  3345. mes "by our superintendant. But";
  3346. mes "maintainance and repairs";
  3347. mes "are crucial for peak operating";
  3348. mes "efficiency and worker safety!";
  3349. next;
  3350. mes "[Zelmeto]";
  3351. mes "I'm frustrated and worried.";
  3352. mes "Maybe nothing will happen";
  3353. mes "for now, but we've got to";
  3354. mes "safeguard our future by";
  3355. mes "regularly maintaining";
  3356. mes "all of these machines";
  3357. next;
  3358. mes "[Zelmeto]";
  3359. mes "Even possible threats";
  3360. mes "to the safety of our workers";
  3361. mes "can't be ignored. Isn't there";
  3362. mes "something I can do? ^6A6A6A*Sigh*^000000";
  3363. next;
  3364. mes "[Zelmeto]";
  3365. mes "If we can";
  3366. mes "just get";
  3367. mes "20 ^FF0000Flexible Tube^000000,";
  3368. mes "10 ^FF0000Rusty Screw^000000 and";
  3369. mes "10 ^FF0000Used Iron Plate^000000,";
  3370. mes "we could make those repairs.";
  3371. next;
  3372. mes "[Zelmeto]";
  3373. mes "But without funds, there's";
  3374. mes "no way we can purchase";
  3375. mes "those items. If something";
  3376. mes "happens, who's going to";
  3377. mes "be responsible?";
  3378. set EinFactory,15;
  3379. close;
  3380. break;
  3381. case 15:
  3382. mes "[Zelmeto]";
  3383. if(countitem(7325) < 20 || countitem(7317) < 10 || countitem(7319) < 10){
  3384. mes "We need";
  3385. mes "at least";
  3386. mes "20 ^FF0000Flexible Tube^000000,";
  3387. mes "10 ^FF0000Rusty Screw^000000 and";
  3388. mes "10 ^FF0000Used Iron Plate^000000,";
  3389. mes "to repair this factory.";
  3390. next;
  3391. mes "[Zelmeto]";
  3392. mes "^6A6A6A*Sigh*^000000";
  3393. mes "But there's no way";
  3394. mes "we can get all of those";
  3395. mes "things. Our budget isn't";
  3396. mes "big enough to cover it.";
  3397. close;
  3398. }
  3399. mes "Ah, it's you again.";
  3400. mes "It's shameful letting";
  3401. mes "other people know about";
  3402. mes "our miserable situation...";
  3403. next;
  3404. mes "[Zelmeto]";
  3405. mes "There's nothing";
  3406. mes "worth seeing here,";
  3407. mes "so there really isn't";
  3408. mes "a point in you coming to";
  3409. mes "visit this place anymore.";
  3410. next;
  3411. menu "Give him the materials.",s_Give,"Huh.",-;
  3412. mes "[Zelmeto]";
  3413. mes "^6A6A6A*Sigh*^000000";
  3414. mes "I'm really worried";
  3415. mes "about this factory's";
  3416. mes "future. What is our";
  3417. mes "superintendant thinking...?";
  3418. close;
  3419. s_Give:
  3420. mes "[Zelmeto]";
  3421. mes "...Hm?";
  3422. mes "Aren't these the";
  3423. mes "materials we need";
  3424. mes "to make repairs in";
  3425. mes "the factory? How did";
  3426. mes "you find all of these?";
  3427. next;
  3428. if(countitem(7325) < 20 || countitem(7317) < 10 || countitem(7319) < 10)close;
  3429. delitem 7325,20;
  3430. delitem 7317,10;
  3431. delitem 7319,10;
  3432. set EinFactory,16;
  3433. set $EinPolution,$EinPolution+1;
  3434. if(BaseLevel < 41) set BaseExp,BaseExp+615;
  3435. if((BaseLevel >= 41) && (BaseLevel < 51)) set BaseExp,BaseExp+3075;
  3436. if((BaseLevel >= 51) && (BaseLevel < 61)) set BaseExp,BaseExp+6604;
  3437. if((BaseLevel >= 61) && (BaseLevel < 71)) set BaseExp,BaseExp+18508;
  3438. if((BaseLevel >= 71) && (BaseLevel < 81)) set BaseExp,BaseExp+32062;
  3439. if((BaseLevel >= 81) && (BaseLevel < 91)) set BaseExp,BaseExp+76026;
  3440. if(BaseLevel >= 91) set BaseExp,BaseExp+290675;
  3441. mes "[Zelmeto]";
  3442. mes "I don't know how";
  3443. mes "I can possible pay you";
  3444. mes "back for this great favor.";
  3445. mes "I appreciate that you've";
  3446. mes "stepped forward to help us.";
  3447. next;
  3448. mes "[Zelmeto]";
  3449. mes "Oh...!";
  3450. mes "In my years of managing,";
  3451. mes "I've learned the ultimate";
  3452. mes "motivation techniques. Let";
  3453. mes "me enhance your motivation";
  3454. mes "to show you my gratitude.";
  3455. next;
  3456. mes "[Zelmeto]";
  3457. mes "Now...";
  3458. mes "Just open your mind";
  3459. mes "and listen to my words";
  3460. mes "of encouragement";
  3461. mes "and inspiration...";
  3462. next;
  3463. mes "[Zelmeto]";
  3464. mes "^3131FFWhen the going";
  3465. mes "gets rough, you've";
  3466. mes "gotta get rougher!";
  3467. mes "You gotta climb that";
  3468. mes "mountain 'cause no one's";
  3469. mes "gonna climb it for you!";
  3470. next;
  3471. mes "[Zelmeto]";
  3472. mes "^3131FFDon't give it up!";
  3473. mes "Go for broke!";
  3474. mes "Losers are quitters";
  3475. mes "and quitters are losers!";
  3476. next;
  3477. mes "[Zelmeto]";
  3478. mes "^6A6A6A*Whew*";
  3479. mes "^000000I haven't given that much";
  3480. mes "inspiration in a while, but";
  3481. mes "your help was well worth it.";
  3482. mes "I'm going to start the repairs, but";
  3483. mes "once again I'd like to thank you.";
  3484. close;
  3485. break;
  3486. case 16:
  3487. mes "[Zelmeto]";
  3488. mes "We'll be putting good";
  3489. mes "use to the materials you";
  3490. mes "gave me. With your help,";
  3491. mes "our factory will operate";
  3492. mes "safely. At least, for just";
  3493. mes "a little while longer.";
  3494. close;
  3495. }
  3496. }
  3497. ein_in01.gat,50,232,4 script 2nd Control Panel 111,{
  3498. if(EinFactory == 1){
  3499. mes "^3131FFIt's the 2nd control panel";
  3500. mes "Zelmeto asked you to inspect.";
  3501. mes "it looks totally broken: screws";
  3502. mes "are missing, and the iron cover";
  3503. mes "has been bent open, revealing";
  3504. mes "a tangled mess of wires inside.";
  3505. set EinFactory,2;
  3506. close;
  3507. }
  3508. end;
  3509. }
  3510. ein_in01.gat,108,217,4 script 3rd Pressure Governor 111,{
  3511. if(EinFactory == 3){
  3512. mes "^3131FFAt first glance, this";
  3513. mes "pressure governor looks";
  3514. mes "perfectly fine. But after you";
  3515. mes "check it more carefully, you";
  3516. mes "find that it's making strange";
  3517. mes "grinding noises and a few of";
  3518. mes "the surface screws are loose.";
  3519. set EinFactory,4;
  3520. close;
  3521. }
  3522. end;
  3523. }
  3524. ein_in01.gat,61,259,4 script Main Control Panel 111,{
  3525. if(EinFactory == 5){
  3526. mes "^3131FFThe main control panel";
  3527. mes "doesn't look like it has";
  3528. mes "any problems. But after";
  3529. mes "tapping on its surface,";
  3530. mes "you hear a disheartening";
  3531. mes "hollow sound. It looks like";
  3532. mes "it's missing some parts...";
  3533. set EinFactory,6;
  3534. close;
  3535. }
  3536. end;
  3537. }
  3538. ein_in01.gat,47,197,4 script Conveyor#01 111,{
  3539. if(EinFactory == 7){
  3540. mes "^3131FFThe conveyor's movements";
  3541. mes "look jittery and clumsy. The";
  3542. mes "mechanical arm also doesn't";
  3543. mes "look powerful enough to bear";
  3544. mes "the loads that it's carrying. The";
  3545. mes "screws in the conveyor look";
  3546. mes "loose and rusted over.";
  3547. set EinFactory,8;
  3548. close;
  3549. }
  3550. end;
  3551. }
  3552. ein_in01.gat,100,267,4 script Pipe 111,{
  3553. if(EinFactory == 9){
  3554. mes "^3131FFThe inspection of this";
  3555. mes "pipe didn't take very long.";
  3556. mes "It's bloated and worn out";
  3557. mes "from long durations of";
  3558. mes "being overloaded with";
  3559. mes "pressure. It's a wonder";
  3560. mes "it hasn't exploded yet.";
  3561. set EinFactory,10;
  3562. close;
  3563. }
  3564. end;
  3565. }
  3566. ein_in01.gat,95,238,4 script Conveyor#02 111,{
  3567. if(EinFactory == 11){
  3568. mes "^3131FFThis conveyor seems";
  3569. mes "to have similiar problems";
  3570. mes "as its smaller version. Its";
  3571. mes "movements are awkward,";
  3572. mes "erratic and weak, and almost";
  3573. mes "all of its screws are rusted.";
  3574. set EinFactory,12;
  3575. close;
  3576. }
  3577. end;
  3578. }
  3579. //============================================================
  3580. //=============================================== Einbroch Uwe
  3581. //====================================================== Quest
  3582. einbroch.gat,215,180,5 script Uwe Kleine 85,{
  3583. if(EinUwe == 2)goto s_Cont2;
  3584. if(EinUwe == 1)goto s_Cont;
  3585. mes "[Uwe]";
  3586. mes "Cooking is such a joy~!";
  3587. mes "The scents, the flavors, the";
  3588. mes "sensation of sheer ^EFAEBDsatiation^000000...";
  3589. next;
  3590. menu "Um, isn't this a forge?",s_Forge,"Ignore him.",-;
  3591. mes "[Uwe]";
  3592. mes "Cooking begins with";
  3593. mes "fire and ends with fire.";
  3594. mes "There's a certain art to";
  3595. mes "creating fine, delicious";
  3596. mes "foods to delight the palate~";
  3597. close;
  3598. s_Forge:
  3599. mes "[Uwe]";
  3600. mes "Is this a forge?";
  3601. mes "Oh, sugar honey,";
  3602. mes "you haven't been here";
  3603. mes "before, haven't you?";
  3604. next;
  3605. mes "[Uwe]";
  3606. mes "My name is Uwe Kleine";
  3607. mes "and this is my forge~! I am";
  3608. mes "the most elegant Blacksmith";
  3609. mes "and the best chef here in the";
  3610. mes "Schwartzwald Republic~";
  3611. next;
  3612. mes "[Uwe]";
  3613. mes "So, how can";
  3614. if(Sex){
  3615. mes "I help you, you";
  3616. mes "adoooooooooorable";
  3617. mes "hunk of a man?";
  3618. }else{
  3619. mes "I help you?";
  3620. }
  3621. next;
  3622. menu "Talk about Einbroch",s_Ein,"Ask him to forge a Weapon.",s_Weap,"Master, I want to learn cooking.",s_Cook,"Cancel.",-;
  3623. mes "[Uwe]";
  3624. mes "Take care,";
  3625. mes "sugar honey~";
  3626. mes "Ho ho ho!";
  3627. close;
  3628. s_Ein:
  3629. mes "[Uwe]";
  3630. mes "Einbroch was originally";
  3631. mes "build to support Einbech's";
  3632. mes "mining efforts. Because it's";
  3633. mes "small and crowded with people,";
  3634. mes "there's no room to build the ore";
  3635. mes "refining factories over there.";
  3636. next;
  3637. mes "[Uwe]";
  3638. mes "Sine Einbroch used to be";
  3639. mes "an empty lot, it was perfect";
  3640. mes "for building factories. That's";
  3641. mes "what my grandfather told me a";
  3642. mes "long time ago. Anyway, Einbroch";
  3643. mes "quickly grew into a major city.";
  3644. next;
  3645. mes "[Uwe]";
  3646. mes "Now people think that this";
  3647. mes "city was never planned to be";
  3648. mes "just an extension of Einbech.";
  3649. mes "See that rampart over there?";
  3650. mes "It doesn't connection to Einbech";
  3651. mes "at all! No protection for them...";
  3652. next;
  3653. mes "[Uwe]";
  3654. mes "It's like the government";
  3655. mes "lost all interest in Einbech.";
  3656. mes "Even the miners there have";
  3657. mes "been moving here to work in";
  3658. mes "the factories. But more people";
  3659. mes "hasn't made this city more lively.";
  3660. next;
  3661. mes "[Uwe]";
  3662. mes "Einbroch may look modern";
  3663. mes "and exciting now, but soon";
  3664. mes "you'll see that there's no sign";
  3665. mes "of warmth or life. So... Just";
  3666. mes "don't live here in your old age.";
  3667. next;
  3668. menu "Then why are you here?",s_WhyHere,"I won't. Thanks for the advice.",-;
  3669. mes "[Uwe]";
  3670. mes "Oh, that is such";
  3671. mes "a good decision,";
  3672. mes "sugar honey! Oh, you";
  3673. mes "cutie adventurers are";
  3674. mes "so precious, so lovable.";
  3675. mes "^111111*Tee hee hee~*^000000";
  3676. next;
  3677. mes "[Uwe]";
  3678. mes "Well, that was";
  3679. mes "a fun talk. Come";
  3680. mes "back and visit, 'kay?";
  3681. mes "I'll miss you until";
  3682. mes "the next time~";
  3683. close;
  3684. s_WhyHere:
  3685. mes "[Uwe]";
  3686. mes "Well, I have some";
  3687. mes "precious memories of";
  3688. mes "this place. Once, there was";
  3689. mes "a man who lived here who";
  3690. mes "was just like a father to me.";
  3691. next;
  3692. mes "[Uwe]";
  3693. mes "Oh, but I'm sure that";
  3694. mes "you don't want to hear";
  3695. mes "about that. Next time you";
  3696. mes "drop by, we'll talk about";
  3697. mes "something more fun, 'kay?";
  3698. mes "Buhbye for now, cutie~";
  3699. close;
  3700. s_Weap:
  3701. mes "[Uwe]";
  3702. mes "Well...";
  3703. mes "I actually just";
  3704. mes "do smithing work";
  3705. mes "to create my own";
  3706. mes "cooking tools.";
  3707. next;
  3708. mes "[Uwe]";
  3709. mes "Oh, I understand";
  3710. mes "that somebody needs";
  3711. mes "to fight the monsters,";
  3712. mes "but I'm the wrong person";
  3713. mes "to ask for forging weapons.";
  3714. mes "I... am a strict pacifist~";
  3715. next;
  3716. mes "[Uwe]";
  3717. mes "Just go look";
  3718. mes "around for a little";
  3719. mes "bit, I'm sure you'll";
  3720. mes "find a Blacksmith";
  3721. mes "who's willing to forge";
  3722. mes "you a good weapon~";
  3723. close;
  3724. s_Cook:
  3725. mes "[Uwe]";
  3726. mes "Mm...?";
  3727. mes "Did you just";
  3728. mes "say that you";
  3729. mes "want to learn";
  3730. mes "the art of cooking?";
  3731. next;
  3732. mes "[Uwe]";
  3733. mes "I'm sorry, but I can't";
  3734. mes "really give culinary";
  3735. mes "lessons. But I will";
  3736. mes "give good advice for";
  3737. mes "hopeful beginners.";
  3738. next;
  3739. mes "[Uwe]";
  3740. mes "Now...";
  3741. mes "For your tuiton";
  3742. mes "I'll need-- Gosh,";
  3743. mes "there's just so many";
  3744. mes "things. Get some paper,";
  3745. mes "and a pen for this list...";
  3746. next;
  3747. mes "[Uwe]";
  3748. mes "Just kidding!";
  3749. mes "^111111*Titter~* ^000000I don't need";
  3750. mes "much to make some";
  3751. mes "cooking utensils. Bring";
  3752. mes "6 ^0000FFLarge Jellopies^000000. That's it!";
  3753. next;
  3754. mes "[Uwe]";
  3755. mes "In return, I will give you";
  3756. mes "1 Coal and some useful";
  3757. mes "cooking advice for novices.";
  3758. mes "I give this advice for free to";
  3759. mes "my smithing colleages, though.";
  3760. next;
  3761. mes "[Uwe]";
  3762. mes "Why ^EFAEBDdon't^000000 you";
  3763. mes "become a Blacksmith?";
  3764. mes "I'm much more confident";
  3765. mes "in that field. ^111111*Tee hee~*^000000";
  3766. next;
  3767. mes "[Uwe]";
  3768. mes "Well, I'll be";
  3769. mes "waiting right";
  3770. mes "here until you";
  3771. mes "come back.";
  3772. mes "^111111...*Tee hee~*";
  3773. set EinUwe,1;
  3774. close;
  3775. s_Cont:
  3776. mes "[Uwe]";
  3777. mes "Oh hello hello~";
  3778. mes "It's been a long";
  3779. mes "time since we've talked,";
  3780. mes "you cutie adventurer~";
  3781. next;
  3782. mes "[Uwe]";
  3783. mes "So, sugar honey,";
  3784. mes "how is it going with";
  3785. mes "the little favor I asked";
  3786. mes "you about last time?";
  3787. mes "Did you already forget";
  3788. mes "the 6 Large Jellopies?";
  3789. next;
  3790. menu "Talk about Einbroch",s_Ein,"Ask him to forge a Weapon.",s_Weap,"Give him the Materials.",s_Material,"Cancel.",-;
  3791. s_Material:
  3792. mes "[Uwe]";
  3793. if(countitem(7126) < 6){
  3794. mes "Huh...?";
  3795. mes "You brought";
  3796. if(countitem(7126))
  3797. mes "only " + countitem(7126) + " of them?";
  3798. else
  3799. mes "none at all...?";
  3800. mes "Next time, be sure";
  3801. mes "to bring 6 Large Jellopies,";
  3802. mes "okay? Don't forget, cutie~";
  3803. close;
  3804. }
  3805. delitem 7126,6;
  3806. getitem 1003,1;
  3807. set EinUwe,2;
  3808. mes "Thank you ^EFAEBDso^000000 much!";
  3809. mes "Here's the Coal I promised~";
  3810. next;
  3811. mes "[Uwe]";
  3812. mes "Now, I can't teach you everything";
  3813. mes "about cooking, but I will give you";
  3814. mes "some good advice for beginners.";
  3815. mes "I hope you pay attnetion, sugar";
  3816. mes "honey. Now what would you like";
  3817. mes "to hear more about? Hmm...?";
  3818. next;
  3819. s_Menu3:
  3820. menu "Heart",s_Heart,"Ingredients",s_Ingredients,"Skills",s_Skills,"Tools",s_Tools,"Cancel.",-;
  3821. mes "[Uwe]";
  3822. mes "Take care,";
  3823. mes "sugar honey~";
  3824. mes "Ho ho ho!";
  3825. close;
  3826. s_Heart:
  3827. mes "[Uwe]";
  3828. mes "Ah, heart. Just like forging,";
  3829. mes "you need passion and desire";
  3830. mes "to create something special.";
  3831. mes "Every smith and cook knows that";
  3832. mes "you can do anything if you have";
  3833. mes "the will and the commitments.";
  3834. next;
  3835. mes "[Uwe]";
  3836. mes "Well, that's all";
  3837. mes "I really have to";
  3838. mes "say about that. But";
  3839. mes "come back and chat";
  3840. mes "whenever you please.";
  3841. mes "...Behbie~";
  3842. close;
  3843. s_Ingredients:
  3844. mes "[Uwe]";
  3845. mes "Now, for beginners,";
  3846. mes "learning to select";
  3847. mes "and use ingredients";
  3848. mes "is one of the most";
  3849. mes "important fundamentals.";
  3850. next;
  3851. mes "[Uwe]";
  3852. mes "Cooking is like forging";
  3853. mes "since specific ingredients";
  3854. mes "are needed to make specialty";
  3855. mes "items or dishes. You can't just";
  3856. mes "skip them if you really need";
  3857. mes "them, right? Right!";
  3858. next;
  3859. mes "[Uwe]";
  3860. mes "Once you make up your";
  3861. mes "mind to do something,";
  3862. mes "focus on finishing it, 'kay?";
  3863. mes "Never cut corners and always";
  3864. mes "dedicate yourself to make the";
  3865. mes "very best finished product~";
  3866. next;
  3867. mes "[Uwe]";
  3868. mes "Well, that was";
  3869. mes "a fun talk. Come";
  3870. mes "back and visit, 'kay?";
  3871. mes "I'll miss you until";
  3872. mes "the next time~";
  3873. mes "...Ho ho~";
  3874. close;
  3875. s_Skills:
  3876. mes "[Uwe]";
  3877. mes "When you're beginning to learn";
  3878. mes "skills, you can't let yourself be";
  3879. mes "discouraged! Practice makes";
  3880. mes "perfect, you know? But never";
  3881. mes "use your lack of skills as an";
  3882. mes "excuse if you happen to fail...";
  3883. next;
  3884. mes "[Uwe]";
  3885. mes "Effort is also an essential";
  3886. mes "in forging and cooking! Now,";
  3887. mes "on the oher hand, if you put";
  3888. mes "in all the effort but didn't learn";
  3889. mes "any of the skills, you'll still get";
  3890. mes "nowhere fast, right? Right!";
  3891. next;
  3892. mes "[Uwe]";
  3893. mes "The key is to always";
  3894. mes "give 100% effort and work";
  3895. mes "on improving your skills.";
  3896. mes "Before you know it, you'll";
  3897. mes "be a respected master!";
  3898. next;
  3899. mes "[Uwe]";
  3900. mes "Well, that was";
  3901. mes "a fun talk. Come";
  3902. mes "back and visit, 'kay?";
  3903. mes "I'll miss you until";
  3904. mes "the next time~";
  3905. mes "...Ho ho~";
  3906. close;
  3907. s_Tools:
  3908. mes "[Uwe]";
  3909. mes "Cooking is a little";
  3910. mes "easier if you have";
  3911. mes "nicer tools to use,";
  3912. mes "but that's it. Tools by";
  3913. mes "themselves can't make";
  3914. mes "just anybody a master.";
  3915. next;
  3916. mes "[Uwe]";
  3917. mes "In the end, the best";
  3918. mes "tools are the ones you're";
  3919. mes "most comfortable with using.";
  3920. mes "In fact, I still use the old knife";
  3921. mes "I used back when I was just";
  3922. mes "a little novice chef~";
  3923. next;
  3924. mes "[Uwe]";
  3925. mes "Well, that was";
  3926. mes "a fun talk. Come";
  3927. mes "back and visit, 'kay?";
  3928. mes "I'll miss you until";
  3929. mes "the next time~";
  3930. mes "...Ho ho~";
  3931. close;
  3932. s_Cont2:
  3933. mes "[Uwe]";
  3934. mes "Ah, hello again,";
  3935. mes "cutie adventurer.";
  3936. mes "How can I help you?";
  3937. next;
  3938. menu "Talk about Einbroch",s_Ein,"Ask him to forge a Weapon.",s_Weap,"Talk about Cooking.",s_Cooking,"Cancel.",-;
  3939. mes "[Uwe]";
  3940. mes "Take care,";
  3941. mes "sugar honey~";
  3942. mes "Ho ho ho!";
  3943. close;
  3944. s_Cooking:
  3945. mes "[Uwe]";
  3946. mes "Ooh, cooking!";
  3947. mes "So what did you";
  3948. mes "want to ask me...?";
  3949. next;
  3950. goto s_Menu3;
  3951. OnHide:
  3952. specialeffect 16;
  3953. disablenpc "Uwe Kleine";
  3954. end;
  3955. OnUnhide:
  3956. misceffect 215;
  3957. end;
  3958. }