quests_veins.txt 189 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408
  1. //===== eAthena Script =======================================
  2. //= Veins Quests
  3. //===== By: ==================================================
  4. //= L0ne_W0lf
  5. //===== Current Version: =====================================
  6. //= 1.7
  7. //===== Compatible With: =====================================
  8. //= eAthena SVN
  9. //===== Description: =========================================
  10. //= [Aegis Conversion]
  11. //= Collection of Veins Quests
  12. //= Stone Quest:
  13. //= - Help an Old Man with his job.
  14. //= - Dialog obtained from iRO.
  15. //= - Variable in use: veins_stone (max 8)
  16. //= Spy Quest:
  17. //= - Help prove (or disprove) a bard's innocence.
  18. //= - Dialog obtained from iRO.
  19. //= - Variable in use: que_sch (max 26)
  20. //= Siblings Quest:
  21. //= - Help a boy save his little sister.
  22. //= - Dialog partially obtained from iRO.
  23. //= - Variable in use: rachel_camel (max 25)
  24. //= Thor Volcano Base Quest (Disabled):
  25. //= - Missing addition to High Priest Zhed to start quest.
  26. //= - Infiltrate Thor Volcano Base. What is Arunafeltz up to?
  27. //= - Variable in use: rachel_camel (max 27)
  28. //===== Additional Comments: =================================
  29. //= 1.0 First version, Added Veins Stone quest. [L0ne_W0lf]
  30. //= 1.1 Added Veins Spy Quest. [L0ne_W0lf]
  31. //= 1.2 Added Veins Siblings Quest. [L0ne_W0lf]
  32. //= Added Veins Thor Volcano Base Quest NPC. [L0ne_W0lf]
  33. //= Start NPC is missing, but will be added when I get it.
  34. //= 1.3 Fixed two typos small in Asbar. [L0ne_W0lf]
  35. //= 1.3a More fixes to some of the Base quest NPCs. [L0ne_W0lf]
  36. //= 1.4 Added missing checkweights. [L0ne_W0lf]
  37. //= 1.4a Corrected a typo error ";;". [Toms]
  38. //= 1.5 Added Nameless Island quest addition. [L0ne_W0lf]
  39. //= 1.5a Corrected a couple typos in Nameless Addition. [L0ne_W0lf]
  40. //= 1.6 Replaced effect numerics with constants. [L0ne_W0lf]
  41. //= 1.7 Moved a couple NPCs related to the Spy quest. [L0ne_W0lf]
  42. //============================================================
  43. // Stone Quest
  44. //============================================================
  45. ve_fild05,257,130,4 script Wincing Old Man#ve 945,{
  46. if ((MaxWeight - Weight) < 2000 || checkweight(1201,1) == 0) {
  47. mes "- Wait a moment! -";
  48. mes "- Currently you are carrying -";
  49. mes "- too many items with you. -";
  50. mes "- Please come back after -";
  51. mes "- you put some items into Kafra Storage. -";
  52. close;
  53. }
  54. if ((veins_stone == 0) && (BaseLevel > 59)) {
  55. mes "[Zabaroo]";
  56. mes "My back is killing me";
  57. mes "after stooping over to";
  58. mes "pick up stones all day long...";
  59. mes "The pain... It's unbearable!";
  60. next;
  61. switch(select("Bend with your knees, yo.:Gosh, how bad is it?")) {
  62. case 1:
  63. mes "[Zabaroo]";
  64. mes "Whippersnapper!";
  65. mes "I didn't ask you for";
  66. mes "your advice! Don't";
  67. mes "patronize an old man!";
  68. close;
  69. case 2:
  70. mes "[Zabaroo]";
  71. mes "Oh, it hurts so much, it's";
  72. mes "almost crippling. But I don't";
  73. mes "have any choice. I need to";
  74. mes "get enough stops to fill";
  75. mes "this gap if I want to get";
  76. mes "paid. Arrrrgh, damn it!";
  77. next;
  78. mes "[Zabaroo]";
  79. mes "If I don't get enough";
  80. mes "money to pay for my";
  81. mes "granddaughter's medicine,";
  82. mes "I won't be able to buy any";
  83. mes "medicine for my granddaughter!";
  84. mes "And that will be horrible! Ag!";
  85. next;
  86. select("Can I help?");
  87. mes "[Zabaroo]";
  88. mes "I appreciate your kindness,";
  89. mes "stranger, but no. I have";
  90. mes "to do this on my own.";
  91. mes "A man must have his pride....";
  92. next;
  93. mes "^333333*Snap*^000000";
  94. next;
  95. mes "[Zabaroo]";
  96. mes "Argh! My back...!";
  97. mes "This was totally";
  98. mes "unforeseeable!";
  99. mes "Please! Please,";
  100. mes "for the love of Freya,";
  101. mes "please help me!";
  102. next;
  103. select("I will help you.");
  104. mes "[Zabaroo]";
  105. mes "Thank you!";
  106. mes "Thanks so much!";
  107. next;
  108. select("What do you want me to do?");
  109. mes "[Zabaroo]";
  110. mes "Ow-ow-ow! Oh... Okay...";
  111. mes "You see those all dark";
  112. mes "stones stuck in the ground?";
  113. mes "Those are what I need to";
  114. mes "pick up. Now don't go";
  115. mes "lifting rocks just yet...";
  116. next;
  117. mes "[Zabaroo]";
  118. mes "I asked some other old";
  119. mes "man in town, Absar, to";
  120. mes "make me something to help";
  121. mes "with my back. He was going";
  122. mes "to help me if I gave hi--";
  123. mes "ARGH! My back! It hurts!";
  124. next;
  125. mes "[Zabaroo]";
  126. mes "It hurts so bad! But it's";
  127. mes "especially painful right";
  128. mes "when I'm about to finish";
  129. mes "sentences in which I intend to";
  130. mes "tell you important informat--";
  131. mes "ARRRGH! Find Absar! Quickly!";
  132. next;
  133. while(1) {
  134. mes "[Zabaroo]";
  135. mes "Wait, wait...";
  136. mes "Maybe I can answer";
  137. mes "a few of your questions";
  138. mes "before my body is wracked";
  139. mes "with throbbing pain. Let's...";
  140. mes "Let's at least give it a try.";
  141. next;
  142. switch(select("What's with these stones?:Where's the old man?:Nothing.")) {
  143. case 1:
  144. mes "[Zabaroo]";
  145. mes "Well, we use these dark";
  146. mes "stones because they're";
  147. mes "pretty and easy to process.";
  148. mes "They're sort of a specialty";
  149. mes "of this town. I get paid to";
  150. mes "harvest these handy rocks.";
  151. next;
  152. mes "[Zabaroo]";
  153. mes "We can sell these to tourists,";
  154. mes "and we even have a factory";
  155. mes "that uses these stones.";
  156. mes "Still, it's not like the";
  157. mes "townspeople are getting";
  158. mes "rich off these stones.";
  159. next;
  160. mes "[Zabaroo]";
  161. mes "All of us are still";
  162. mes "barely making a living...";
  163. next;
  164. break;
  165. case 2:
  166. mes "[Zabaroo]";
  167. mes "Absar? He's inside";
  168. mes "the Tool Shop. You";
  169. mes "can't miss him... Just";
  170. mes "look for the man with";
  171. mes "the crazy eyes!";
  172. next;
  173. break;
  174. case 3:
  175. mes "[Zabaroo]";
  176. mes "Thanks for your help.";
  177. mes "If you can't find Absar";
  178. mes "in the Tool Shop, then";
  179. mes "you might want to stop";
  180. mes "by the Tavern. A-auuugh!";
  181. set veins_stone,1;
  182. close;
  183. }
  184. }
  185. }
  186. }
  187. else if (veins_stone == 1) {
  188. mes "[Zabaroo]";
  189. mes "Thanks for your help.";
  190. mes "If you can't find Absar";
  191. mes "in the Tool Shop, then";
  192. mes "you might want to stop";
  193. mes "by the Tavern. A-auuugh!";
  194. close;
  195. }
  196. else if (veins_stone < 4) {
  197. mes "[Zabaroo]";
  198. mes "Geez, Absar sure can";
  199. mes "be fussy. Still, do your";
  200. mes "best to get what he wants.";
  201. mes "He won't help me otherwise!";
  202. mes "Other than that, he's not";
  203. mes "really that bad a guy...";
  204. close;
  205. }
  206. else if (veins_stone == 4) {
  207. mes "[Zabaroo]";
  208. mes "Oh good, you're back!";
  209. mes "Did you bring what";
  210. mes "Absar made for me?";
  211. next;
  212. select("Yes, here...");
  213. mes "[Zabaroo]";
  214. mes "So this is what he";
  215. mes "was talking about?";
  216. mes "How does it... Ah!";
  217. mes "Here we go! If I pull";
  218. mes "the handle, that end of";
  219. mes "the stick will pick stuff up!";
  220. next;
  221. mes "[Zabaroo]";
  222. mes "This is great! I won't";
  223. mes "have to bend over to pick";
  224. mes "up stones anymore! Heh,";
  225. mes "he must be awfully proud";
  226. mes "of this useful invention~";
  227. mes "I can imagine him strutting.";
  228. next;
  229. mes "[Zabaroo]";
  230. mes "Um, did he have anything";
  231. mes "to say after he gave this";
  232. mes "to you? I'm just curious.";
  233. next;
  234. select("This message...");
  235. mes "[Zabaroo]";
  236. mes "Oh... I thought he";
  237. mes "would forget all about";
  238. mes "that. Well, it's a relief";
  239. mes "to know that now. That's";
  240. mes "really very nice of him.";
  241. next;
  242. mes "Zabaroo]";
  243. mes "I hate to ask you...";
  244. mes "But would you mind";
  245. mes "helping me out one";
  246. mes "more time?";
  247. next;
  248. select("Huh? What is it?");
  249. mes "[Zabaroo]";
  250. mes "Don't worry, it's not";
  251. mes "too hard. Would you just";
  252. mes "deliver the stones I gathered";
  253. mes "to the factory in town? It's";
  254. mes "near the airport or airship or";
  255. mes "something. It won't take long.";
  256. set veins_stone,5;
  257. close;
  258. }
  259. else if (veins_stone < 7) {
  260. mes "[Zabaroo]";
  261. mes "Thanks again for your help!";
  262. mes "What did Asbar call this";
  263. mes "thing again? A Tactile...";
  264. mes "Extendable... Damn it...";
  265. mes "Why's the name so long?";
  266. mes "Anyway, it's usefull~";
  267. close;
  268. }
  269. else if (veins_stone == 7) {
  270. mes "[Zabaroo]";
  271. mes "Oh, you're back!";
  272. mes "I really appreciate all";
  273. mes "of your help. I don't have";
  274. mes "much, and I know you weren't";
  275. mes "expecting a reward, but I'd";
  276. mes "like to give you something.";
  277. next;
  278. mes "[Zabaroo]";
  279. mes "Ah, here we are. I found";
  280. mes "these while harvesting stones";
  281. mes "I was told that adventurers";
  282. mes "find these useful. Anyway,";
  283. mes "I hope you like these rocks...";
  284. set veins_stone,8;
  285. getexp 300000,0;
  286. getitem 985,3; //Elunium
  287. close;
  288. }
  289. else if (veins_stone > 7) {
  290. mes "[Zabaroo]";
  291. mes "Thanks to you and Asbar,";
  292. mes "my poor back hasn't been";
  293. mes "bothering me at all lately.";
  294. mes "I should be taking better";
  295. mes "care of myself at my age...";
  296. close;
  297. }
  298. mes "[Zabaroo]";
  299. mes "I'm sorry dear.";
  300. mes "You're not strong enough for this kind of work.";
  301. mes "Put on some muscle and talk to me again.";
  302. close;
  303. }
  304. ve_in,169,310,6 script Strange Old Man#ve 121,{
  305. if (veins_stone == 0) {
  306. mes "[Absar]";
  307. mes "Bwahahaha!";
  308. mes "Once... Once this is completed, I'll...";
  309. mes "Mwahahahahahahahah!";
  310. close;
  311. }
  312. else if (veins_stone == 1) {
  313. mes "[Absar]";
  314. mes "I'm so close to";
  315. mes "completion. Now, if";
  316. mes "I just turn this here...";
  317. next;
  318. if (select("Excuse me...:........") == 1) {
  319. mes "[Absar]";
  320. mes "What?! Who dares";
  321. mes "disturb me?! N-no!";
  322. mes "Look! Look what you did!";
  323. mes "You made me screw up!";
  324. next;
  325. specialeffect EF_LORD;
  326. percentheal -30,0;
  327. next;
  328. mes "[Absar]";
  329. mes "!@#$%#@#$!*~";
  330. mes "F$#@#%^^^&&!";
  331. close2;
  332. warp "ve_in",262,309;
  333. end;
  334. }
  335. mes "[Absar]";
  336. mes "Oh, no...";
  337. next;
  338. specialeffect EF_ASPERSIO;
  339. next;
  340. mes "[Absar]";
  341. mes "How...?!";
  342. mes "No! I failed again!";
  343. mes "D-DAAAAAAAAAAAMN IIIII--";
  344. next;
  345. mes "[Absar]";
  346. mes "Huh? What are you...";
  347. mes "What do you want?";
  348. next;
  349. select("Oh, I-I'm...");
  350. mes "[Absar]";
  351. mes "Spit it out. Tell me";
  352. mes "what you want, not your";
  353. mes "name. Hurry, can't you";
  354. mes "see that I'm busy?";
  355. next;
  356. if (select("I... I'm sorry.:I'm here for Mr. Zabaroo...") == 1) {
  357. mes "[Absar]";
  358. mes "If only you didn't";
  359. mes "interrupt me! Then";
  360. mes "I'd already have...";
  361. mes "Ugh! Back to work!";
  362. close;
  363. }
  364. mes "[Absar]";
  365. mes "Zabaroo? What does...";
  366. mes "Oh. Never mind. I think";
  367. mes "I remember what he asked";
  368. mes "me to make him. So did";
  369. mes "you bring all the materials?";
  370. next;
  371. if (select("Yes:What materials...?") == 1) {
  372. mes "[Absar]";
  373. mes "Great, we can get";
  374. mes "started and m--";
  375. mes "Liar. You don't even know";
  376. mes "what you're supposed to";
  377. mes "bring me, do you?!";
  378. mes "Get out of here!";
  379. close2;
  380. warp "ve_in",262,309;
  381. end;
  382. }
  383. mes "[Absar]";
  384. mes "Of course. I didn't tell him";
  385. mes "what materials I needed";
  386. mes "anyway. Heh heh! Now, this";
  387. mes "is what I need you to bring.";
  388. mes "Listen up, okay? And hurry.";
  389. next;
  390. mes "[Absar]";
  391. mes "^4D4DFF5 Maneater Roots^000000,";
  392. mes "^4D4DFF2 Glacial Hearts^000000, and";
  393. mes "^4D4DFF5 Steel^000000. If you don't";
  394. mes "come back soon, then";
  395. mes "I won't help you. I've got";
  396. mes "projects I'm working on!";
  397. set veins_stone,2;
  398. close;
  399. }
  400. else if (veins_stone == 2) {
  401. if (countitem(999) > 4 && countitem(7561) > 1 && countitem(1033) > 4) {
  402. mes "[Absar]";
  403. mes "Good, you finally";
  404. mes "brought everthing.";
  405. mes "I was just about to";
  406. mes "give up on you, so";
  407. mes "consider yourself lucky!";
  408. next;
  409. mes "[Absar]";
  410. mes "Give me a second.";
  411. mes "You won't have to";
  412. mes "wait long to see";
  413. mes "my great invention!";
  414. delitem 999,5; //Steel
  415. delitem 1033,5; //Root_Of_Maneater
  416. delitem 7561,2; //Ice_Heart
  417. set veins_stone,3;
  418. close2;
  419. specialeffect EF_FIRESPLASHHIT;
  420. end;
  421. }
  422. mes "[Absar]";
  423. mes "What the hell?";
  424. mes "Hurry and bring";
  425. mes "^4D4DFF5 Maneater Roots^000000,";
  426. mes "^4D4DFF2 Glacial Hearts^000000, and";
  427. mes "^4D4DFF5 Steel^000000! Do you think";
  428. mes "I'm doing this for fun?!";
  429. close;
  430. }
  431. else if (veins_stone == 3) {
  432. mes "[Absar]";
  433. mes "Here you are...";
  434. mes "Well, I don't know";
  435. mes "if you appreciate";
  436. mes "inventions, but this";
  437. mes "is a Tactile Extendable";
  438. mes "Clamp-Release Mechanism!";
  439. next;
  440. mes "["+strcharinfo(0)+"]";
  441. mes "Tack... What...?";
  442. next;
  443. mes "[Absar]";
  444. mes "...............................";
  445. mes "You can use this to pick";
  446. mes "things up. From a distance.";
  447. next;
  448. mes "[Absar]";
  449. mes "Anyway, when you get back";
  450. mes "to Zabaroo, let me him know";
  451. mes "that he doesn't owe me";
  452. mes "anything anymore. He'll...";
  453. mes "He'll know what I mean...";
  454. set veins_stone,4;
  455. close;
  456. }
  457. mes "[Absar]";
  458. mes "It's a ''Tactile Extendable";
  459. mes "Clamp-Release Mechanism.''";
  460. mes "What's so hard to understand";
  461. mes "about that? Hmpf! I know!";
  462. mes "It must be the educational";
  463. mes "system! They're to blame!";
  464. close;
  465. }
  466. ve_in02,37,28,4 script Factory Manager 898,{
  467. if (veins_stone < 5) {
  468. mes "[Mirhen]";
  469. mes "Hey, employees only beyond this point!";
  470. mes "Geez, don't we have a sigh that says that?";
  471. mes "We should get one...";
  472. mes "Anyway, get out of here.";
  473. close2;
  474. warp "veins",269,221;
  475. end;
  476. }
  477. else if (veins_stone == 5) {
  478. mes "[Mirhen]";
  479. mes "Hey, employees only";
  480. mes "beyond this point!";
  481. mes "Geez, don't we have";
  482. mes "a sign that says that?";
  483. mes "We should get one...";
  484. mes "Anyway, get out of here.";
  485. next;
  486. if (select("I'm sorry.:I've brought these...") == 1) {
  487. mes "[Mirhen]";
  488. mes "You're sorry,";
  489. mes "I get it. Ummm...";
  490. mes "Aren't you leaving?";
  491. close;
  492. }
  493. mes "[Mirhen]";
  494. mes "Huh? What's this name";
  495. mes "tag? Zabaroo? Wait a sec...";
  496. mes "You're definitely not him!";
  497. next;
  498. select("I'm here on his behalf.");
  499. mes "[Mirhen]";
  500. mes "Ah, I get it. Zabaroo's";
  501. mes "back has really been";
  502. mes "bothering him lately.";
  503. mes "Okay, we can bend the";
  504. mes "rules a bit in this situation.";
  505. next;
  506. mes "[Mirhen]";
  507. mes "Bring those rocks over";
  508. mes "to Bahed over there.";
  509. mes "He'll take care of them.";
  510. set veins_stone,6;
  511. close;
  512. }
  513. mes "[Mirhen]";
  514. mes "Hetarium ...";
  515. mes "What's so special about";
  516. mes "it? I mean, it looks just like";
  517. mes "Iron Ore. Why the hell is";
  518. mes "it like classified info?";
  519. next;
  520. mes "[Mirhen]";
  521. mes "I wish I could return to";
  522. mes "Rekenber Headquarters...";
  523. mes "I hate being stuck here";
  524. mes "gathering silly rocks in";
  525. mes "the middle of nowhere.";
  526. close;
  527. }
  528. ve_in02,54,49,2 script Factory Worker#ve1 943,{
  529. if (veins_stone < 6) {
  530. mes "[Bahed]";
  531. mes "lately, I've been feeling so weak...";
  532. mes "I heard the guy before me had to quit because he also started feeling weak.";
  533. next;
  534. mes "[Bahed]";
  535. mes "It couldn't be...";
  536. mes "It couldn't be because of this 'Hetarium'...";
  537. mes "That's just plain crazy...";
  538. close;
  539. }
  540. else if (veins_stone == 6) {
  541. mes "[Bahed]";
  542. mes "Oh, you got the rocks?";
  543. mes "You brought them for Zabaroo?";
  544. mes "Oh, how is he doing? I hear";
  545. mes "he threw out his back.";
  546. next;
  547. select("He still hurts.");
  548. mes "[Bahed]";
  549. mes "Oh no... I'm so sorry";
  550. mes "to hear that. I hope he";
  551. mes "feels better soon. Anyway,";
  552. mes "why don't you bring the";
  553. mes "rocks over here?";
  554. next;
  555. mes "[Bahed]";
  556. mes "Let me confirm Zabaroo's";
  557. mes "quota for today. Ah, and";
  558. mes "don't worry, We pay him";
  559. mes "for his quotas regularly.";
  560. next;
  561. select("I have a question...");
  562. mes "[Bahed]";
  563. mes "Hm? What'd you want";
  564. mes "to know? I can't say that";
  565. mes "I know everything, but";
  566. mes "I'll try my best to tell you";
  567. mes "what I know. I mean,";
  568. mes "you helped Zabaroo, so...";
  569. next;
  570. select("What's this Hetarium??");
  571. mes "[Bahed]";
  572. mes "Well, it hasn't been that";
  573. mes "long since these rocks";
  574. mes "attracted attention outside";
  575. mes "of town. Before all this,";
  576. mes "the townspeople just";
  577. mes "made carvings out of them.";
  578. next;
  579. mes "[Bahed]";
  580. mes "Then, all of a sudden,";
  581. mes "these people from--I guess";
  582. mes "it was Schwaltzvalt--came";
  583. mes "and bought a lot of these";
  584. mes "stones. Later, they even built";
  585. mes "this factory to process them!";
  586. next;
  587. mes "[Bahed]";
  588. mes "Oh, they tried using machines";
  589. mes "to harvest these stones, but";
  590. mes "they all broke down too soon.";
  591. mes "That's why they hired people";
  592. mes "in Veins to collect them.";
  593. next;
  594. mes "[Bahed]";
  595. mes "I'm not sure many people";
  596. mes "know who owns this factory.";
  597. mes "Maybe it's Rekenber? Yes,";
  598. mes "I saw one of their corporate";
  599. mes "airships come to town, so";
  600. mes "I think it might be them.";
  601. next;
  602. select("How do they use Hetarium??");
  603. mes "[Bahed]";
  604. mes "I'm not really sure. I just";
  605. mes "happened to overhear some";
  606. mes "of the higher ups mention";
  607. mes "something about hearts?";
  608. mes "Pieces of hearts? Doesn't";
  609. mes "make any sense to me.";
  610. next;
  611. mes "[Bahed]";
  612. mes "All I gathered was that";
  613. mes "they were using the stones";
  614. mes "to build a machine related";
  615. mes "to those hearts. That's";
  616. mes "all I know. Anyway, please";
  617. mes "leave the stones over there~";
  618. set veins_stone,7;
  619. close;
  620. }
  621. mes "[Bahed]";
  622. mes "Everyday I feel";
  623. mes "weaker and weaker...";
  624. mes "Could this be chronic";
  625. mes "fatigue syndrome? Ugh...";
  626. close;
  627. }
  628. ve_in02,68,39,7 script Factory Worker#ve2 943,{
  629. mes "[Worker]";
  630. mes "What the heck are these rocks?";
  631. mes "They're ordinary stones, aren't they?";
  632. mes "They don't pay me enough here...";
  633. close;
  634. }
  635. // Spy Quest
  636. //============================================================
  637. prontera,202,122,0 script Kid#sch 703,{
  638. if (que_sch == 0) {
  639. mes "[Rooney]";
  640. mes "Where the heck";
  641. mes "is it? I don't... Where...?";
  642. mes "He's got to be around here";
  643. mes "somewhere, I think...";
  644. next;
  645. if (select("What's wrong?:...") == 1) {
  646. mes "[Rooney]";
  647. mes "Oh, it's just...";
  648. mes "Some guy sent me on a";
  649. mes "delivery errand, but I can't";
  650. mes "find the recipient. He said";
  651. mes "that I can't miss him, but";
  652. mes "I still can't figure it out.";
  653. next;
  654. mes "[Rooney]";
  655. mes "I should have asked for";
  656. mes "the exact location. I mean,";
  657. mes "if I don't find him, then I'll";
  658. mes "never get paid for doing";
  659. mes "this delivery. ^333333*Sigh*^000000";
  660. next;
  661. if (select("Sounds tough. Good luck!:Do you need any help?") == 1) {
  662. mes "[Rooney]";
  663. mes "Thanks. I think";
  664. mes "I just might need it.";
  665. mes "Where could this guy";
  666. mes "be? If he's expecting";
  667. mes "a delivery, he should";
  668. mes "make himself easy to find...";
  669. close;
  670. }
  671. mes "[Rooney]";
  672. mes "Yeah, sure, it'd be great";
  673. mes "if you could help me. Let's";
  674. mes "see, I need to deliver this";
  675. mes "letter to a bard named...";
  676. mes "It was... Ah, ^FF0000Lasda Midar^000000!";
  677. next;
  678. mes "[Rooney]";
  679. mes "I've looked everywhere";
  680. mes "in town for someone that";
  681. mes "looks like a Bard, but I'm";
  682. mes "not having any luck. If you";
  683. mes "find him, would you tell me?";
  684. set que_sch,1;
  685. close;
  686. }
  687. close;
  688. }
  689. else if (que_sch == 1) {
  690. mes "[Rooney]";
  691. mes "I still haven't";
  692. mes "found Lasda Midar.";
  693. mes "Would you let me know";
  694. mes "if you find him so that";
  695. mes "I can deliver his letter?";
  696. close;
  697. }
  698. else if (que_sch == 2) {
  699. if (Zeny < 100) {
  700. mes "[Rooney]";
  701. mes "Lasda Midar...";
  702. mes "Where the heck";
  703. mes "could that guy be?";
  704. close;
  705. }
  706. else {
  707. mes "[Rooney]";
  708. mes "Wow, did you really";
  709. mes "find Lasda Midar?";
  710. mes "Why couldn't I find him?";
  711. mes "Anyway, thank you so much";
  712. mes "for your help. I thought I was";
  713. mes "going to fail my delivery!";
  714. next;
  715. select("He asked me to give you this.");
  716. mes "[Rooney]";
  717. mes "Hey, alright! Thanks";
  718. mes "for the cash! Heh heh~";
  719. set zeny,zeny-100;
  720. set que_sch,3;
  721. close;
  722. }
  723. }
  724. mes "[Rooney]";
  725. mes "Nice day out, isn't it?";
  726. close;
  727. }
  728. prt_church,89,108,6 script Bard#sch 741,{
  729. if ((MaxWeight-Weight) < 2000 || checkweight(1201,1) == 0) {
  730. mes "^3355FFWait a second!";
  731. mes "Right now, you're carrying";
  732. mes "too many things with you.";
  733. mes "Please come back after";
  734. mes "using the Kafra Service";
  735. mes "to store some of your items.^000000";
  736. close;
  737. }
  738. if (que_sch < 1) {
  739. mes "[Lasda]";
  740. mes "Hello there, isn't today";
  741. mes "such a wonderful day?";
  742. mes "Nice weather always";
  743. mes "inspires the poet in me,";
  744. mes "and I can't seem to stop";
  745. mes "singing my heart out~";
  746. close;
  747. }
  748. else if (que_sch == 1) {
  749. mes "[Lasda]";
  750. mes "Why, what a glorious";
  751. mes "day! I should sing a song";
  752. mes "in praise of its wonder!";
  753. mes "Ooooh... La la la-la~";
  754. mes "Girls, girls, giiiirls...";
  755. next;
  756. switch(select("Excuse me...:......")) {
  757. case 1:
  758. mes "[Lasda]";
  759. mes "Why, what a glorious";
  760. mes "day! I should sing a song";
  761. mes "in praise of its wonder!";
  762. mes "Ooooh... La la la-la~";
  763. mes "Girls, girls, giiiirls...";
  764. close;
  765. case 2:
  766. mes "[Lasda]";
  767. mes "Girls, girls, giiiirls...";
  768. mes "Making my heart";
  769. mes "beat like... Like it's";
  770. mes "going too fast. My heart's";
  771. mes "racing... And you're at the";
  772. mes "finish line--Love Champion!";
  773. next;
  774. mes "[Lasda]";
  775. mes "Oh? Don't stare at me";
  776. mes "like that, you're making";
  777. mes "me blush. Did you need to";
  778. mes "talk to me or something?.";
  779. next;
  780. switch(select("I'm sorry.:Are you ^ff0000Lasda Midar^000000?")) {
  781. case 1:
  782. mes "[Lasda]";
  783. mes "Oh, that's alright.";
  784. mes "...............................";
  785. mes "Girl, I'll laugh at all your";
  786. mes "jokes, and agree with yourv";
  787. mes "politics~ You're hot! But";
  788. mes "baby, you're dumb as bricks~";
  789. close;
  790. case 2:
  791. mes "[Lasda]";
  792. mes "Oh? Oh, yes, that's me.";
  793. mes "How can I help you?";
  794. next;
  795. select("I'm here to deliver this to you.");
  796. mes "[Lasda]";
  797. mes "Ah! He must have finally";
  798. mes "sent it. Would you please";
  799. mes "give me a second? Let's see...";
  800. next;
  801. mes "^3355FFLasda opened the letter";
  802. mes "and started reading it.^000000";
  803. next;
  804. mes "[Lasda]";
  805. mes "Umm...";
  806. mes "Oh, no...";
  807. next;
  808. mes "[Lasda]";
  809. mes "Ah, I'm sorry for";
  810. mes "making you wait.";
  811. mes "Here, please give";
  812. mes "this money to that";
  813. mes "kid that was supposed";
  814. mes "to come find me here.";
  815. set que_sch,2;
  816. set zeny,zeny+100;
  817. next;
  818. mes "[Lasda]";
  819. mes "I'd like you to come";
  820. mes "talk to me again later";
  821. mes "if you have the time";
  822. mes "See you around~";
  823. close;
  824. }
  825. }
  826. }
  827. else if (que_sch == 2) {
  828. mes "^3355FFLasda seems to be";
  829. mes "lost in deep thought.^000000";
  830. close;
  831. }
  832. else if (que_sch == 3) {
  833. mes "[Lasda]";
  834. mes "Oh good, you came back!";
  835. mes "Thanks for delivering that";
  836. mes "letter for me. Listen, you";
  837. mes "mind listening to me for";
  838. mes "a bit? I want to ask you";
  839. mes "for your help with something.";
  840. next;
  841. if (select("Sure.:No.") == 1) {
  842. mes "[Lasda]";
  843. mes "You see, the letter you";
  844. mes "brought me was from my old";
  845. mes "best friend. I haven't heard";
  846. mes "from him for a while, so";
  847. mes "I was pretty worried...";
  848. next;
  849. mes "[Lasda]";
  850. mes "Vitre said in his letter";
  851. mes "that he's in jail under";
  852. mes "false charges so he wants";
  853. mes "me to help him out. However,";
  854. mes "there isn't much I can do.";
  855. mes "Do you think you can help him?";
  856. next;
  857. if (select("Sure.:No.") == 1) {
  858. mes "[Lasda]";
  859. mes "Thank you so much!";
  860. mes "I guess the best thing";
  861. mes "to do for now is to find";
  862. mes "my friend in a prison in";
  863. mes "^FF0000Morroc^000000, and see what";
  864. mes "you can do to help him..";
  865. set que_sch,4;
  866. close;
  867. }
  868. mes "[Lasda]";
  869. mes "I... I guess...";
  870. mes "You must not be";
  871. mes "able to help him too...";
  872. close;
  873. }
  874. mes "[Lasda]";
  875. mes "I suppose that you";
  876. mes "must already be busy";
  877. mes "doing something else.";
  878. mes "Well, I understand...";
  879. close;
  880. }
  881. else if (que_sch < 8) {
  882. mes "[Lasda]";
  883. mes "I still can't believe";
  884. mes "Vitre is being held";
  885. mes "in prison in Morroc. I mean,";
  886. mes "what could have happened?";
  887. mes "I hope you can help him...";
  888. close;
  889. }
  890. else if (que_sch == 8) {
  891. mes "[Lasda]";
  892. mes "He was arrested because";
  893. mes "he's suspected of espionage?";
  894. mes "That doesn't make any sense.";
  895. mes "What could be going on?";
  896. next;
  897. select("^ff0000Krieg^000000 told me that.");
  898. mes "[Lasda]";
  899. mes "Krieg? Do you mean Krieg";
  900. mes "Laje Mandi? I know him quite";
  901. mes "well, actually. Let me write";
  902. mes "you a letter or recommendation.";
  903. mes "Hopefully, it'll be enough to";
  904. mes "let you enter the prison.";
  905. set que_sch,9;
  906. close;
  907. }
  908. else if (que_sch == 9) {
  909. mes "[Lasda]";
  910. mes "Hurry and go bring";
  911. mes "my letter to Krieg.";
  912. mes "I wonder what happened...";
  913. mes "There must be some kind";
  914. mes "of weird misunderstanding.";
  915. close;
  916. }
  917. else if (que_sch < 19) {
  918. mes "[Lasda]";
  919. mes "He really asked you";
  920. mes "to break him out of jail?";
  921. mes "Well, I know that's a morally";
  922. mes "hazy area, but I hope that";
  923. mes "you do your best to help Vitre.";
  924. close;
  925. }
  926. else if (que_sch < 25) {
  927. mes "[Lasda]";
  928. mes "Thanks for offering";
  929. mes "to help me out. I still";
  930. mes "can't believe Vitre had";
  931. mes "the gall to just break";
  932. mes "out of prison, though...";
  933. next;
  934. mes "[Lasda]";
  935. mes "I still can't do";
  936. mes "anything to help him,";
  937. mes "so please do what you";
  938. mes "can to take care of him";
  939. mes "for me. I really appreciate it.";
  940. close;
  941. }
  942. else if (que_sch == 25) {
  943. mes "[Lasda]";
  944. mes "Ah, you're back. I'm sure";
  945. mes "you have a lot to ask me";
  946. mes "right now. You deserve to";
  947. mes "know that everything I asked";
  948. mes "you to do was part of a plan";
  949. mes "to confirm Vitre's guilt.";
  950. next;
  951. mes "[Lasda]";
  952. mes "We arrested him once";
  953. mes "we learned that he was";
  954. mes "an Arunafeltz spy, but we";
  955. mes "couldn't punish him since";
  956. mes "we lacked concrete proof.";
  957. next;
  958. mes "[Lasda]";
  959. mes "That's why we allowed";
  960. mes "him to escape: we planned";
  961. mes "on following him to get the";
  962. mes "proof that we needed. Our";
  963. mes "sting was even able to round";
  964. mes "up all of his compatriots!";
  965. next;
  966. mes "[Lasda]";
  967. mes "I'm sorry for keeping";
  968. mes "you in the dark, but it was";
  969. mes "essential to the plan. We";
  970. mes "couldn't have done it without";
  971. mes "your help. Please take this";
  972. mes "reward with our sincere thanks.";
  973. set que_sch,26;
  974. getitem 12106,1; //Accessory_Box
  975. getexp 600000,0;
  976. close;
  977. }
  978. else {
  979. mes "[Lasda]";
  980. mes "We're having too many";
  981. mes "cases involving spies";
  982. mes "like Vitre lately. This";
  983. mes "might be a sign that";
  984. mes "Arunafeltz is planning";
  985. mes "to move against us...";
  986. close;
  987. }
  988. }
  989. morocc,53,87,7 script Prison Ward#sch 707,{
  990. if (que_sch < 4) {
  991. mes "[Jesse]";
  992. mes "Only authorized";
  993. mes "personnel can enter";
  994. mes "this prison. You need";
  995. mes "a permit if you want";
  996. mes "to be able to enter.";
  997. close;
  998. }
  999. else if (que_sch == 4) {
  1000. mes "[Jesse]";
  1001. mes "What? You want to meet";
  1002. mes "the prisoner? I'm sorry,";
  1003. mes "but he's not allowed to";
  1004. mes "see anyone since he was";
  1005. mes "arrested on suspicion";
  1006. mes "of espionage.";
  1007. set que_sch,5;
  1008. close;
  1009. }
  1010. else if (que_sch == 5) {
  1011. mes "[Jesse]";
  1012. mes "Huh. You're awfully";
  1013. mes "persistent. Alright,";
  1014. mes "if you can do me a favor,";
  1015. mes "I'll let you in. Bring me";
  1016. mes "1 dish of ^FF0000Fried Monkey Tails^000000";
  1017. next;
  1018. mes "[Jesse]";
  1019. mes "Of course, I can only let";
  1020. mes "you inside. Whether they'll";
  1021. mes "actually let you meet the";
  1022. mes "prisoner is another matter.";
  1023. mes "So do we have a deal?";
  1024. set que_sch,6;
  1025. close;
  1026. }
  1027. else if (que_sch == 6) {
  1028. if (countitem(12066) > 0) {
  1029. mes "[Jesse]";
  1030. mes "Ah, that's the stuff!";
  1031. mes "Thanks for the Fried";
  1032. mes "Monkey Tails~ Alright,";
  1033. mes "go talk to ^FF0000Sir Krieg^000000 in";
  1034. mes "Morroc Castle. Get his";
  1035. mes "approval, and I'll let you in.";
  1036. delitem 12066,1; //Luk_Dish01
  1037. set que_sch,7;
  1038. close;
  1039. }
  1040. mes "[Jesse]";
  1041. mes "Bring me a plate of";
  1042. mes "^FF0000Fried Monkey Tails^000000.";
  1043. mes "Do it, or I won't help";
  1044. mes "you out. I mean, I know";
  1045. mes "you mean well, but I'm";
  1046. mes "risking my job here...";
  1047. close;
  1048. }
  1049. else if (que_sch < 10) {
  1050. mes "[Jesse]";
  1051. mes "You didn't get approval";
  1052. mes "from Sir Krieg yet? You'd";
  1053. mes "better do it, or there's no";
  1054. mes "point in entering this prison.";
  1055. mes "You can't just sneak around";
  1056. mes "inside this place, you know?";
  1057. close;
  1058. }
  1059. else if (que_sch == 10) {
  1060. mes "[Jesse]";
  1061. mes "Did you really get";
  1062. mes "Sir Krieg's approval?";
  1063. mes "Alright, you may enter now.";
  1064. close2;
  1065. warp "ra_in01",48,355;
  1066. end;
  1067. }
  1068. else if (que_sch < 19) {
  1069. mes "[Jesse]";
  1070. mes "Do you want to enter?";
  1071. next;
  1072. if (select("Yes.:No") == 1) {
  1073. mes "[Jesse]";
  1074. mes "Be careful when you talk";
  1075. mes "to that guy: he's a smooth";
  1076. mes "talker, and almost charmed";
  1077. mes "a lot of the guards into";
  1078. mes "letting him go free.";
  1079. close2;
  1080. warp "ra_in01",48,355;
  1081. end;
  1082. }
  1083. mes "[Jesse]";
  1084. mes "Take your time.";
  1085. mes "If you're not mentally";
  1086. mes "prepared, then it's not";
  1087. mes "a good idea to talk";
  1088. mes "to the prisoner.";
  1089. close;
  1090. }
  1091. else if (que_sch < 19) {
  1092. mes "[Jesse]";
  1093. mes "Argh, I'm in trouble.";
  1094. mes "The prisoner escaped.";
  1095. mes "How could I let this...";
  1096. mes "happen?! Damn, I need to";
  1097. mes "report this to Mr. Krieg";
  1098. close;
  1099. }
  1100. mes "[Jesse]";
  1101. mes "What a relief! They";
  1102. mes "really set it up so that";
  1103. mes "the prisoner could escape?";
  1104. mes "Well, I thought I was going";
  1105. mes "to get fired for all that.";
  1106. close;
  1107. }
  1108. morocc_in,79,163,0 script Public Security Officer 748,{
  1109. if (que_sch < 7) {
  1110. mes "[Krieg]";
  1111. mes "I'm in charge of public";
  1112. mes "security here in Morroc.";
  1113. mes "Lately, there have been";
  1114. mes "more incidents disturbing";
  1115. mes "the public peace and";
  1116. mes "many unsettling rumors...";
  1117. close;
  1118. }
  1119. else if (que_sch == 7) {
  1120. mes "[Krieg]";
  1121. mes "Hello, adventurer.";
  1122. mes "How may I help you?";
  1123. next;
  1124. select("I'd like to see a prisoner, Mr. Vitre.");
  1125. mes "[Krieg]";
  1126. mes "Vitre? I'm sorry, but";
  1127. mes "I can't approve of that.";
  1128. mes "I'd allow visitors for normal";
  1129. mes "prisoners, but not for people";
  1130. mes "suspected of espionage.";
  1131. mes "That's why he's in jail.";
  1132. next;
  1133. mes "[Krieg]";
  1134. mes "If I knew you personally,";
  1135. mes "or if someone I trust can";
  1136. mes "vouch for you, then I'd";
  1137. mes "reconsider letting you";
  1138. mes "meet Vitre. Otherwise,";
  1139. mes "I just can't do it.";
  1140. set que_sch,8;
  1141. close;
  1142. }
  1143. else if (que_sch == 8) {
  1144. mes "[Krieg]";
  1145. mes "I can't let you meet";
  1146. mes "Vitre until I'm absolutely";
  1147. mes "sure that you're not involved";
  1148. mes "with any espionage activities.";
  1149. close;
  1150. }
  1151. else if (que_sch == 9) {
  1152. mes "[Krieg]";
  1153. mes "I can't let you meet";
  1154. mes "Vitre until I'm absolutely";
  1155. mes "sure that you're not involved";
  1156. mes "with any espionage activities.";
  1157. next;
  1158. select("Here's a letter from Lasda.");
  1159. mes "[Krieg]";
  1160. mes "Lasda? Now there's a";
  1161. mes "man I hold in high regard.";
  1162. mes "Please let me read what";
  1163. mes "he has to say. Hmmm...";
  1164. next;
  1165. mes "[Krieg]";
  1166. mes "Alright, I'll let you visit";
  1167. mes "Vitre. I'll send a message";
  1168. mes "to the prison ward so that";
  1169. mes "he'll let you talk to him.";
  1170. set que_sch,10;
  1171. close;
  1172. }
  1173. else if (que_sch < 26) {
  1174. mes "[Krieg]";
  1175. mes "Hmm... This is almost too";
  1176. mes "difficult for me to handle.";
  1177. mes "What should I do?";
  1178. close;
  1179. }
  1180. mes "[Krieg]";
  1181. mes "I understand that you were";
  1182. mes "instrumental in solving a";
  1183. mes "problem regarding public";
  1184. mes "safety. I'd just like to thank";
  1185. mes "you, and apologize for any";
  1186. mes "trouble I might have caused.";
  1187. close;
  1188. }
  1189. ra_in01,48,352,0 warp que_sch_jail 1,1,morocc,56,89
  1190. ra_in01,50,387,4 script Upset Looking Bard#sch 51,{
  1191. if (que_sch < 10) {
  1192. mes "[Vitre]";
  1193. mes ".............";
  1194. close;
  1195. }
  1196. else if (que_sch == 10) {
  1197. mes "[Vitre]";
  1198. mes "...............................";
  1199. mes "...............................";
  1200. mes "...............................";
  1201. mes "Damn, what should I do?";
  1202. next;
  1203. select("Excuse me...");
  1204. mes "[Vitre]";
  1205. mes "Hm? I'm Vitre Bizlita.";
  1206. mes "As you can see, I'm not in";
  1207. mes "any real position to help";
  1208. mes "you. Still, did you want";
  1209. mes "to ask me something?";
  1210. next;
  1211. switch(select("Nothing.:I'm here on behalf of Mr. Lasda.")) {
  1212. case 1:
  1213. mes "[Vitre]";
  1214. mes "Well...";
  1215. mes "It's nice to";
  1216. mes "receive visitors.";
  1217. mes "Jail can be lonely....";
  1218. close;
  1219. case 2:
  1220. mes "[Vitre]";
  1221. mes "Oh, good. Lasda finally";
  1222. mes "got my letter, eh? I don't";
  1223. mes "know what the hell's going";
  1224. mes "on. I mean, all I remember";
  1225. mes "is that these strange men";
  1226. mes "came and brought me here.";
  1227. next;
  1228. mes "[Vitre]";
  1229. mes "I... I don't think";
  1230. mes "they'll let me out";
  1231. mes "of here. I mean, they";
  1232. mes "jailed me and there's no";
  1233. mes "proof I did anything wrong.";
  1234. next;
  1235. mes "[Vitre]";
  1236. mes "My life is in danger as";
  1237. mes "long as I'm here, so I have";
  1238. mes "to get out as soon as I can.";
  1239. mes "Luckily, I figured out that";
  1240. mes "I can open these doors if";
  1241. mes "I just had 2 things.";
  1242. next;
  1243. mes "[Vitre]";
  1244. mes "I just need a ^FF0000Megaphone^000000";
  1245. mes "and a ^FF0000Violin^000000. Luckily, they're";
  1246. mes "pretty mundane objects, so no";
  1247. mes "one would suspect anything if";
  1248. mes "you brought them here. Um...";
  1249. mes "You will help me, won't you?";
  1250. next;
  1251. mes "[Vitre]";
  1252. mes "I understand if you have any";
  1253. mes "doubts about my innocence.";
  1254. mes "But think about it: wouldn't";
  1255. mes "you want to see what I do";
  1256. mes "with a Megaphone and Violin?";
  1257. mes "Sounds pretty cool, huh?";
  1258. next;
  1259. mes "^3355FFYou can hear someone";
  1260. mes "mumbling from the cell";
  1261. mes "next to Vitre's.^000000";
  1262. next;
  1263. mes "[????]";
  1264. mes "I wonder how the lady";
  1265. mes "in the Dancer Job Change";
  1266. mes "place is doing by now...";
  1267. set que_sch,11;
  1268. close;
  1269. }
  1270. }
  1271. else if (que_sch < 18) {
  1272. mes "[Vitre]";
  1273. mes "Didn't you bring the";
  1274. mes "Megaphone and Violin?";
  1275. mes "The longer I sit here,";
  1276. mes "the more likely it is";
  1277. mes "that they'll kill me!";
  1278. close;
  1279. }
  1280. else if (que_sch == 18) {
  1281. if (countitem(7040) > 0 && countitem(1901) > 0) {
  1282. mes "[Vitre]";
  1283. mes "You brought me a";
  1284. mes "Megaphone and Violin?";
  1285. mes "Perfect! Now, step aside";
  1286. mes "Can't have you getting hurt.";
  1287. next;
  1288. mes "...............................";
  1289. mes "...............................";
  1290. mes "...............................";
  1291. next;
  1292. mes "^3355FFVitre drew in a deep";
  1293. mes "breath, and then smashed";
  1294. mes "the steel bars of his cell";
  1295. mes "with the Violin. Surprisingly,";
  1296. mes "the door swings open with";
  1297. mes "a very loud noise.^000000";
  1298. next;
  1299. mes "[Vitre]";
  1300. mes "Heh! That was a little";
  1301. mes "harder than I thought,";
  1302. mes "but it looks like I'm free~";
  1303. mes "Alright, let's get a move on.";
  1304. next;
  1305. mes "[Jesse]";
  1306. mes "What?! What's this noise?!";
  1307. next;
  1308. enablenpc "Jesse#sch";
  1309. mes "[Jesse]";
  1310. mes "Hey! How did you";
  1311. mes "get out of your cell?!";
  1312. mes "Get back in there, NOW!";
  1313. next;
  1314. mes "[Vitre]";
  1315. mes "If you were me, would";
  1316. mes "you go back in your cell";
  1317. mes "just because someone's";
  1318. mes "yelling at you? Forget it~";
  1319. next;
  1320. mes "^3355FFVitre raised the Megaphone";
  1321. mes "to his mouth, and drew in";
  1322. mes "another deep breath.^000000";
  1323. next;
  1324. mes "[Vitre]";
  1325. mes "Wah!";
  1326. next;
  1327. mes "[Jesse]";
  1328. mes "Arg...";
  1329. mes "Oh Lord...!";
  1330. mes "M-my ears...";
  1331. next;
  1332. mes "[Vitre]";
  1333. mes "Heh! I love it when";
  1334. mes "a plan comes together~";
  1335. mes "Let's get out of here!";
  1336. next;
  1337. delitem 1901,1; //Violin
  1338. delitem 7040,1; //Megaphone
  1339. set que_sch,19;
  1340. close2;
  1341. disablenpc "Jesse#sch";
  1342. warp "morocc",294,153;
  1343. end;
  1344. }
  1345. mes "[Vitre]";
  1346. mes "Didn't you bring";
  1347. mes "a Megaphone and";
  1348. mes "a Violin? Please";
  1349. mes "hurry, I don't have";
  1350. mes "much time left!";
  1351. close;
  1352. }
  1353. else {
  1354. mes "[Vitre]";
  1355. mes "Heh! I love it when";
  1356. mes "a plan comes together~";
  1357. mes "Let's get out of here!";
  1358. close2;
  1359. warp "morocc",294,153;
  1360. end;
  1361. }
  1362. }
  1363. ra_in01,58,389,0 script Jesse#sch 707,{
  1364. end;
  1365. OnInit:
  1366. disablenpc "Jesse#sch";
  1367. end;
  1368. }
  1369. ra_in01,58,389,0 script Guant Prisoner#sch 929,{
  1370. if (que_sch < 11) {
  1371. mes "[Ruan]";
  1372. mes "This stinks. Why am";
  1373. mes "I locked up in here?";
  1374. mes "I didn't do anything";
  1375. mes "to deserve this!";
  1376. next;
  1377. mes "[Ruan]";
  1378. mes "It's getting to be so";
  1379. mes "bad that I even miss the";
  1380. mes "sound of Hianna's voice.";
  1381. mes "It's freakishly loud.";
  1382. mes "You couldn't outyell her";
  1383. mes "even with a Megaphone.";
  1384. close;
  1385. }
  1386. else if (que_sch == 11) {
  1387. mes "[Ruan]";
  1388. mes "This stinks. Why am";
  1389. mes "I locked up in here?";
  1390. mes "I didn't do anything";
  1391. mes "to deserve this!";
  1392. next;
  1393. mes "[Ruan]";
  1394. mes "It's getting to be so";
  1395. mes "bad that I even miss the";
  1396. mes "sound of Hianna's voice.";
  1397. mes "It's freakishly loud.";
  1398. mes "You couldn't outyell her";
  1399. mes "even with a Megaphone.";
  1400. next;
  1401. mes "["+strcharinfo(0)+"]";
  1402. mes "What...?!";
  1403. next;
  1404. select("Where I can find that Megaphone?");
  1405. mes "[Ruan]";
  1406. mes "Huh? Why would you";
  1407. mes "want to know that?";
  1408. next;
  1409. select("I really need one!");
  1410. mes "[Ruan]";
  1411. mes "Uh, you can get one from";
  1412. mes "that Dancer Job Change";
  1413. mes "place in Comodo. They're";
  1414. mes "really hard to get, though,";
  1415. mes "if not impossible. Knock";
  1416. mes "yourself out, buddy.";
  1417. close;
  1418. }
  1419. else if (que_sch < 20) {
  1420. mes "[Ruan]";
  1421. mes "Nobody knows what";
  1422. mes "will happen tomorrow.";
  1423. mes "I mean, this is a world of";
  1424. mes "miracles and tragedies.";
  1425. mes "Death, or real love...";
  1426. mes "You will never know what will happen.";
  1427. close;
  1428. }
  1429. mes "[Ruan]";
  1430. mes "........";
  1431. close;
  1432. }
  1433. // Escort Dancers to Schwaltzvalt Republic
  1434. job_duncer,93,106,6 script Dance Instructor#sch 892,{
  1435. if ((MaxWeight-Weight) < 2000 || checkweight(1201,1) == 0) {
  1436. mes "^3355FFWait a second!";
  1437. mes "Right now, you're carrying";
  1438. mes "too many things with you.";
  1439. mes "Please come back after";
  1440. mes "using the Kafra Service";
  1441. mes "to store some of your items.^000000";
  1442. close;
  1443. }
  1444. if (que_sch < 11) {
  1445. mes "[Hianna]";
  1446. mes "Keep up the good work,";
  1447. mes "everyone! There's only";
  1448. mes "a few days left until the";
  1449. mes "big performance! Hey...";
  1450. mes "You! Can't you do it right?";
  1451. mes "Turn your waist quicker!";
  1452. close;
  1453. }
  1454. else if (que_sch == 11) {
  1455. mes "[Hianna]";
  1456. mes "Hey, who are you?";
  1457. mes "We already have enough";
  1458. mes "problems with too many";
  1459. mes "pervs ogling the Dancers.";
  1460. mes "I'd prefer it if you didn't";
  1461. mes "come to watch us practice.";
  1462. next;
  1463. if (select("I want a Megaphone.:Eeek...") == 2) {
  1464. mes "[Hianna]";
  1465. mes "If you really want to";
  1466. mes "watch us dance, come to";
  1467. mes "the show and buy a ticket.";
  1468. mes "Watching for free isn't";
  1469. mes "exactly supporting the arts.";
  1470. close;
  1471. }
  1472. mes "[Hianna]";
  1473. mes "You want a Megaphone?";
  1474. mes "Well, I'm sorry, but it's";
  1475. mes "not just something I can";
  1476. mes "lend to anybody. Then again";
  1477. mes "it's not like you can find one";
  1478. mes "anywhere else, either.";
  1479. next;
  1480. if (select("Please! I'll do anything!:Later.") == 2) {
  1481. mes "[Hianna]";
  1482. mes "Alright, then.";
  1483. mes "I'm sorry that";
  1484. mes "I can't help you.";
  1485. close;
  1486. }
  1487. mes "[Hianna]";
  1488. mes "Anything, huh?";
  1489. mes "Well, you just said";
  1490. mes "the magic word. Listen";
  1491. mes "carefully to what I want";
  1492. mes "you to do for me.";
  1493. next;
  1494. if (select("Listen:Reconsider") == 1) {
  1495. mes "[Hianna]";
  1496. mes "First, I want a little";
  1497. mes "cash. Consider it a rental";
  1498. mes "fee. 500,000 zeny should be";
  1499. mes "just about enough. Then,";
  1500. mes "I want you to do me a favor.";
  1501. next;
  1502. mes "[Hianna]";
  1503. mes "The Schwaltzvalt Republic";
  1504. mes "requested me to send some";
  1505. mes "Dancers for some party, but";
  1506. mes "I don't have enough guards";
  1507. mes "to protect them on their";
  1508. mes "way over there.";
  1509. next;
  1510. mes "[Hianna]";
  1511. mes "If you act as bodyguard";
  1512. mes "to my Dancers on the way";
  1513. mes "to the Schwaltzvalt Republic,";
  1514. mes "I'll lend you my Megaphone";
  1515. mes "once you come back. So...";
  1516. mes "How does that sound?";
  1517. next;
  1518. if (select("Sounds good.:Like a ripoff.") == 1) {
  1519. mes "[Hianna]";
  1520. mes "I'm glad you agree~";
  1521. mes "Okay, the Dancers are";
  1522. mes "waiting are the entrance,";
  1523. mes "so bring them over to the";
  1524. mes "Schwaltzvalt Republic as";
  1525. mes "soon as you're ready.";
  1526. set que_sch,12;
  1527. close;
  1528. }
  1529. mes "[Hianna]";
  1530. mes "So... I guess you";
  1531. mes "didn't need that";
  1532. mes "Megaphone as";
  1533. mes "badly as I thought.";
  1534. close;
  1535. }
  1536. mes "[Hianna]";
  1537. mes "Alright, take your";
  1538. mes "time. I'm in no rush.";
  1539. close;
  1540. }
  1541. else if (que_sch < 17) {
  1542. mes "[Hianna]";
  1543. mes "What are you still doing";
  1544. mes "here? Shouldn't you be";
  1545. mes "escorting the Dancers to";
  1546. mes "the Schwaltvalt Republic";
  1547. mes "already? Get a move on~";
  1548. close;
  1549. }
  1550. else if (que_sch == 17) {
  1551. mes "[Hianna]";
  1552. mes "Thanks for all your";
  1553. mes "hard work. The Dancers";
  1554. mes "told me that you did a good";
  1555. mes "job escorting them. Now...";
  1556. mes "Do you have the money?";
  1557. next;
  1558. if (select("Yes:No") == 1) {
  1559. if (Zeny < 500000) {
  1560. mes "[Hianna]";
  1561. mes "What's this? Hmm...";
  1562. mes "I think you made a mistake.";
  1563. mes "This isn't enough money.";
  1564. mes "Remember, 500,000 zeny~";
  1565. close;
  1566. }
  1567. mes "[Hianna]";
  1568. mes "Perfect. Well, here's";
  1569. mes "your Megaphone. Thanks";
  1570. mes "for everything, and I'll see";
  1571. mes "you around, adventurer~";
  1572. set zeny,zeny-500000;
  1573. set que_sch,18;
  1574. getitem 7040,1; //Megaphone
  1575. close;
  1576. }
  1577. mes "[Hianna]";
  1578. mes "I can't have you breaking";
  1579. mes "your promises, so I won't";
  1580. mes "give you the Megaphone";
  1581. mes "until you pay me the";
  1582. mes "500,000 zeny that you";
  1583. mes "said that you would.";
  1584. close;
  1585. }
  1586. else if (que_sch == 18) {
  1587. mes "[Hianna]";
  1588. mes "Thanks for escorting";
  1589. mes "my Dancers over to the";
  1590. mes "Schwaltzvalt Republic.";
  1591. mes "Anything I can help";
  1592. mes "you with today?";
  1593. next;
  1594. if (select("I'd like another Megaphone.:No thanks.") == 1) {
  1595. mes "[Hianna]";
  1596. mes "Well, I guess I can let";
  1597. mes "you have another one if";
  1598. mes "you pay me 500,000 zeny.";
  1599. mes "You sure you want to pay";
  1600. mes "the money for a Megaphone?";
  1601. next;
  1602. if (select("Yes:No") == 1) {
  1603. if (Zeny < 500000) {
  1604. mes "[Hianna]";
  1605. mes "I'm sorry, but this";
  1606. mes "isn't enough money for";
  1607. mes "a Megaphone. Be sure";
  1608. mes "to bring me 500,000 zeny.";
  1609. close;
  1610. }
  1611. mes "[Hianna]";
  1612. mes "Here you are. The fact is...";
  1613. mes "These Megaphones are";
  1614. mes "considered guild property,";
  1615. mes "so I'm not supposed to let";
  1616. mes "you have this. Don't let";
  1617. mes "anyone know I gave you this!";
  1618. set zeny,zeny-500000;
  1619. getitem 7040,1; //Megaphone
  1620. close;
  1621. }
  1622. mes "[Hianna]";
  1623. mes "Alright~";
  1624. mes "Take care, and";
  1625. mes "travel safely~";
  1626. close;
  1627. }
  1628. mes "[Hianna]";
  1629. mes "Alright~";
  1630. mes "Take care, and";
  1631. mes "travel safely~";
  1632. close;
  1633. }
  1634. mes "[Hianna]";
  1635. mes "Trust me, we've made";
  1636. mes "good use of the money";
  1637. mes "that you've ''donated.''";
  1638. mes "Thanks for taking good";
  1639. mes "care of my Dancers~";
  1640. close;
  1641. }
  1642. job_duncer,85,49,0 script Young Dancer#sch1 724,{
  1643. if (que_sch < 12) {
  1644. mes "[Dancer]";
  1645. mes "Hi there~";
  1646. mes "Are you enjoying";
  1647. mes "yourself? I hope so!";
  1648. close;
  1649. }
  1650. else if (que_sch == 12) {
  1651. mes "[Dancer]";
  1652. mes "Ah, you must be the";
  1653. mes "bodyguard. So are you";
  1654. mes "ready to go now?";
  1655. next;
  1656. if (select("Yes:No") == 1) {
  1657. mes "[Dancer]";
  1658. mes "Alright, then.";
  1659. mes "Here we go~";
  1660. set que_sch,13;
  1661. close2;
  1662. warp "airplane",75,55;
  1663. end;
  1664. }
  1665. mes "[Dancer]";
  1666. mes "We need to depart soon,";
  1667. mes "so please hurry. I'll be";
  1668. mes "waiting for you here~";
  1669. close;
  1670. }
  1671. mes "[Dancer]";
  1672. mes "Oh, that was such a fun";
  1673. mes "performance. I can still";
  1674. mes "see the dazzling decorations";
  1675. mes "in the ballroom where we got";
  1676. mes "to dance. It was so wonderful!";
  1677. close;
  1678. }
  1679. job_duncer,83,52,6 script Cheerful Dancer#sch1 724,{
  1680. if (que_sch < 12) {
  1681. mes "[Dancer]";
  1682. mes "Hi there~";
  1683. mes "Are you enjoying";
  1684. mes "yourself? I hope so!";
  1685. close;
  1686. }
  1687. else if (que_sch == 12) {
  1688. mes "[Dancer]";
  1689. mes "Ah, you must be the";
  1690. mes "bodyguard. So are you";
  1691. mes "ready to go now?";
  1692. next;
  1693. if (select("Yes:No") == 1) {
  1694. mes "[Dancer]";
  1695. mes "Alright, then.";
  1696. mes "Here we go~";
  1697. set que_sch,13;
  1698. close2;
  1699. warp "airplane",75,55;
  1700. end;
  1701. }
  1702. mes "[Dancer]";
  1703. mes "We need to depart soon,";
  1704. mes "so please hurry. I'll be";
  1705. mes "waiting for you here~";
  1706. close;
  1707. }
  1708. mes "[Dancer]";
  1709. mes "I guess it's pretty";
  1710. mes "fun to perform on stage~";
  1711. mes "But I still need to practice";
  1712. mes "more for the next performance.";
  1713. close;
  1714. }
  1715. job_duncer,87,50,2 script Mature Looking Dancer#s1 724,{
  1716. if (que_sch < 12) {
  1717. mes "[Dancer]";
  1718. mes "Hi there~";
  1719. mes "Are you enjoying";
  1720. mes "yourself? I hope so!";
  1721. close;
  1722. }
  1723. else if (que_sch == 12) {
  1724. mes "[Dancer]";
  1725. mes "Ah, you must be the";
  1726. mes "bodyguard. So are you";
  1727. mes "ready to go now?";
  1728. next;
  1729. if (select("Yes:No") == 1) {
  1730. mes "[Dancer]";
  1731. mes "Alright, then.";
  1732. mes "Here we go~";
  1733. set que_sch,13;
  1734. close2;
  1735. warp "airplane",75,55;
  1736. end;
  1737. }
  1738. mes "[Dancer]";
  1739. mes "We need to depart soon,";
  1740. mes "so please hurry. I'll be";
  1741. mes "waiting for you here~";
  1742. close;
  1743. }
  1744. mes "[Dancer]";
  1745. mes "I sure learned a lot from";
  1746. mes "that trip. I hope that the new";
  1747. mes "girls also gained something";
  1748. mes "from their experiences.";
  1749. close;
  1750. }
  1751. airplane,76,56,4 script Young Dancer#sch2 724,{
  1752. if (que_sch < 13) {
  1753. mes "[Dancer]";
  1754. mes "Hi there~";
  1755. mes "Are you enjoying";
  1756. mes "yourself? I hope so!";
  1757. close;
  1758. }
  1759. else if (que_sch == 13) {
  1760. mes "[Dancer]";
  1761. mes "This will be my";
  1762. mes "first performance...";
  1763. mes "I guess that's why";
  1764. mes "I have butterflies";
  1765. mes "in my stomach...";
  1766. close;
  1767. }
  1768. mes "[Dancer]";
  1769. mes "I wonder which beautiful";
  1770. mes "place we'll get to perform in";
  1771. mes "next time! Ooh, I can't wait!";
  1772. close;
  1773. }
  1774. airplane,75,53,0 script Cheerful Dancer#sch2 724,{
  1775. if (que_sch < 13) {
  1776. mes "[Dancer]";
  1777. mes "Hi there~";
  1778. mes "Are you enjoying";
  1779. mes "yourself? I hope so!";
  1780. close;
  1781. }
  1782. else if (que_sch == 13) {
  1783. mes "[Dancer]";
  1784. mes "I've performed at many";
  1785. mes "venues, but this is the";
  1786. mes "frist time I'll be dancing";
  1787. mes "in the Schwaltzvalt Republic.";
  1788. mes "This is also my first time on";
  1789. mes "an airship. How exciting!";
  1790. close;
  1791. }
  1792. mes "[Dancer]";
  1793. mes "Traveling is really";
  1794. mes "thrilling... It's almost as";
  1795. mes "fun as dancing on stage~";
  1796. close;
  1797. }
  1798. airplane,79,55,2 script Mature Looking Dancer#s2 724,{
  1799. if (que_sch < 13) {
  1800. mes "[Dancer]";
  1801. mes "Hi there~";
  1802. mes "Are you enjoying";
  1803. mes "yourself? I hope so!";
  1804. close;
  1805. }
  1806. else if (que_sch == 13) {
  1807. mes "[Dancer]";
  1808. mes "This is the first time that";
  1809. mes "the Schwaltzvalt Republic";
  1810. mes "requested a performance";
  1811. mes "from us. Isn't that amazing?";
  1812. mes "I guess we earned a reputation";
  1813. mes "overseas. I'll do my best!";
  1814. next;
  1815. mes "[Airship Announcement]";
  1816. mes "We will be arriving";
  1817. mes "in Einbroch shortly.";
  1818. mes "Passengers to Einbroch,";
  1819. mes "please get ready to land.";
  1820. next;
  1821. mes "[Dancer]";
  1822. mes "Oh! We're finally here!";
  1823. mes "Alright, I'll give this next";
  1824. mes "performance my all!";
  1825. close2;
  1826. set que_sch,14;
  1827. warp "ein_in01",278,223;
  1828. end;
  1829. }
  1830. mes "[Dancer]";
  1831. mes "I've been dancing on";
  1832. mes "stage for a long time, but";
  1833. mes "I always feel so nervous";
  1834. mes "right beforehand. I wonder";
  1835. mes "why that happens to me.";
  1836. close;
  1837. }
  1838. ein_in01,174,266,0 script Young Dancer#sch3 724,{
  1839. if (que_sch < 17) {
  1840. mes "[Dancer]";
  1841. mes "Oh, the dinner";
  1842. mes "party isn't finished yet.";
  1843. mes "It'll be over before";
  1844. mes "you even know it~";
  1845. close;
  1846. }
  1847. else if (que_sch == 17) {
  1848. mes "[Dancer]";
  1849. mes "Hooray! My first";
  1850. mes "onstage performance";
  1851. mes "was a success! Oh";
  1852. mes "I was so nervous...";
  1853. mes "But I'm so proud";
  1854. mes "of myself now!";
  1855. close;
  1856. }
  1857. mes "[Dancer]";
  1858. mes "Without dance,";
  1859. mes "my life has no";
  1860. mes "meaning at all.";
  1861. close;
  1862. }
  1863. ein_in01,172,266,0 script Cheerful Dancer#sch3 724,{
  1864. if (que_sch < 17) {
  1865. mes "[Dancer]";
  1866. mes "The dinner party isn't";
  1867. mes "even finished yet, but";
  1868. mes "I'm already exhausted~";
  1869. close;
  1870. }
  1871. else if (que_sch == 17) {
  1872. mes "[Dancer]";
  1873. mes "^333333*Whew*^000000 We gave a good";
  1874. mes "performance this time.";
  1875. mes "I was worried since that";
  1876. mes "airship trip really drained me.";
  1877. close;
  1878. }
  1879. mes "[Dancer]";
  1880. mes "Dancing is really";
  1881. mes "hard work, and all that";
  1882. mes "practicing wears you out,";
  1883. mes "but it's worth it once you";
  1884. mes "get up on that stage.";
  1885. close;
  1886. }
  1887. ein_in01,170,266,0 script Mature Looking Dancer#s3 724,{
  1888. if (que_sch < 17) {
  1889. mes "[Dancer]";
  1890. mes "Oh, the dinner";
  1891. mes "party isn't finished yet.";
  1892. mes "It'll be over before";
  1893. mes "you even know it~";
  1894. close;
  1895. }
  1896. else if (que_sch == 17) {
  1897. mes "[Dancer]";
  1898. mes "Well well, it looks like our";
  1899. mes "performance was a success.";
  1900. mes "The new girls did a really";
  1901. mes "great job. So let's head";
  1902. mes "back home, shall we?";
  1903. close2;
  1904. warp "comodo",191,146;
  1905. end;
  1906. }
  1907. mes "[Dancer]";
  1908. mes "Dancing is so fun, but";
  1909. mes "sometimes it's hard to";
  1910. mes "keep up with the audience's";
  1911. mes "expectations, you know?";
  1912. close;
  1913. }
  1914. ein_in01,279,221,0 script Hotel Manager#sch 903,5,5,{
  1915. if (que_sch < 15) {
  1916. mes "[Manager]";
  1917. mes "It'd be a really great";
  1918. mes "party if our customers";
  1919. mes "were a little less rowdy";
  1920. mes "Recently, they've been";
  1921. mes "more than a handful...";
  1922. close;
  1923. }
  1924. else if (que_sch == 15) {
  1925. mes "[Manager]";
  1926. mes "I'm glad our customers";
  1927. mes "enjoyed the performance";
  1928. mes "I was a little worried about";
  1929. mes "what they were going to think,";
  1930. mes "but I guess I was just being";
  1931. mes "overly anxious about it all.";
  1932. close;
  1933. }
  1934. else if (que_sch == 16) {
  1935. mes "[Manager]";
  1936. mes "Thank you so much for";
  1937. mes "your services. I'll be sure to";
  1938. mes "have one of my employees";
  1939. mes "send you your payment";
  1940. mes "Have a safe trip back~";
  1941. set que_sch,17;
  1942. close;
  1943. }
  1944. end;
  1945. //OnTouch2:
  1946. OnTouch:
  1947. if (que_sch == 14) {
  1948. mes "[Manager]";
  1949. mes "Oh, did you enjoy";
  1950. mes "your trip? I'm glad to";
  1951. mes "see that everyone arrived";
  1952. mes "safely. The dinner party";
  1953. mes "will start shortly, so";
  1954. mes "please get ready~";
  1955. set que_sch,15;
  1956. close;
  1957. }
  1958. end;
  1959. }
  1960. ein_in01,166,282,4 script Employee#sch 904,{
  1961. if (que_sch < 15) {
  1962. mes "[Employee]";
  1963. mes "We've been so busy lately!";
  1964. mes "It's just one party reservation";
  1965. mes "after another! When will I be";
  1966. mes "able to just take a break?";
  1967. close;
  1968. }
  1969. else if (que_sch < 17) {
  1970. if (rand(1,3) == 2) {
  1971. mes "[Employee]";
  1972. mes "Hi, how may I help you?";
  1973. mes "Tonight, most of customers";
  1974. mes "are high ranking government";
  1975. mes "officials or public figures.";
  1976. mes "That man over there is the";
  1977. mes "Rekenber P.R. executive.";
  1978. next;
  1979. mes "[Employee]";
  1980. mes "That priest over there is";
  1981. mes "actually a diplomat from";
  1982. mes "Arunafeltz on business.";
  1983. mes "These are some very";
  1984. mes "important people!";
  1985. close;
  1986. }
  1987. mes "[Employee]";
  1988. mes "How can I help you?";
  1989. mes "Oh, would you like another";
  1990. mes "drink? There you go! Please";
  1991. mes "enjoy the dinner party~";
  1992. close;
  1993. }
  1994. mes "[Employee]";
  1995. mes "Oh, the mess left after";
  1996. mes "a banquet is the biggest";
  1997. mes "part of my job. It's tough";
  1998. mes "work, but it needs to get done.";
  1999. close;
  2000. }
  2001. ein_in01,176,285,0 script °ÍµÂ ÌØÀæ¸ê#sch -1,1,1,{
  2002. //OnTouch2:
  2003. OnTouch:
  2004. if (que_sch == 15) {
  2005. disablenpc "Corporate Figure#sch";
  2006. disablenpc "Arunafeltz Figure#sch";
  2007. enablenpc "Corporate Figure";
  2008. enablenpc "Arunafeltz Figure";
  2009. mes "[????]";
  2010. mes "I guess the party";
  2011. mes "will soon be over.";
  2012. mes "Did you enjoy yourself?";
  2013. next;
  2014. mes "[??????]";
  2015. mes "Yes, thank you, I had";
  2016. mes "a great time. I'm sorry";
  2017. mes "I gave you such short";
  2018. mes "notice of my arrival, but";
  2019. mes "you held this party anyway.";
  2020. next;
  2021. mes "[????]";
  2022. mes "Don't mention it.";
  2023. mes "You're a valued guest.";
  2024. mes "It would shame me if I'd";
  2025. mes "failed to entertain you.";
  2026. next;
  2027. mes "[??????]";
  2028. mes "Ho ho, you certainly know";
  2029. mes "how to be a good host~";
  2030. next;
  2031. mes "[????]";
  2032. mes "Your words honor me.";
  2033. next;
  2034. mes "^3355FFThe man took a quick";
  2035. mes "look around the room.^000000";
  2036. next;
  2037. mes "[????]";
  2038. mes "No one's around.";
  2039. mes "I have something to";
  2040. mes "discuss with you before";
  2041. mes "we get down to business.";
  2042. next;
  2043. mes "[??????]";
  2044. mes "What kind of...?";
  2045. next;
  2046. mes "[????]";
  2047. mes "I'll explain in detail";
  2048. mes "someplace safer. The gist";
  2049. mes "is that some rogues over in";
  2050. mes "Arunafeltz are plotting to harm";
  2051. mes "relations between Arunafeltz";
  2052. mes "and the Rekenber Corporation.";
  2053. next;
  2054. mes "[??????]";
  2055. mes "Oh... I see. Yes,";
  2056. mes "we can't talk about";
  2057. mes "that here. To tell the";
  2058. mes "truth, I've suspected that";
  2059. mes "something like that was";
  2060. mes "going on... Yes, makes sense.";
  2061. next;
  2062. mes "[????]";
  2063. mes "We should relocate";
  2064. mes "so that we can talk";
  2065. mes "a bit more freely.";
  2066. mes "Please follow me,";
  2067. mes "I already have";
  2068. mes "a place prepared.";
  2069. set que_sch,16;
  2070. close2;
  2071. disablenpc "Corporate Figure";
  2072. disablenpc "Arunafeltz Figure";
  2073. enablenpc "Corporate Figure#sch";
  2074. enablenpc "Arunafeltz Figure#sch";
  2075. }
  2076. end;
  2077. }
  2078. ein_in01,181,284,0 script Corporate Figure 109,{
  2079. end;
  2080. OnInit:
  2081. disablenpc "Corporate Figure";
  2082. end;
  2083. }
  2084. ein_in01,181,285,0 script Arunafeltz Figure 920,{
  2085. end;
  2086. OnInit:
  2087. disablenpc "Arunafeltz Figure";
  2088. end;
  2089. }
  2090. ein_in01,168,274,0 script Corporate Figure#sch 109,{
  2091. mes "[????]";
  2092. mes "Hmm... Good.";
  2093. mes "Everything looks";
  2094. mes "ready to me.";
  2095. close;
  2096. }
  2097. ein_in01,170,284,4 script Arunafeltz Figure#sch 920,{
  2098. mes "[??????]";
  2099. mes "I've got to say, only";
  2100. mes "Rekenber can host such";
  2101. mes "a magnificent party in";
  2102. mes "a city this polluted.";
  2103. mes "What's going on...?";
  2104. close;
  2105. }
  2106. morocc,297,154,0 script Thin-Faced Bard#sch 51,{
  2107. if ((MaxWeight-Weight) < 2000 || checkweight(1201,1) == 0) {
  2108. mes "^3355FFWait a second!";
  2109. mes "Right now, you're carrying";
  2110. mes "too many things with you.";
  2111. mes "Please come back after";
  2112. mes "using the Kafra Service";
  2113. mes "to store some of your items.^000000";
  2114. close;
  2115. }
  2116. if (que_sch < 19) {
  2117. mes "[????]";
  2118. mes "............";
  2119. close;
  2120. }
  2121. else if (que_sch == 19) {
  2122. mes "[Vitre]";
  2123. mes "Thanks for your help.";
  2124. mes "This country's government";
  2125. mes "should know better than to";
  2126. mes "put a good man like me in jail.";
  2127. mes "Listen, I'm a fugitive now.";
  2128. mes "Do you think you can help me?";
  2129. next;
  2130. select("Sure.:I may as well...");
  2131. mes "[Vitre]";
  2132. mes "I just need you to talk";
  2133. mes "to a few people, and let";
  2134. mes "me know what they said.";
  2135. mes "I'd do it myself, but you";
  2136. mes "understand that I've got";
  2137. mes "to keep a low profile.";
  2138. next;
  2139. mes "[Vitre]";
  2140. mes "Please meet these people";
  2141. mes "in the order that I tell you.";
  2142. mes "I've sent messengers to let";
  2143. mes "them know of your arrival,";
  2144. mes "but I had to send them out";
  2145. mes "at different times... Anyway...";
  2146. next;
  2147. mes "[Vitre]";
  2148. mes "First, go to Prontera";
  2149. mes "and talk to Chada. Second,";
  2150. mes "go to Geffen and speak to";
  2151. mes "Ghez. Lastly, please go to";
  2152. mes "Comodo and meet Nosdan.";
  2153. next;
  2154. mes "[Vitre]";
  2155. mes "Each one of them will";
  2156. mes "sing you a song. Listen";
  2157. mes "carefully, and sing me their";
  2158. mes "songs when you come back.";
  2159. mes "Thanks, you have no idea how";
  2160. mes "much I appreciate your help.";
  2161. set que_sch,20;
  2162. close;
  2163. }
  2164. else if (que_sch == 20) {
  2165. mes "[Vitre]";
  2166. mes "Chada is probably near";
  2167. mes "the middle of Prontera.";
  2168. mes "The messenger I sent to";
  2169. mes "him should have reached";
  2170. mes "him by now, so he should";
  2171. mes "be expecting your arrival.";
  2172. close;
  2173. }
  2174. else if (que_sch == 21) {
  2175. mes "[Vitre]";
  2176. mes "Ah, now you've got to";
  2177. mes "talk to Ghez. He should";
  2178. mes "be in Northeast Geffen";
  2179. mes "somewhere. Hopefully";
  2180. mes "you won't have too much";
  2181. mes "trouble finding him.";
  2182. close;
  2183. }
  2184. else if (que_sch == 22) {
  2185. mes "[Vitre]";
  2186. mes "Trying to find Nosdan?";
  2187. mes "I think he's probably in the";
  2188. mes "Northern Cave in Comodo.";
  2189. mes "Please talk to him, and let";
  2190. mes "me know about his song.";
  2191. close;
  2192. }
  2193. else if (que_sch == 23) {
  2194. mes "[Vitre]";
  2195. mes "Welcome back.";
  2196. mes "So did you listen";
  2197. mes "to all of their songs?";
  2198. next;
  2199. if (select("Yes:No") == 1) {
  2200. mes "[Vitre]";
  2201. mes "Perfect~ Here's a little";
  2202. mes "something to show my";
  2203. mes "gratitude. Hope you like it.";
  2204. set que_sch,24;
  2205. getitem 603,1; //Old_Blue_Box
  2206. next;
  2207. mes "[Vitre]";
  2208. mes "Now, tell me, what";
  2209. mes "exactly did they si--";
  2210. next;
  2211. mes "[????]";
  2212. mes "Hold it!";
  2213. next;
  2214. enablenpc "????#sch1";
  2215. enablenpc "????#sch2";
  2216. enablenpc "????#sch3";
  2217. mes "[Vitre]";
  2218. mes "What? Wh-who the";
  2219. mes "hell are you guys?!";
  2220. next;
  2221. mes "[????]";
  2222. mes "Rune-Midgarts";
  2223. mes "Secret Service!";
  2224. mes "Vitre Bizlleta--";
  2225. mes "you're under arrest";
  2226. mes "for espionage!";
  2227. next;
  2228. mes "[Vitre]";
  2229. mes "Again? Didn't you just";
  2230. mes "arrest me just for being";
  2231. mes "suspected of espionage?";
  2232. mes "I think it's a little unfair";
  2233. mes "to just capture me when";
  2234. mes "you don't have any proof.";
  2235. next;
  2236. mes "[????]";
  2237. mes "We just seized concrete";
  2238. mes "evidence of your illegal";
  2239. mes "activities. It's probably";
  2240. mes "enough to imprison you";
  2241. mes "for life. Happy now?";
  2242. next;
  2243. mes "[Vitre]";
  2244. mes "You're bluffing.";
  2245. next;
  2246. mes "[????]";
  2247. mes "You shouldn't have sent";
  2248. mes "that unsuspecting adventurer";
  2249. mes "to your news sources. We've";
  2250. mes "taken them into custody";
  2251. mes "Chada, Ghez, Nosdan.";
  2252. mes "That's them, right?";
  2253. next;
  2254. mes "[Vitre]";
  2255. mes "Nooooooooo!";
  2256. next;
  2257. mes "[Suden]";
  2258. mes "Adventurer, thank you for";
  2259. mes "your cooperation. I am";
  2260. mes "Suden Griea, Secret Service";
  2261. mes "agent. I'm sure you have";
  2262. mes "a lot of questions, but ^FF0000Lasda";
  2263. mes "Midar^000000 will answer them.";
  2264. next;
  2265. mes "[Suden]";
  2266. mes "I'd explain here and now,";
  2267. mes "but I better dispose of";
  2268. mes "this trash with the rest of";
  2269. mes "his scum buddies... in jail!";
  2270. set que_sch,25;
  2271. close2;
  2272. disablenpc "????#sch1";
  2273. disablenpc "????#sch2";
  2274. disablenpc "????#sch3";
  2275. end;
  2276. }
  2277. mes "[Vitre]";
  2278. mes "Would you please hurry?";
  2279. mes "Staying in one place like";
  2280. mes "this makes me nervous...";
  2281. mes "I should be on the move...";
  2282. close;
  2283. }
  2284. else if (que_sch == 24) {
  2285. mes "[Vitre]";
  2286. mes "Now, tell me, what";
  2287. mes "exactly did they si--";
  2288. next;
  2289. mes "[????]";
  2290. mes "Hold it!";
  2291. next;
  2292. enablenpc "????#sch1";
  2293. enablenpc "????#sch2";
  2294. enablenpc "????#sch3";
  2295. mes "[Vitre]";
  2296. mes "What? Wh-who the";
  2297. mes "hell are you guys?!";
  2298. next;
  2299. mes "[????]";
  2300. mes "Rune-Midgarts";
  2301. mes "Secret Service!";
  2302. mes "Vitre Bizlleta--";
  2303. mes "you're under arrest";
  2304. mes "for espionage!";
  2305. next;
  2306. mes "[Vitre]";
  2307. mes "Again? Didn't you just";
  2308. mes "arrest me just for being";
  2309. mes "suspected of espionage?";
  2310. mes "I think it's a little unfair";
  2311. mes "to just capture me when";
  2312. mes "you don't have any proof.";
  2313. next;
  2314. mes "[????]";
  2315. mes "We just seized concrete";
  2316. mes "evidence of your illegal";
  2317. mes "activities. It's probably";
  2318. mes "enough to imprison you";
  2319. mes "for life. Happy now?";
  2320. next;
  2321. mes "[Vitre]";
  2322. mes "You're bluffing.";
  2323. next;
  2324. mes "[????]";
  2325. mes "You shouldn't have sent";
  2326. mes "that unsuspecting adventurer";
  2327. mes "to your news sources. We've";
  2328. mes "taken them into custody";
  2329. mes "Chada, Ghez, Nosdan.";
  2330. mes "That's them, right?";
  2331. next;
  2332. mes "[Vitre]";
  2333. mes "Nooooooooo!";
  2334. next;
  2335. mes "[Suden]";
  2336. mes "Adventurer, thank you for";
  2337. mes "your cooperation. I am";
  2338. mes "Suden Griea, Secret Service";
  2339. mes "agent. I'm sure you have";
  2340. mes "a lot of questions, but ^FF0000Lasda";
  2341. mes "Midar^000000 will answer them.";
  2342. next;
  2343. mes "[Suden]";
  2344. mes "I'd explain here and now,";
  2345. mes "but I better dispose of";
  2346. mes "this trash with the rest of";
  2347. mes "his scum buddies... in jail!";
  2348. set que_sch,25;
  2349. close2;
  2350. disablenpc "????#sch1";
  2351. disablenpc "????#sch2";
  2352. disablenpc "????#sch3";
  2353. end;
  2354. }
  2355. mes "[Bard]";
  2356. mes "Oh, uh...";
  2357. mes "I'm not really Vitre.";
  2358. mes "I'm just a lookalike that's";
  2359. mes "been planted here in case";
  2360. mes "his hoodlum buddies come";
  2361. mes "here to find him. You know?";
  2362. next;
  2363. mes "[Bard]";
  2364. mes "Yeah... This is a pretty";
  2365. mes "dumb job. I mean, all I do";
  2366. mes "is stand here, waiting for";
  2367. mes "his spy friends. What are";
  2368. mes "the odds of that happening?";
  2369. close;
  2370. }
  2371. morocc,294,152,0 script ????#sch1 899,{
  2372. end;
  2373. OnInit:
  2374. disablenpc "????#sch1";
  2375. end;
  2376. }
  2377. morocc,293,155,6 script ????#sch2 899,{
  2378. end;
  2379. OnInit:
  2380. disablenpc "????#sch2";
  2381. end;
  2382. }
  2383. morocc,298,150,1 script ????#sch3 899,{
  2384. end;
  2385. OnInit:
  2386. disablenpc "????#sch3";
  2387. end;
  2388. }
  2389. prontera,109,161,6 script Young Man#sch 83,{
  2390. if (que_sch < 20) {
  2391. mes "[Chada]";
  2392. mes "What a boring day...";
  2393. mes "Perhaps I'll stave the";
  2394. mes "dreariness with song~";
  2395. close;
  2396. }
  2397. else if (que_sch == 20) {
  2398. mes "[Chada]";
  2399. mes "Are you the one that";
  2400. mes "Vitre sent? Good, good.";
  2401. mes "Let me treat you to my";
  2402. mes "wonderful song. Listen...";
  2403. mes "And learn... And love...";
  2404. next;
  2405. mes "[Chada]";
  2406. mes "La la la la la la la la~";
  2407. mes "A curse plagues the";
  2408. mes "royal family, and it's";
  2409. mes "been passed down to their";
  2410. mes "second child... la la la...";
  2411. mes "No one can cure it... Oooh~";
  2412. next;
  2413. mes "[Chada]";
  2414. mes "Hahaha! Isn't that";
  2415. mes "such a wonderful song?";
  2416. mes "Let Vitre know each and";
  2417. mes "every word to it, okay?";
  2418. set que_sch,21;
  2419. close;
  2420. }
  2421. else if (que_sch < 30) {
  2422. mes "[Chada]";
  2423. mes "Did you need to hear";
  2424. mes "the song again? Alright,";
  2425. mes "listen carefully this time~";
  2426. next;
  2427. mes "[Chada]";
  2428. mes "La la la la la la la la~";
  2429. mes "A curse plagues the";
  2430. mes "royal family, and it's";
  2431. mes "been passed down to their";
  2432. mes "second child... la la la...";
  2433. mes "No one can cure it... Oooh~";
  2434. next;
  2435. mes "[Chada]";
  2436. mes "Hahaha! Isn't that";
  2437. mes "such a wonderful song?";
  2438. mes "Let Vitre know each and";
  2439. mes "every word to it, okay?";
  2440. close;
  2441. }
  2442. else {
  2443. mes "[Chada]";
  2444. mes "...........";
  2445. mes "I have nothing to say to you.";
  2446. close;
  2447. }
  2448. }
  2449. geffen,196,167,4 script Young Woman#sch 101,{
  2450. if (que_sch < 21) {
  2451. mes "[Ghez]";
  2452. mes "When is he going";
  2453. mes "to send someone to";
  2454. mes "listen to my song?";
  2455. close;
  2456. }
  2457. else if (que_sch == 21) {
  2458. mes "[Ghez]";
  2459. mes "Oh, Vitre send you?";
  2460. mes "Great, I've been waiting";
  2461. mes "for you. Check out this";
  2462. mes "new song I wrote. It's great.";
  2463. next;
  2464. mes "[Ghez]";
  2465. mes "Sha la la la la la";
  2466. mes "Prontera Knights gotta";
  2467. mes "protect the palace~";
  2468. mes "Sha hoo hoo haaaaa";
  2469. mes "Geffen Knights gotta";
  2470. mes "protect the magic tower~";
  2471. next;
  2472. mes "[Ghez]";
  2473. mes "Na na na nan nan naaa";
  2474. mes "Prontera! Geffen! Knights";
  2475. mes "together! Protect the palace!";
  2476. mes "Ooooooooooooh yeah!";
  2477. mes "And crush their foes to the west!";
  2478. mes "That's the secret plan! La la la~";
  2479. next;
  2480. mes "[Ghez]";
  2481. mes "Wasn't that poetic?";
  2482. mes "Now sing that song exactly";
  2483. mes "as you heard it to Vitre.";
  2484. set que_sch,22;
  2485. close;
  2486. }
  2487. else if (que_sch < 30) {
  2488. mes "[Ghez]";
  2489. mes "You want to hear my song";
  2490. mes "again? Fine, but make sure";
  2491. mes "to memorize it all this time.";
  2492. next;
  2493. mes "[Ghez]";
  2494. mes "Sha la la la la la";
  2495. mes "Prontera Knights gotta";
  2496. mes "protect the palace~";
  2497. mes "Sha hoo hoo haaaaa";
  2498. mes "Geffen Knights gotta";
  2499. mes "protect the magic tower~";
  2500. next;
  2501. mes "[Ghez]";
  2502. mes "Na na na nan nan naaa";
  2503. mes "Prontera! Geffen! Knights";
  2504. mes "together! Protect the palace!";
  2505. mes "Ooooooooooooh yeah!";
  2506. mes "And crush their foes to the west!";
  2507. mes "That's the secret plan! La la la~";
  2508. next;
  2509. mes "[Ghez]";
  2510. mes "Wasn't that poetic?";
  2511. mes "Now sing that song exactly";
  2512. mes "as you heard it to Vitre.";
  2513. close;
  2514. }
  2515. else {
  2516. mes "[Ghez]";
  2517. mes "I'm doomed...";
  2518. mes ".......";
  2519. close;
  2520. }
  2521. }
  2522. comodo,135,299,0 script Young Man#sch2 809,{
  2523. if (que_sch < 22) {
  2524. mes "[Nosdan]";
  2525. mes "Have you come to hear";
  2526. mes "my song? Ah, it's good";
  2527. mes "that you've come to enjoy";
  2528. mes "my melodious vo--wait,";
  2529. mes "wait, where are you going?";
  2530. close;
  2531. }
  2532. else if (que_sch == 22) {
  2533. mes "[Nosdan]";
  2534. mes "Ah, are you the one";
  2535. mes "that Vitre mentioned";
  2536. mes "in his message? Okay,";
  2537. mes "please give me a moment.";
  2538. next;
  2539. mes "[Nosdan]";
  2540. mes "^333333*Ahem ahem*^000000";
  2541. mes "I'm ready. Now";
  2542. mes "please listen..";
  2543. next;
  2544. mes "[Nosdan]";
  2545. mes "Who dares stop the fearless";
  2546. mes "warrior? Baphomet? Drake?";
  2547. mes "No, they're too weak! His";
  2548. mes "steps now head to the group";
  2549. mes "of evil men trying to revive";
  2550. mes "Satan Morroc. I mean, come on!";
  2551. next;
  2552. mes "[Nosdan]";
  2553. mes "Sad news from an old comrade,";
  2554. mes "the evil group discovered...";
  2555. mes "Time to stop Satan Morroc's";
  2556. mes "revival~ La la la la la la la";
  2557. mes "la la la la la la la la la la";
  2558. mes "la la la la la la la la la la";
  2559. next;
  2560. mes "[Nosdan]";
  2561. mes "What'd you think?";
  2562. mes "Um, don't ask me about";
  2563. mes "the lyrics. Just a weird";
  2564. mes "artistic quirk I guess.";
  2565. mes "Oh, please sing that song";
  2566. mes "to Vitre for me, okay?";
  2567. set que_sch,23;
  2568. close;
  2569. }
  2570. else if (que_sch < 30) {
  2571. mes "[Nosdan]";
  2572. mes "Oh, you need to";
  2573. mes "hear my song again?";
  2574. mes "No problem! I guess";
  2575. mes "you really like it~";
  2576. next;
  2577. mes "[Nosdan]";
  2578. mes "Who dares stop the fearless";
  2579. mes "warrior? Baphomet? Drake?";
  2580. mes "No, they're too weak! His";
  2581. mes "steps now head to the group";
  2582. mes "of evil men trying to revive";
  2583. mes "Satan Morroc. I mean, come on!";
  2584. next;
  2585. mes "[Nosdan]";
  2586. mes "Sad news from an old comrade,";
  2587. mes "the evil group discovered...";
  2588. mes "Time to stop Satan Morroc's";
  2589. mes "revival~ La la la la la la la";
  2590. mes "la la la la la la la la la la";
  2591. mes "la la la la la la la la la la";
  2592. next;
  2593. mes "[Nosdan]";
  2594. mes "What'd you think?";
  2595. mes "Um, don't ask me about";
  2596. mes "the lyrics. Just a weird";
  2597. mes "artistic quirk I guess.";
  2598. mes "Oh, please sing that song";
  2599. mes "to Vitre for me, okay?";
  2600. close;
  2601. }
  2602. else {
  2603. mes "[Nosdan]";
  2604. mes "Oh, no! I didn't!";
  2605. mes "do anything wrong.";
  2606. mes "I swear!";
  2607. close;
  2608. }
  2609. }
  2610. // Siblings Quest
  2611. //============================================================
  2612. veins,327,185,3 script Kid#camelcamel 944,{
  2613. if (MISC_QUEST & 8192) {
  2614. if (rachel_camel == 0) {
  2615. mes "[Kid Karyn]";
  2616. mes "*Sob*";
  2617. next;
  2618. mes "^3355FFThis sobbing child";
  2619. mes "looks really upset...^000000";
  2620. next;
  2621. mes "["+strcharinfo(0)+"]";
  2622. mes "Hey, why are you";
  2623. mes "crying? Are you lost?";
  2624. mes "Where's your mommy?";
  2625. next;
  2626. mes "[Kid Karyn]";
  2627. mes "My... Mom's";
  2628. mes "at home...";
  2629. next;
  2630. mes "["+strcharinfo(0)+"]";
  2631. mes "......";
  2632. mes ".........";
  2633. next;
  2634. mes "["+strcharinfo(0)+"]";
  2635. mes "I see. So...";
  2636. mes "Are you having";
  2637. mes "trouble finding";
  2638. mes "your way back home?";
  2639. next;
  2640. mes "[Kid Karyn]";
  2641. mes "No! I'm ten years old!";
  2642. mes "I can find my way home,";
  2643. mes "even with my eyes closed!";
  2644. mes "^333333*Sniff sniff*^000000 Uuuuuuweeeh~";
  2645. next;
  2646. mes "["+strcharinfo(0)+"]";
  2647. mes "Well...";
  2648. next;
  2649. mes "["+strcharinfo(0)+"]";
  2650. mes "Can you tell me";
  2651. mes "why you're crying?";
  2652. next;
  2653. mes "[Kid Karyn]";
  2654. mes "I... ^333333*Sniff*^000000";
  2655. mes "I-I went to... Th-...";
  2656. mes "Volcan.... w-w-with";
  2657. mes "my sist-- Waaaaaaah!";
  2658. next;
  2659. mes "["+strcharinfo(0)+"]";
  2660. mes "Poor kid... Come on,";
  2661. mes "take a deep breath so";
  2662. mes "you can tell me about what";
  2663. mes "happened a little more slowly.";
  2664. next;
  2665. mes "[Kid Karyn]";
  2666. mes "*^333333Sob*^000000 ...It's just...";
  2667. mes "I went to Thor Volcano";
  2668. mes "with my little sister to see";
  2669. mes "which one of us was braver...";
  2670. mes "But then, we met some...";
  2671. mes "Scary people there... and...";
  2672. next;
  2673. mes "[Kid Karyn]";
  2674. mes "I got scared, so... So...";
  2675. mes "My sister... Wah~! *Sob*";
  2676. next;
  2677. mes "[Kid Karyn]";
  2678. mes "*Sob*";
  2679. next;
  2680. mes "[Kid Karyn]";
  2681. mes "I-I ran away from them...";
  2682. mes "But I left my sister over";
  2683. mes "there with those weird men...";
  2684. next;
  2685. mes "[Kid Karyn]";
  2686. mes "Mom's sick, and dad's";
  2687. mes "always at work... He's";
  2688. mes "the captain of a ship, so...";
  2689. mes "I don't think they can help.";
  2690. next;
  2691. mes "[Kid Karyn]";
  2692. mes "Can you help me please,";
  2693. mes "and bring my sister back?";
  2694. mes "*Sniff* Please? I promise";
  2695. mes "that I can pay you as soon";
  2696. mes "as my dad comes back!";
  2697. next;
  2698. mes "["+strcharinfo(0)+"]";
  2699. mes "Wait... I have a question.";
  2700. mes "You said that someone took";
  2701. mes "away your sister at Thor";
  2702. mes "Volcano? What did they look";
  2703. mes "like? Are you sure that there";
  2704. mes "were people there?";
  2705. next;
  2706. mes "[Kid Karyn]";
  2707. mes "I... I don't know!";
  2708. mes "I got so scared, I just";
  2709. mes "ran away! I... I didn't";
  2710. mes "mean to leave my sister!";
  2711. next;
  2712. mes "["+strcharinfo(0)+"]";
  2713. mes "Hmmm...";
  2714. mes "Maybe your sister was";
  2715. mes "kidnapped by bandits...";
  2716. next;
  2717. switch(select("Decline Request:Accept Request")) {
  2718. case 1:
  2719. mes "["+strcharinfo(0)+"]";
  2720. mes "Sorry kid, but I've got";
  2721. mes "things to do. I'm sure";
  2722. mes "someone else will come";
  2723. mes "along to save your sister.";
  2724. next;
  2725. mes "[Kid Karyn]";
  2726. mes "Wah~";
  2727. close;
  2728. case 2:
  2729. mes "["+strcharinfo(0)+"]";
  2730. mes "Okay, I'll see what";
  2731. mes "I can do. I'll try my best";
  2732. mes "to find your sister.";
  2733. next;
  2734. mes "[Kid Karyn]";
  2735. mes "Thank you so much!";
  2736. mes "Please find my sister";
  2737. mes "Curdie soon! Oh, I hope";
  2738. mes "she's okay! If she's not...";
  2739. mes "^333333*Sob*^000000 I don't know what";
  2740. mes "I'll do! Waaaaaaaah~";
  2741. next;
  2742. mes "["+strcharinfo(0)+"]";
  2743. mes "Alright...";
  2744. mes "Wish me luck.";
  2745. mes "I'll go search Thor";
  2746. mes "Volcano to find your";
  2747. mes "little sister Curdie.";
  2748. set rachel_camel,1;
  2749. close;
  2750. }
  2751. }
  2752. else if (rachel_camel == 1) {
  2753. mes "["+strcharinfo(0)+"]";
  2754. mes "I'd better search";
  2755. mes "Thor Volcano for Curdie,";
  2756. mes "Karyn's little sister.";
  2757. close;
  2758. }
  2759. else if (rachel_camel == 2) {
  2760. mes "[Kid Karyn]";
  2761. mes "W-were you able";
  2762. mes "to find my sister?";
  2763. mes "Is she alright?";
  2764. mes "What happened?";
  2765. next;
  2766. mes "["+strcharinfo(0)+"]";
  2767. mes "I found her,";
  2768. mes "she's alright but...";
  2769. next;
  2770. mes "[Kid Karyn]";
  2771. mes "What? Why isn't";
  2772. mes "she with you?";
  2773. next;
  2774. mes "["+strcharinfo(0)+"]";
  2775. mes "Curdie is... Well, she's";
  2776. mes "been shackled down. We";
  2777. mes "need to find a way to free her.";
  2778. mes "Do you know where there's";
  2779. mes "a forge or a locksmith that";
  2780. mes "might be able to help her?";
  2781. next;
  2782. mes "[Kid Karyn]";
  2783. mes "Oh! Oh, there's a";
  2784. mes "locksmith in the market";
  2785. mes "street! You can ask him";
  2786. mes "to help free Curdie!";
  2787. set rachel_camel,3;
  2788. close;
  2789. }
  2790. else if (rachel_camel <= 5) {
  2791. mes "["+strcharinfo(0)+"]";
  2792. mes "Let's see...";
  2793. mes "I'd better find the";
  2794. mes "locksmith in the market";
  2795. mes "street, and ask him to help";
  2796. mes "me unlock Curdie's shackles.";
  2797. close;
  2798. }
  2799. else if (rachel_camel == 6) {
  2800. mes "["+strcharinfo(0)+"]";
  2801. mes "Wait... I should be";
  2802. mes "bringing Ms. Ivory all";
  2803. mes "of the soap ingredients.";
  2804. mes "What were they again...?";
  2805. next;
  2806. mes "["+strcharinfo(0)+"]";
  2807. mes "^4D4DFF10 Milk^000000,";
  2808. mes "^4D4DFF100 Green Herbs^000000,";
  2809. mes "^4D4DFF50 Jellopies^000000, and";
  2810. mes "^4D4DFF5 Empty Bottles^000000.";
  2811. mes "I better get those...";
  2812. close;
  2813. }
  2814. else if (rachel_camel == 7) {
  2815. mes "["+strcharinfo(0)+"]";
  2816. mes "I need to talk to";
  2817. mes "someone named Saraman";
  2818. mes "to get the soap ingredients...";
  2819. close;
  2820. }
  2821. else if (rachel_camel == 8) {
  2822. mes "["+strcharinfo(0)+"]";
  2823. mes "Let's see...";
  2824. mes "I need to bring";
  2825. mes "Mr. Saruman all the";
  2826. mes "things he needs to";
  2827. mes "stimulate a camel's ";
  2828. mes "appetite. I need to get...";
  2829. next;
  2830. mes "["+strcharinfo(0)+"]";
  2831. mes "^4D4DFF1 Unripe Apple^000000,";
  2832. mes "^4D4DFF5 Monster's Feed^000000,";
  2833. mes "^4D4DFF1 Empty Bottle^000000, and";
  2834. mes "^4D4DFF1 Yellow Potion^000000.";
  2835. close;
  2836. }
  2837. else if (rachel_camel == 9) {
  2838. mes "["+strcharinfo(0)+"]";
  2839. mes "I have everything I need";
  2840. mes "to stimulate a camel's";
  2841. mes "appetite. Now I need to";
  2842. mes "feed the camel so that I can";
  2843. mes "get the soap ingredients and";
  2844. mes "5 lumps of camel dung.";
  2845. close;
  2846. }
  2847. else if (rachel_camel == 10) {
  2848. mes "["+strcharinfo(0)+"]";
  2849. mes "Right now, my time";
  2850. mes "would be better spent";
  2851. mes "looking for the Silk Sand";
  2852. mes "Camel for the ingredients.";
  2853. close;
  2854. }
  2855. else if (rachel_camel == 11) {
  2856. mes "["+strcharinfo(0)+"]";
  2857. mes "I'd better find Mr. Saraman's";
  2858. mes "lost camel, feed it camel";
  2859. mes "appetite stimulants, and";
  2860. mes "then get the soap ingredient";
  2861. mes "and 5 lumps of camel dung";
  2862. mes "if I want to free Curdie.";
  2863. close;
  2864. }
  2865. else if (rachel_camel <= 16) {
  2866. mes "["+strcharinfo(0)+"]";
  2867. mes "Well... I found the";
  2868. mes "camel. Now I need to get";
  2869. mes "all the soap ingredients.";
  2870. mes "The sooner I do that, the";
  2871. mes "sooner I can help Curdie.";
  2872. close;
  2873. }
  2874. else if (rachel_camel == 17) {
  2875. mes "["+strcharinfo(0)+"]";
  2876. mes "I managed to get the soap";
  2877. mes "ingredient and 5 of those";
  2878. mes "camel dung lumps. I should";
  2879. mes "head back to Mr. Saraman to";
  2880. mes "tell him where his camel is,";
  2881. mes "and then go to Ms. Ivory.";
  2882. close;
  2883. }
  2884. else if (rachel_camel == 18) {
  2885. mes "["+strcharinfo(0)+"]";
  2886. mes "Let's see...";
  2887. mes "Shouldn't I be going";
  2888. mes "to see Ms. Ivory now?";
  2889. close;
  2890. }
  2891. else if (rachel_camel == 19) {
  2892. mes "["+strcharinfo(0)+"]";
  2893. mes "I have the Silk Sand Camel";
  2894. mes "Soap now, so I should go";
  2895. mes "bring it to Mr. Lockenlock.";
  2896. close;
  2897. }
  2898. else if (rachel_camel == 20) {
  2899. mes "["+strcharinfo(0)+"]";
  2900. mes "I'd better use the soap to";
  2901. mes "make a key mold that I can";
  2902. mes "bring over to Mr. Lockenlock.";
  2903. close;
  2904. }
  2905. else if (rachel_camel == 21) {
  2906. mes "["+strcharinfo(0)+"]";
  2907. mes "Making the key is more";
  2908. mes "important that telling Karyn";
  2909. mes "about what's happened.";
  2910. close;
  2911. }
  2912. else if (rachel_camel == 22) {
  2913. mes "["+strcharinfo(0)+"]";
  2914. mes "I need to bring";
  2915. mes "1 Steel to Mr. Lockenlock";
  2916. mes "so that he can make a key";
  2917. mes "that will finally free Curdie.";
  2918. close;
  2919. }
  2920. else if (rachel_camel == 23) {
  2921. mes "["+strcharinfo(0)+"]";
  2922. mes "I finally got the";
  2923. mes "key that I can use";
  2924. mes "to free Curdie. I'm";
  2925. mes "gonna go save her now.";
  2926. next;
  2927. mes "[Kid Karyn]";
  2928. mes "Thank you so much!";
  2929. mes "Please bring back Curdie";
  2930. mes "as soon as you can! ^333333*Sob*^000000";
  2931. close;
  2932. }
  2933. else if (rachel_camel == 24) {
  2934. mes "["+strcharinfo(0)+"]";
  2935. mes "Hey, Karyn! I sent";
  2936. mes "your sister back to town";
  2937. mes "with a Butterfly Wing.";
  2938. mes "Did she come back safe?";
  2939. next;
  2940. mes "[Kid Karyn]";
  2941. mes "Yes, Curdie's back";
  2942. mes "and she's resting in";
  2943. mes "the hospital right now.";
  2944. mes "Thank you so much for";
  2945. mes "all of your help!";
  2946. next;
  2947. mes "[Kid Karyn]";
  2948. mes "I'm not sure what's wrong";
  2949. mes "with Curdie, though. Ever";
  2950. mes "since she got back, she gets";
  2951. mes "frightened whenever she";
  2952. mes "sees the soldiers in town.";
  2953. next;
  2954. mes "[Kid Karyn]";
  2955. mes "I promise to tell my dad";
  2956. mes "about what you did after he";
  2957. mes "comes back from overseas.";
  2958. mes "Thank you for everything";
  2959. mes "that you did for us!";
  2960. next;
  2961. mes "["+strcharinfo(0)+"]";
  2962. mes "Umm... I see...";
  2963. mes "I'll come by later";
  2964. mes "when Curdie's released";
  2965. mes "from the hospital.";
  2966. next;
  2967. mes "[Kid Karyn]";
  2968. mes "Yes, please do.";
  2969. mes "I promise to help you";
  2970. mes "whenever you need me!";
  2971. next;
  2972. mes "["+strcharinfo(0)+"]";
  2973. mes "Hahahaha!";
  2974. mes "Well... I guess that's";
  2975. mes "pretty reassuring. Until then,";
  2976. mes "take good care of your mother";
  2977. mes "and sister. You got that?";
  2978. next;
  2979. mes "[Kid Karyn]";
  2980. mes "Got it!";
  2981. next;
  2982. mes "["+strcharinfo(0)+"]";
  2983. mes "Good, good...";
  2984. mes "It's a promise, then.";
  2985. mes "I'll see you later~";
  2986. set rachel_camel,25;
  2987. specialeffect2 EF_ABSORBSPIRITS;
  2988. getexp 1000000,700000;
  2989. close;
  2990. }
  2991. else {
  2992. // Start Nameless Island Access Quest Addition
  2993. if (aru_monas == 15) {
  2994. mes "[Kid Karyn]";
  2995. mes "Hi! It's good to see";
  2996. mes "you again! Kurdi just came";
  2997. mes "back home from the hospital,";
  2998. mes "and is getting better everyday!";
  2999. mes "Ah, and I've been taking care";
  3000. mes "of her, just like I promised~";
  3001. next;
  3002. mes "["+strcharinfo(0)+"]";
  3003. mes "Really? That's good";
  3004. mes "You should be proud~";
  3005. next;
  3006. mes "[Kid Karyn]";
  3007. mes "^666666*Blush*^000000 Heh heh!";
  3008. next;
  3009. mes "["+strcharinfo(0)+"]";
  3010. mes "Anyway, I was wondering";
  3011. mes "if you could help me.";
  3012. mes "Your dad's a fisherman,";
  3013. mes "right? Would you mind";
  3014. mes "asking him if I could";
  3015. mes "borrow his boat?";
  3016. next;
  3017. mes "[Kid Karyn]";
  3018. mes "Well... Actually...";
  3019. mes "The pope said that my";
  3020. mes "dad isn't allowed to use";
  3021. mes "his boat for a while...";
  3022. mes "I'm not sure why...";
  3023. next;
  3024. mes "[Kid Karyn]";
  3025. mes "So yeah. Dad's not allowed";
  3026. mes "to go out to sea right now.";
  3027. mes "But it should be okay if it's";
  3028. mes "you, right? Hey, you helped";
  3029. mes "me, so I hafta help you, right?";
  3030. next;
  3031. mes "[Kid Karyn]";
  3032. mes "My dad is really mad that";
  3033. mes "he can't use his boat so";
  3034. mes "maybe we better not tell";
  3035. mes "him you want to use it. Let's";
  3036. mes "keep it our secret, okay?";
  3037. next;
  3038. mes "["+strcharinfo(0)+"]";
  3039. mes "S-sure thing!";
  3040. next;
  3041. mes "[Kid Karyn]";
  3042. mes "Anyway, his boat is the";
  3043. mes "only one on the south beach";
  3044. mes "since all the other fishermen";
  3045. mes "dock theirs boats in other";
  3046. mes "places. Also, my dad's boat";
  3047. mes "will rust if no one uses it.";
  3048. next;
  3049. mes "["+strcharinfo(0)+"]";
  3050. mes "Great! Thanks so much";
  3051. mes "for your help, Karyn~";
  3052. mes "I'll be sure to take";
  3053. mes "good care of your dad's";
  3054. mes "boat. I only need it for";
  3055. mes "a little while, anyway.";
  3056. next;
  3057. mes "[Kid Karyn]";
  3058. mes "Heh heh! Thanks!";
  3059. mes "I'm happy that";
  3060. mes "I can help you too!";
  3061. set aru_monas,16;
  3062. close;
  3063. }
  3064. else if (aru_monas > 15) {
  3065. mes "[Kid Karyn]";
  3066. mes "Hi! How do you like";
  3067. mes "fishing on my dad's boat?";
  3068. mes "Oh, and Kurdi says hi!";
  3069. close;
  3070. }
  3071. // End Nameless Island Access Quest Addition.
  3072. mes "[Kid Karyn]";
  3073. mes "Hello, hello!";
  3074. mes "Hey, did you need";
  3075. mes "me to help you? No...?";
  3076. mes "Awww, there must be";
  3077. mes "something I can do...";
  3078. close;
  3079. }
  3080. }
  3081. else {
  3082. mes "[Kid Karyn]";
  3083. mes "^333333*Sob*^000000...";
  3084. mes "^333333*Sob*^000000...";
  3085. close;
  3086. }
  3087. }
  3088. que_thor,36,66,5 script Little Curdie 941,{
  3089. if (rachel_camel == 1) {
  3090. mes "^3355FFYou come across";
  3091. mes "a little girl lying on the";
  3092. mes "ground unconscious.^000000";
  3093. next;
  3094. mes "["+strcharinfo(0)+"]";
  3095. mes "Hey, kid! Wake up!";
  3096. mes "Can you hear me?";
  3097. next;
  3098. mes "^3355FFShe has a pulse, but";
  3099. mes "despite your verbal";
  3100. mes "entreaties, she won't";
  3101. mes "open her eyes. You";
  3102. mes "lightly slap her cheek";
  3103. mes "to wake her up.^000000";
  3104. next;
  3105. mes "[Little Curdie]";
  3106. mes "Huh?!";
  3107. mes "...Ah, owwww~";
  3108. mes "W-waaaaaaaah!";
  3109. next;
  3110. mes "["+strcharinfo(0)+"]";
  3111. mes "Sorry! I didn't mean";
  3112. mes "to make you cry! Are...";
  3113. mes "Are you alright?";
  3114. next;
  3115. mes "[Little Curdie]";
  3116. mes "Huh? Wh-who are you?";
  3117. mes "Oh no, you have to get";
  3118. mes "out of here! You'll be in";
  3119. mes "trouble if they catch you!";
  3120. next;
  3121. mes "["+strcharinfo(0)+"]";
  3122. mes "Are you Curdie?";
  3123. mes "Your brother Karyn";
  3124. mes "asked me to rescue you.";
  3125. mes "Come on, we've got to";
  3126. mes "get you out of here.";
  3127. next;
  3128. mes "[Little Curdie]";
  3129. mes "Karyn...?";
  3130. mes "Oh, oh no! I... They";
  3131. mes "locked me in these";
  3132. mes "shackles and I can't move!";
  3133. mes "You have to leave before";
  3134. mes "those scary men come back!";
  3135. next;
  3136. mes "["+strcharinfo(0)+"]";
  3137. mes "What...?!";
  3138. mes "Those bastards!";
  3139. mes "Tying up a little";
  3140. mes "girl like this...";
  3141. next;
  3142. mes "["+strcharinfo(0)+"]";
  3143. mes "Argh! And I can't just";
  3144. mes "use brute force to shatter";
  3145. mes "these shackles! I might";
  3146. mes "end up hurting you...!";
  3147. next;
  3148. mes "[Little Curdie]";
  3149. mes "Don't worry about me...";
  3150. mes "Just hurry and leave!";
  3151. mes "I... I'll be alright! Now";
  3152. mes "hurry! Someone's coming!";
  3153. next;
  3154. mes "["+strcharinfo(0)+"]";
  3155. mes "Okay, I'll go...";
  3156. mes "But sit tight, and";
  3157. mes "wait for me to come";
  3158. mes "back. I'll figure out";
  3159. mes "some way to free you.";
  3160. next;
  3161. mes "[Little Curdie]";
  3162. mes "^333333*Sob*^000000 R-really...?";
  3163. next;
  3164. mes "["+strcharinfo(0)+"]";
  3165. mes "I promise.";
  3166. mes "I'm sure that someone";
  3167. mes "in town will know of a way";
  3168. mes "to unlock your shackles.";
  3169. mes "I'll be back as soon as I can!";
  3170. set rachel_camel,2;
  3171. close;
  3172. }
  3173. else if (rachel_camel == 2) {
  3174. mes "^3355FFSomeone in town";
  3175. mes "must have the";
  3176. mes "expertise to unlock";
  3177. mes "these shackles. It's your";
  3178. mes "only hope to free Curdie";
  3179. mes "from these chains.^000000";
  3180. close;
  3181. }
  3182. else if (rachel_camel == 3) {
  3183. mes "^3355FFCurdie is lying";
  3184. mes "feebly on the ground.^000000";
  3185. close;
  3186. }
  3187. else if (rachel_camel == 4) {
  3188. mes "[Little Curdie]";
  3189. mes "I hate the metal";
  3190. mes "clanging sounds...";
  3191. mes "Th-the sparks,";
  3192. mes "they're... They're...";
  3193. next;
  3194. mes "^3355FFCurdie is curled up on";
  3195. mes "the ground, eyes tightly";
  3196. mes "shut, her entire body";
  3197. mes "trembling with fear.^000000";
  3198. close;
  3199. }
  3200. else if (rachel_camel == 5) {
  3201. mes "^3355FFOn the ground, you see";
  3202. mes "some equipment that looks";
  3203. mes "similarly to that used by";
  3204. mes "the Rachel soldiers.^000000";
  3205. close;
  3206. }
  3207. else if (rachel_camel == 6) {
  3208. mes "^3355FFCurdie is lying";
  3209. mes "feebly on the ground.^000000";
  3210. close;
  3211. }
  3212. else if (rachel_camel == 7) {
  3213. mes "^3355FFIt seems that someone";
  3214. mes "has come by to give";
  3215. mes "Curdie food and water.^000000";
  3216. close;
  3217. }
  3218. else if (rachel_camel == 8) {
  3219. mes "^3355FFCurdie is lying";
  3220. mes "feebly on the ground.^000000";
  3221. close;
  3222. }
  3223. else if (rachel_camel == 9) {
  3224. mes "^3355FFCurdie squints at you";
  3225. mes "as you walk by. It seems";
  3226. mes "that her vision gets worse";
  3227. mes "the longer she's locked";
  3228. mes "up in this cave.";
  3229. close;
  3230. }
  3231. else if (rachel_camel == 10) {
  3232. mes "^3355FFYou'd better find the";
  3233. mes "Silk Sand Camel and get";
  3234. mes "the soap ingredients if";
  3235. mes "you really want to free";
  3236. mes "Curdie from her shackles.^000000";
  3237. close;
  3238. }
  3239. else if (rachel_camel == 11) {
  3240. mes "["+strcharinfo(0)+"]";
  3241. mes "I'd better find Mr. Saraman's";
  3242. mes "lost camel, feed it camel";
  3243. mes "appetite stimulants, and";
  3244. mes "then get the soap ingredient";
  3245. mes "and 5 lumps of camel dung";
  3246. mes "if I want to free Curdie.";
  3247. close;
  3248. }
  3249. else if (rachel_camel <= 16) {
  3250. mes "^3355FFYou already found the";
  3251. mes "camel, so you need to collect";
  3252. mes "the soap ingredients if you";
  3253. mes "want to free Curdie.^000000";
  3254. close;
  3255. }
  3256. else if (rachel_camel == 17) {
  3257. mes "["+strcharinfo(0)+"]";
  3258. mes "I managed to get the soap";
  3259. mes "ingredients: 5 of those";
  3260. mes "camel dung lumps. I should";
  3261. mes "head back to Mr. Saraman to";
  3262. mes "tell him where his camel is,";
  3263. mes "and then go to Ms. Ivory.";
  3264. close;
  3265. }
  3266. else if (rachel_camel == 18) {
  3267. mes "^3355FFYou should be leaving";
  3268. mes "to see Ms. Ivory now if";
  3269. mes "you really want to free";
  3270. mes "Curdie from her shackles.^000000";
  3271. close;
  3272. }
  3273. else if (rachel_camel == 19) {
  3274. mes "^3355FFNow that you have the";
  3275. mes "Silk Sand Camel Soap,";
  3276. mes "you should bring it";
  3277. mes "over to Mr. Lockenlock.^000000";
  3278. close;
  3279. }
  3280. else if (rachel_camel == 20) {
  3281. mes "^3355FFCurdie is exactly";
  3282. mes "where you left her.";
  3283. mes "There's a bowl of cold";
  3284. mes "soup next to her, so it's";
  3285. mes "clear that someone has";
  3286. mes "been feeding her.^000000";
  3287. next;
  3288. mes "^3355FFYou pour the soap into";
  3289. mes "the shackle's lock to create";
  3290. mes "a mold that Mr. Lockenlock";
  3291. mes "can use to make a key.^000000";
  3292. next;
  3293. mes "[Little Curdie]";
  3294. mes "Will...";
  3295. mes "Will I always";
  3296. mes "be stuck here?";
  3297. mes "I... I want my mommy...";
  3298. next;
  3299. mes "["+strcharinfo(0)+"]";
  3300. mes "Oh... You're awake?";
  3301. mes "Don't worry, Curdie,";
  3302. mes "I'm sure that I'll be";
  3303. mes "able to get you free soon.";
  3304. mes "Try to hold on a bit longer.";
  3305. next;
  3306. mes "[Little Curdie]";
  3307. mes "When the door is open,";
  3308. mes "I see blazing flames...";
  3309. mes "And I hear... the sound";
  3310. mes "of machines? These men";
  3311. mes "wearing the same clothes";
  3312. mes "keep marching past me...";
  3313. next;
  3314. mes "[Little Curdie]";
  3315. mes "I... They scare me so much!";
  3316. mes "Th-the man that brings me";
  3317. mes "food says that they won't";
  3318. mes "let me go because of what";
  3319. mes "I saw inside there. They...";
  3320. mes "They won't let be go home...";
  3321. next;
  3322. mes "^3355FFCurdie's eyes are";
  3323. mes "disfocused and are";
  3324. mes "pointed above your head.";
  3325. mes "She might not survive if";
  3326. mes "she's forced to remain";
  3327. mes "here for much longer.^000000";
  3328. next;
  3329. mes "["+strcharinfo(0)+"]";
  3330. mes "Don't worry.";
  3331. mes "I'll come rescue";
  3332. mes "you as soon as I make";
  3333. mes "the key to unlock these";
  3334. mes "awful shackles. Don't worry...";
  3335. next;
  3336. mes "[Little Curdie]";
  3337. mes "If I'm not here the";
  3338. mes "next time you come,";
  3339. mes "then just run away.";
  3340. mes "Don't even tell my brother.";
  3341. mes "Get far away before they";
  3342. mes "can catch you. I-I'm serious...";
  3343. next;
  3344. mes "[Little Curdie]";
  3345. mes "Even if I don't see you";
  3346. mes "again... I just... I just";
  3347. mes "want to thank you for doing";
  3348. mes "your best to help me.";
  3349. next;
  3350. mes "["+strcharinfo(0)+"]";
  3351. mes "Everything will be";
  3352. mes "alright. I just have";
  3353. mes "to hurry a little bit.";
  3354. mes "Alright, it's time to go.";
  3355. next;
  3356. mes "^3355FFYou extract the soup";
  3357. mes "from the lock, and";
  3358. mes "carefully wrap it.";
  3359. mes "Now you need to take";
  3360. mes "the mold back to town";
  3361. mes "to Mr. Lockenlock.^000000";
  3362. set rachel_camel,21;
  3363. close;
  3364. }
  3365. else if (rachel_camel == 21) {
  3366. mes "^3355FFYou have to hurry back";
  3367. mes "to town and bring the";
  3368. mes "key mold to Mr. Lockenlock";
  3369. mes "so that he can make a key";
  3370. mes "to unlock Curdie's shackles.^000000";
  3371. close;
  3372. }
  3373. else if (rachel_camel == 22) {
  3374. mes "^3355FFCurdie is lying";
  3375. mes "feebly on the ground.^000000";
  3376. close;
  3377. }
  3378. else if (rachel_camel == 23) {
  3379. mes "[Little Curdie]";
  3380. mes "Y-you...";
  3381. mes "Is it really you?";
  3382. next;
  3383. mes "["+strcharinfo(0)+"]";
  3384. mes "Hang on, Curdie!";
  3385. mes "I hope this key works...";
  3386. next;
  3387. mes "^3355FFYou unlock the";
  3388. mes "shackles with";
  3389. mes "Mr. Lockenlock's key.^000000";
  3390. next;
  3391. mes "^333333*Crack*^000000";
  3392. next;
  3393. mes "[Little Curdie]";
  3394. mes "Aaaah!";
  3395. mes "M-my... My...!";
  3396. next;
  3397. mes "^3355FFCurdie's legs are";
  3398. mes "swollen from the";
  3399. mes "weight and pressure";
  3400. mes "of wearing the shackles";
  3401. mes "for such a long time.^000000";
  3402. next;
  3403. mes "[Little Curdie]";
  3404. mes "I can't move my legs!";
  3405. next;
  3406. mes "["+strcharinfo(0)+"]";
  3407. mes "Well, there's no other";
  3408. mes "choice. Curdie, I'm";
  3409. mes "going to send you back to";
  3410. mes "town with a Butterfly Wing.";
  3411. mes "Try not to move, alright?";
  3412. next;
  3413. mes "[Little Curdie]";
  3414. mes "Oh! Thank you...";
  3415. mes "I... I can go home...";
  3416. mes "Thank you s-so much...";
  3417. next;
  3418. mes "^3355FFYou use the power";
  3419. mes "of a Butterfly Wing to";
  3420. mes "send Curdie back to";
  3421. mes "town. Hopefully, she'll";
  3422. mes "arrive safely and see";
  3423. mes "her brother Karyn again.^000000";
  3424. next;
  3425. mes "["+strcharinfo(0)+"]";
  3426. mes "What did she see behind";
  3427. mes "the steel door in this old";
  3428. mes "volcano? It must have been";
  3429. mes "dangerous... Something";
  3430. mes "related to the Rachel Army...";
  3431. set rachel_camel,24;
  3432. close;
  3433. }
  3434. else {
  3435. mes "[Little Curdie]";
  3436. mes " .......";
  3437. close;
  3438. }
  3439. }
  3440. veins,181,166,3 script Lockenlock 900,{
  3441. if (rachel_camel == 4) {
  3442. if (countitem(503) > 0) {
  3443. mes "["+strcharinfo(0)+"]";
  3444. mes "Excuse me...?";
  3445. next;
  3446. mes "[Locksmith Lockenlock]";
  3447. mes "Huh? Arrrgh...";
  3448. mes "My head... What";
  3449. mes "do you want?";
  3450. next;
  3451. mes "["+strcharinfo(0)+"]";
  3452. mes "Oh, I'd like";
  3453. mes "to make a key.";
  3454. next;
  3455. mes "[Locksmith Lockenlock]";
  3456. mes "Keys? Yeah, yeah...";
  3457. mes "That's what I do.";
  3458. mes "If you've got the lock,";
  3459. mes "it'll be a piece of cake.";
  3460. next;
  3461. mes "[Locksmith Lockenlock]";
  3462. mes "Ugh, but I'm so thirsty";
  3463. mes "and this headache is";
  3464. mes "killing me. You mind";
  3465. mes "bringing me a Yellow";
  3466. mes "Potion first?";
  3467. next;
  3468. mes "["+strcharinfo(0)+"]";
  3469. mes "Sure, I guess.";
  3470. mes "I can part with just";
  3471. mes "1 Yellow Potion.";
  3472. mes "Here you go.";
  3473. next;
  3474. mes "[Locksmith Lockenlock]";
  3475. mes "Ah, that hit the spot!";
  3476. mes "Wait, wait... Now I feel";
  3477. mes "dizzy... What's going...";
  3478. mes "What's going on...?";
  3479. next;
  3480. mes "[Locksmith Lockenlock]";
  3481. mes "Okay, okay...";
  3482. mes "I'm alright now.";
  3483. mes "So what'd you say you";
  3484. mes "needed? A key? Did you";
  3485. mes "bring the lock with you?";
  3486. next;
  3487. mes "[Locksmith Lockenlock]";
  3488. mes "I'm an expert in crafting";
  3489. mes "keys and locks. Hell, my locks";
  3490. mes "are strong enough to hold down";
  3491. mes "a dragon, you know that? I'll";
  3492. mes "have you know that the Rachel";
  3493. mes "Army's a regular customer~";
  3494. next;
  3495. mes "["+strcharinfo(0)+"]";
  3496. mes "(^333333This guy made locks for";
  3497. mes "the Rachel army?! It might";
  3498. mes "not be a good idea to let him";
  3499. mes "know that I'm trying to free";
  3500. mes "one of their prisoners. Who";
  3501. mes "knows if he's loyal to them?^000000)";
  3502. next;
  3503. mes "["+strcharinfo(0)+"]";
  3504. mes "So what happened was...";
  3505. mes "I lost my key, but I can't";
  3506. mes "bring the lock here with me.";
  3507. mes "I think I'd end up breaking";
  3508. mes "it if I brought it with me.";
  3509. next;
  3510. mes "[Locksmith Lockenlock]";
  3511. mes "Oh, yeah? No problem.";
  3512. mes "Just take me to the lock.";
  3513. mes "I'll charge you extra, though,";
  3514. mes "especially since my knees";
  3515. mes "are going bad. So where";
  3516. mes "are we going exactly?";
  3517. next;
  3518. mes "["+strcharinfo(0)+"]";
  3519. mes "Wait!";
  3520. mes "We can't do that!";
  3521. next;
  3522. mes "[Locksmith Lockenlock]";
  3523. mes "What do you mean?";
  3524. mes "You're not trying to";
  3525. mes "open up a bank safe";
  3526. mes "or something, are you?";
  3527. next;
  3528. mes "["+strcharinfo(0)+"]";
  3529. mes "No, it's nothing like";
  3530. mes "that! It's just that the lock";
  3531. mes "is in a dangerous place.";
  3532. mes "This is really important...";
  3533. mes "Please, you have to help me!";
  3534. next;
  3535. mes "[Locksmith Lockenlock]";
  3536. mes "Huh. Well, bottom line,";
  3537. mes "I can't make a key without";
  3538. mes "looking at the lock. Let me";
  3539. mes "think of a way I can help you.";
  3540. mes "Give me a second, will you?";
  3541. next;
  3542. mes "[Locksmith Lockenlock]";
  3543. mes "...............................";
  3544. mes "Well, I guess you can try";
  3545. mes "to make a mold of the lock.";
  3546. mes "It'll have to be perfect, so";
  3547. mes "this'll get pretty expensive.";
  3548. next;
  3549. mes "[Locksmith Lockenlock]";
  3550. mes "Go to the market and";
  3551. mes "find a lady selling organic";
  3552. mes "soap. You need to get a bottle";
  3553. mes "of Chamelepu Soap. You will";
  3554. mes "need that exact type of soap:";
  3555. mes "nothing else will do.";
  3556. next;
  3557. mes "["+strcharinfo(0)+"]";
  3558. mes "Chamelpu Soap?";
  3559. mes "What is th--";
  3560. next;
  3561. mes "[Locksmith Lockenlock]";
  3562. mes "No time to explain.";
  3563. mes "You'd better hurry and";
  3564. mes "find her before she closes";
  3565. mes "shop for the day. The shop";
  3566. mes "owner's a beauty, so it'll";
  3567. mes "be tough for you to miss her.";
  3568. next;
  3569. mes "["+strcharinfo(0)+"]";
  3570. mes "...........";
  3571. delitem 503,1; //Yellow_Potion
  3572. set rachel_camel,5;
  3573. close;
  3574. }
  3575. else {
  3576. mes "^3355FFIt's a drunkard...";
  3577. mes "This man must be the";
  3578. mes "Mr. Lockenlock that you seek.";
  3579. mes "You'd better follow Toby's";
  3580. mes "advice and bring this man";
  3581. mes "a Yellow Potion first.^000000";
  3582. close;
  3583. }
  3584. }
  3585. else if (rachel_camel <= 3) {
  3586. mes "^3355FFIt's a drunkard...";
  3587. mes "The scent of pure";
  3588. mes "alcohol wafts around him.";
  3589. mes "There's a certain beauty";
  3590. mes "to his disheveled misery.^000000";
  3591. close;
  3592. }
  3593. else if (rachel_camel == 5) {
  3594. mes "[Locksmith Lockenlock]";
  3595. mes "Go to the market and";
  3596. mes "find a lady selling organic";
  3597. mes "soap, and get a bottle of";
  3598. mes "Chamelepu Soap. You will";
  3599. mes "need that exact type of soap:";
  3600. mes "nothing else will do.";
  3601. next;
  3602. mes "["+strcharinfo(0)+"]";
  3603. mes "Chamelpu Soap?";
  3604. mes "What is th--";
  3605. next;
  3606. mes "[Locksmith Lockenlock]";
  3607. mes "No time to explain.";
  3608. mes "You'd better hurry and";
  3609. mes "find her before she closes";
  3610. mes "shop for the day. The shop";
  3611. mes "owner's a beauty, so it'll";
  3612. mes "be tough for you to miss her.";
  3613. close;
  3614. }
  3615. else if (rachel_camel == 6) {
  3616. mes "["+strcharinfo(0)+"]";
  3617. mes "Wait... I should be";
  3618. mes "bringing Ms. Ivory all";
  3619. mes "of the soap ingredients.";
  3620. mes "What were they again...?";
  3621. next;
  3622. mes "["+strcharinfo(0)+"]";
  3623. mes "^4D4DFF10 Milk^000000,";
  3624. mes "^4D4DFF100 Green Herbs^000000,";
  3625. mes "^4D4DFF50 Jellopies^000000, and";
  3626. mes "^4D4DFF5 Empty Bottles^000000.";
  3627. mes "I better get those...";
  3628. close;
  3629. }
  3630. else if (rachel_camel == 7) {
  3631. mes "["+strcharinfo(0)+"]";
  3632. mes "I need to talk to";
  3633. mes "someone named Saraman";
  3634. mes "to get the soap ingredients...";
  3635. close;
  3636. }
  3637. else if (rachel_camel == 8) {
  3638. mes "["+strcharinfo(0)+"]";
  3639. mes "Let's see...";
  3640. mes "I need to bring";
  3641. mes "Mr. Saruman all the";
  3642. mes "things he needs to";
  3643. mes "stimulate a camel's ";
  3644. mes "appetite. I need to get...";
  3645. next;
  3646. mes "["+strcharinfo(0)+"]";
  3647. mes "^4D4DFF1 Unripe Apple^000000,";
  3648. mes "^4D4DFF5 Monster's Feed^000000,";
  3649. mes "^4D4DFF1 Empty Bottle^000000, and";
  3650. mes "^4D4DFF1 Yellow Potion^000000.";
  3651. close;
  3652. }
  3653. else if (rachel_camel == 9) {
  3654. mes "["+strcharinfo(0)+"]";
  3655. mes "I have everything I need";
  3656. mes "to stimulate a camel's";
  3657. mes "appetite. Now I need to";
  3658. mes "feed the camel so that I can";
  3659. mes "get the soap ingredients and";
  3660. mes "5 lumps of camel dung.";
  3661. close;
  3662. }
  3663. else if (rachel_camel == 10) {
  3664. mes "["+strcharinfo(0)+"]";
  3665. mes "Right now, my time";
  3666. mes "would be better spent";
  3667. mes "looking for the Silk Sand";
  3668. mes "Camel for the ingredients.";
  3669. close;
  3670. }
  3671. else if (rachel_camel == 11) {
  3672. mes "["+strcharinfo(0)+"]";
  3673. mes "I'd better find Mr. Saraman's";
  3674. mes "lost camel, feed it camel";
  3675. mes "appetite stimulants, and";
  3676. mes "then get the soap ingredient";
  3677. mes "and 5 lumps of camel dung";
  3678. mes "if I want to free Curdie.";
  3679. close;
  3680. }
  3681. else if (rachel_camel == 12) {
  3682. mes "["+strcharinfo(0)+"]";
  3683. mes "Well... I found the";
  3684. mes "camel. Now I need to get";
  3685. mes "all the soap ingredients.";
  3686. mes "The sooner I do that, the";
  3687. mes "sooner I can help Curdie.";
  3688. close;
  3689. }
  3690. else if (rachel_camel <= 16) {
  3691. mes "^3355FFYou already found the";
  3692. mes "camel, so you need to collect";
  3693. mes "the soap ingredients if you";
  3694. mes "want to free Curdie.^000000";
  3695. close;
  3696. }
  3697. else if (rachel_camel == 17) {
  3698. mes "["+strcharinfo(0)+"]";
  3699. mes "I managed to get the soap";
  3700. mes "ingredients: 5 of those";
  3701. mes "camel dung lumps. I should";
  3702. mes "head back to Mr. Saraman to";
  3703. mes "tell him where his camel is,";
  3704. mes "and then go to Ms. Ivory.";
  3705. close;
  3706. }
  3707. else if (rachel_camel == 18) {
  3708. mes "["+strcharinfo(0)+"]";
  3709. mes "Let's see...";
  3710. mes "Shouldn't I be going";
  3711. mes "to see Ms. Ivory now?";
  3712. close;
  3713. }
  3714. else if (rachel_camel == 19) {
  3715. mes "[Locksmith Lockenlock]";
  3716. mes "Oh, so you're finally";
  3717. mes "back with the Chamelpu";
  3718. mes "Soap. What took so long?";
  3719. mes "All you had to do was go";
  3720. mes "to the market and buy it.";
  3721. next;
  3722. mes "["+strcharinfo(0)+"]";
  3723. mes "...............................";
  3724. mes "...............................";
  3725. mes "...............................";
  3726. mes "...............................";
  3727. mes "...............................";
  3728. mes "...............................";
  3729. next;
  3730. mes "[Locksmith Lockenlock]";
  3731. mes "Uh, anyway, did Ms. Ivory";
  3732. mes "tell you how to use the soap?";
  3733. mes "You just pour it into the";
  3734. mes "keyhole, and then pour the";
  3735. mes "soap back into the bottle.";
  3736. mes "Do it carefully and quickly.";
  3737. next;
  3738. mes "[Locksmith Lockenlock]";
  3739. mes "Make sure you close the";
  3740. mes "bottle tightly when you're";
  3741. mes "done so no air gets into it.";
  3742. mes "If you take more than thirty";
  3743. mes "seconds, the soap won't retain";
  3744. mes "the lock's shape very well.";
  3745. next;
  3746. mes "[Locksmith Lockenlock]";
  3747. mes "Pour the liquid soap to the key hole in the lock,";
  3748. mes "pour the soap back to the bottle.";
  3749. mes "and close the lid so tightly that the air wouldn't go inside the bottle.";
  3750. mes "Remember, you can't take longer than 30 seconds to finish the procedures.";
  3751. next;
  3752. mes "[Locksmith Lockenlock]";
  3753. mes "Finally, bring the bottle";
  3754. mes "back here for me so that";
  3755. mes "I can make the key. But when";
  3756. mes "you come back, I need to make";
  3757. mes "sure that the key you're making";
  3758. mes "isn't for anything illegal...";
  3759. next;
  3760. mes "["+strcharinfo(0)+"]";
  3761. mes "Alright.";
  3762. set rachel_camel,20;
  3763. close;
  3764. }
  3765. else if (rachel_camel == 20) {
  3766. mes "["+strcharinfo(0)+"]";
  3767. mes "I'd better use the soap to";
  3768. mes "make a key mold that I can";
  3769. mes "bring over to Mr. Lockenlock.";
  3770. close;
  3771. }
  3772. else if (rachel_camel == 21) {
  3773. mes "[Locksmith Lockenlock]";
  3774. mes "Oh, you're back...";
  3775. mes "So did you manage";
  3776. mes "to make the key mold?";
  3777. next;
  3778. mes "["+strcharinfo(0)+"]";
  3779. mes "Yes, I did. Would you";
  3780. mes "please hurry? This is an";
  3781. mes "emergency, and it could";
  3782. mes "get really bad if I don't";
  3783. mes "get this key made soon...";
  3784. next;
  3785. mes "[Locksmith Lockenlock]";
  3786. mes "Let me see... Well,";
  3787. mes "it's not really perfect, but";
  3788. mes "I should be able to fashion";
  3789. mes "a key for this lock. Ooh...";
  3790. mes "But you know what? I don't";
  3791. mes "have any materials on me.";
  3792. next;
  3793. mes "[Locksmith Lockenlock]";
  3794. mes "I've already made all";
  3795. mes "the keys and locks for this";
  3796. mes "town, so no one's really had";
  3797. mes "to send in any orders lately.";
  3798. mes "That's why I didn't have any";
  3799. mes "materials onhand. Sorry.";
  3800. next;
  3801. mes "[Locksmith Lockenlock]";
  3802. mes "All I need is ^4D4DFF1 Steel^000000.";
  3803. mes "It won't take me more";
  3804. mes "than five minutes to make";
  3805. mes "the key, so I can get it done";
  3806. mes "as soon as you can bring";
  3807. mes "me the Steel. I'll be waiting.";
  3808. set rachel_camel,22;
  3809. close;
  3810. }
  3811. else if (rachel_camel == 22) {
  3812. if (countitem(999) > 0) {
  3813. mes "["+strcharinfo(0)+"]";
  3814. mes "Here's the Steel that";
  3815. mes "you need. Would you";
  3816. mes "please make the key now?";
  3817. next;
  3818. mes "[Locksmith Lockenlock]";
  3819. mes "...............................";
  3820. mes "I've been studying";
  3821. mes "this key mold, and";
  3822. mes "I just realized something...";
  3823. mes "Tell me right now: what";
  3824. mes "are you using this key for?";
  3825. next;
  3826. mes "["+strcharinfo(0)+"]";
  3827. mes "Huh...?";
  3828. mes "What are you...?";
  3829. next;
  3830. mes "[Locksmith Lockenlock]";
  3831. mes "I asked you first.";
  3832. mes "Tell me what you intend";
  3833. mes "to do with this key! If you";
  3834. mes "don't, I can't help you.";
  3835. next;
  3836. mes "[Locksmith Lockenlock]";
  3837. mes "Don't lie to me.";
  3838. mes "This mold... This is";
  3839. mes "the lock for the shackles";
  3840. mes "that I've made under the";
  3841. mes "orders of the Rachel Army.";
  3842. mes "I have the master key for that.";
  3843. next;
  3844. mes "[Locksmith Lockenlock]";
  3845. mes "These shackles are only";
  3846. mes "supposed to be used for";
  3847. mes "prisoners! If I release one";
  3848. mes "of them, they will hunt you";
  3849. mes "down and hold me accountable.";
  3850. next;
  3851. mes "["+strcharinfo(0)+"]";
  3852. mes "The truth is... I really";
  3853. mes "am trying to free somebody";
  3854. mes "the Rachel Army imprisoned...";
  3855. mes "She's Curdie, a young girl";
  3856. mes "that they locked up in";
  3857. mes "Thor Volcano...";
  3858. next;
  3859. mes "[Locksmith Lockenlock]";
  3860. mes "What...?!";
  3861. mes "Are you serious?";
  3862. mes "Y-you're... No way.";
  3863. mes "You're not lying. This...";
  3864. mes "I'm sorry. You shouldn't";
  3865. mes "have gotten involved, but...";
  3866. next;
  3867. mes "[Locksmith Lockenlock]";
  3868. mes "Oh God!";
  3869. mes "They... They";
  3870. mes "really imprisoned";
  3871. mes "an innocent child?!";
  3872. next;
  3873. mes "[Locksmith Lockenlock]";
  3874. mes "Here. Take it.";
  3875. mes "Take the master key.";
  3876. mes "Bring it to Thor Volcano";
  3877. mes "and rescue that poor kid.";
  3878. mes "We could get in a lot of";
  3879. mes "trouble for doing this, but...";
  3880. next;
  3881. mes "[Locksmith Lockenlock]";
  3882. mes "My conscience won't allow";
  3883. mes "them to do something like";
  3884. mes "this. Rescue that kid, and";
  3885. mes "then throw the key away";
  3886. mes "somewhere when you're done.";
  3887. next;
  3888. mes "[Locksmith Lockenlock]";
  3889. mes "That way, if the army";
  3890. mes "comes to interrogate me,";
  3891. mes "I'll just say that it was";
  3892. mes "stolen from my shop by";
  3893. mes "some thief. I should get";
  3894. mes "rid of all my keys too...";
  3895. next;
  3896. mes "[Locksmith Lockenlock]";
  3897. mes "Hurry up and go!";
  3898. mes "Make sure that you";
  3899. mes "bring that child back";
  3900. mes "safe to her family!";
  3901. set rachel_camel,23;
  3902. close;
  3903. }
  3904. else {
  3905. mes "[Locksmith Lockenlock]";
  3906. mes "All I need is ^4D4DFF1 Steel^000000.";
  3907. mes "It won't take me more";
  3908. mes "than five minutes to make";
  3909. mes "the key, so I can get it done";
  3910. mes "as soon as you can bring";
  3911. mes "me the Steel. I'll be waiting.";
  3912. }
  3913. }
  3914. else if (rachel_camel == 23) {
  3915. mes "[Locksmith Lockenlock]";
  3916. mes "Here. Take it.";
  3917. mes "Take the master key.";
  3918. mes "Bring it to Thor Volcano";
  3919. mes "and rescue that poor kid.";
  3920. mes "We could get in a lot of";
  3921. mes "trouble for doing this, but...";
  3922. next;
  3923. mes "[Locksmith Lockenlock]";
  3924. mes "Hurry up and go!";
  3925. mes "Make sure that you";
  3926. mes "bring that child back";
  3927. mes "safe to her family!";
  3928. close;
  3929. }
  3930. else if (rachel_camel == 24) {
  3931. mes "[Locksmith Lockenlock]";
  3932. mes "Hey, that kid you saved...";
  3933. mes "Curdie. She's safely back";
  3934. mes "in town. I feel so responsible";
  3935. mes "about what happened. I mean,";
  3936. mes "she was locked up in shackles";
  3937. mes "that I designed for the army.";
  3938. next;
  3939. mes "[Locksmith Lockenlock]";
  3940. mes "Anyway, I'm packing my";
  3941. mes "things. I'm thinking of";
  3942. mes "leaving this town for good.";
  3943. mes "The army's rotten to the core";
  3944. mes "for doing something like this.";
  3945. next;
  3946. mes " [Locksmith Lockenlock]";
  3947. mes "You're a real good person,";
  3948. mes "and I'm glad I got to know";
  3949. mes "you. I don't know if we'll";
  3950. mes "ever meet again, but it's";
  3951. mes "good that there are people";
  3952. mes "like you in this world.";
  3953. close;
  3954. }
  3955. else if (rachel_camel == 25) {
  3956. mes "[Locksmith Lockenlock]";
  3957. mes "Hey, that kid you saved...";
  3958. mes "Curdie. She's safely back";
  3959. mes "in town. I feel so responsible";
  3960. mes "about what happened. I mean,";
  3961. mes "she was locked up in shackles";
  3962. mes "that I designed for the army.";
  3963. next;
  3964. mes "[Locksmith Lockenlock]";
  3965. mes "Anyway, I'm packing my";
  3966. mes "things. I'm thinking of";
  3967. mes "leaving this town for good.";
  3968. mes "The army's rotten to the core";
  3969. mes "for doing something like this.";
  3970. next;
  3971. mes "[Locksmith Lockenlock]";
  3972. mes "You're a real good person,";
  3973. mes "and I'm glad I got to know";
  3974. mes "you. I don't know if we'll";
  3975. mes "ever meet again, but it's";
  3976. mes "good that there are people";
  3977. mes "like you in this world.";
  3978. close;
  3979. }
  3980. else {
  3981. mes "[Lockenlock]";
  3982. mes "Zzzz...";
  3983. mes "Zzzz... Argh!";
  3984. mes "...Zzz...";
  3985. next;
  3986. mes "^3355FFHe's drunk and";
  3987. mes "fast asleep.^000000";
  3988. close;
  3989. }
  3990. }
  3991. veins,227,127,5 script Ivory 940,{
  3992. if (rachel_camel == 5) {
  3993. mes "["+strcharinfo(0)+"]";
  3994. mes "Excuse me...?";
  3995. next;
  3996. mes "[Organic Soap Maker Ivory]";
  3997. mes "Oh, I'm sorry, but I'm";
  3998. mes "closing shop right now";
  3999. mes "because I just ran out of";
  4000. mes "soap ingredients. If you";
  4001. mes "ordered something, then you";
  4002. mes "could just come back tomorrow.";
  4003. next;
  4004. mes "["+strcharinfo(0)+"]";
  4005. mes "Um, this is an emergency!";
  4006. mes "Mr. Lockenlock told me to";
  4007. mes "come here to get some kind";
  4008. mes "of special soap. I need it";
  4009. mes "to make a mold for him";
  4010. mes "to make a key for me...";
  4011. next;
  4012. mes "[Organic Soap Maker Ivory]";
  4013. mes "Oh? You locked yourself";
  4014. mes "out? Ah, Mr. Lockenlock";
  4015. mes "must have been talking";
  4016. mes "about my organic Chamelepu";
  4017. mes "soap. It's an artistic soap";
  4018. mes "that you can shape easily~";
  4019. next;
  4020. mes "["+strcharinfo(0)+"]";
  4021. mes "Yes, that's right!";
  4022. mes "Chamelepu Soap!";
  4023. next;
  4024. mes "[Organic Soap Maker Ivory]";
  4025. mes "My Chamelepu Soap";
  4026. mes "is pretty popular. It's";
  4027. mes "a liquid soap that you can";
  4028. mes "pour into anything, and it'll";
  4029. mes "harden into any shape that";
  4030. mes "you want. Neat, huh?";
  4031. next;
  4032. mes "[Organic Soap Maker Ivory]";
  4033. mes "Well, as I told you earlier,";
  4034. mes "I ran out of every soap ingredient,";
  4035. mes "so I cannot make any more soap today.";
  4036. mes "You should come back tomorrow evening";
  4037. mes "if you want to buy the soap.";
  4038. next;
  4039. mes "[Organic Soap Maker Ivory]";
  4040. mes "If you really need it";
  4041. mes "right away, I can still";
  4042. mes "make it for you if can";
  4043. mes "bring all the ingredients.";
  4044. mes "They might be a bit hard";
  4045. mes "to obtain, though...";
  4046. next;
  4047. mes "["+strcharinfo(0)+"]";
  4048. mes "That's fine. The";
  4049. mes "important thing for me";
  4050. mes "is to get this soap as";
  4051. mes "soon as I possibly can!";
  4052. next;
  4053. mes "[Organic Soap Maker Ivory]";
  4054. mes "Alright, first I want";
  4055. mes "you to bring me the basic";
  4056. mes "stuff. Bring these items";
  4057. mes "in the exact amounts I ask";
  4058. mes "for, alright? Ratios are pretty";
  4059. mes "important in making soap.";
  4060. next;
  4061. mes "[Organic Soap Maker Ivory]";
  4062. mes "^4D4DFF10 Milk^000000,";
  4063. mes "^4D4DFF100 Green Herbs^000000,";
  4064. mes "^4D4DFF50 Jellopies^000000, and";
  4065. mes "^4D4DFF5 Empty Bottles^000000.";
  4066. mes "Then we can move";
  4067. mes "on to the hard part.";
  4068. set rachel_camel,6;
  4069. close;
  4070. }
  4071. else if (rachel_camel == 6) {
  4072. if ((countitem(519) > 9) && (countitem(511) > 99) && (countitem(909) > 49) && (countitem(713) > 4)) {
  4073. mes "[Organic Soap Maker Ivory]";
  4074. mes "Oh, great! You brought";
  4075. mes "everything! Now... It's";
  4076. mes "time for you to do the,";
  4077. mes "um, hard part.";
  4078. next;
  4079. mes "["+strcharinfo(0)+"]";
  4080. mes "...............................";
  4081. mes "...............................";
  4082. mes "...............................";
  4083. next;
  4084. mes "[Organic Soap Maker Ivory]";
  4085. mes "Please tell the";
  4086. mes "Silk Sand Camel farm";
  4087. mes "owner in town that I sent";
  4088. mes "you, and show him the";
  4089. mes "ingredients that you've";
  4090. mes "gathered for me so far.";
  4091. next;
  4092. mes "["+strcharinfo(0)+"]";
  4093. mes "Wait...";
  4094. mes "Why would I want";
  4095. mes "to see the guy that";
  4096. mes "takes care of Silk Sand";
  4097. mes "Camels? What does he";
  4098. mes "have to do with soap?";
  4099. next;
  4100. mes "[Organic Soap Maker Ivory]";
  4101. mes "Don't sweat it for now...";
  4102. mes "Just go visit Mr. Saraman,";
  4103. mes "the Camel Farm owner.";
  4104. mes "I can't wait for you that long,";
  4105. mes "so please come back here";
  4106. mes "as soon as possible.";
  4107. next;
  4108. mes "["+strcharinfo(0)+"]";
  4109. mes "Mr. Saraman...?";
  4110. mes "Okay, so I need to visit";
  4111. mes "him if I really need you";
  4112. mes "to make the soap...";
  4113. set rachel_camel,7;
  4114. close;
  4115. }
  4116. else {
  4117. mes "[Organic Soap Maker Ivory]";
  4118. mes "Alright, first I want";
  4119. mes "you to bring me the basic";
  4120. mes "stuff. Bring these items";
  4121. mes "in the exact amounts I ask";
  4122. mes "for, alright? Ratios are pretty";
  4123. mes "important in making soap.";
  4124. next;
  4125. mes "[Organic Soap Maker Ivory]";
  4126. mes "^4D4DFF10 Milk^000000,";
  4127. mes "^4D4DFF100 Green Herbs^000000,";
  4128. mes "^4D4DFF50 Jellopies^000000, and";
  4129. mes "^4D4DFF5 Empty Bottles^000000.";
  4130. mes "Then we can move";
  4131. mes "on to the hard part.";
  4132. close;
  4133. }
  4134. }
  4135. else if (rachel_camel <= 4) {
  4136. mes "[Organic Soap Maker Ivory]";
  4137. mes "I need to make more of";
  4138. mes "my soap, but I've run out";
  4139. mes "of ingredients. Well, there's";
  4140. mes "not much I can do without them,";
  4141. mes "so maybe it'd be better if";
  4142. mes "I just close up shop today...";
  4143. close;
  4144. }
  4145. else if (rachel_camel == 7) {
  4146. mes "[Beautiful Lady]";
  4147. mes "Hm? Did you need";
  4148. mes "something? I'm still";
  4149. mes "setting up shop now";
  4150. mes "so I'm not really ready";
  4151. mes "to sell anything yet.";
  4152. close;
  4153. }
  4154. else if (rachel_camel == 8) {
  4155. mes "["+strcharinfo(0)+"]";
  4156. mes "Let's see...";
  4157. mes "I need to bring";
  4158. mes "Mr. Saruman all the";
  4159. mes "things he needs to";
  4160. mes "stimulate a camel's ";
  4161. mes "appetite. I need to get...";
  4162. next;
  4163. mes "["+strcharinfo(0)+"]";
  4164. mes "^4D4DFF1 Unripe Apple^000000,";
  4165. mes "^4D4DFF5 Monster's Feed^000000,";
  4166. mes "^4D4DFF1 Empty Bottle^000000, and";
  4167. mes "^4D4DFF1 Yellow Potion^000000.";
  4168. close;
  4169. }
  4170. else if (rachel_camel == 9) {
  4171. mes "["+strcharinfo(0)+"]";
  4172. mes "I have everything I need";
  4173. mes "to stimulate a camel's";
  4174. mes "appetite. Now I need to";
  4175. mes "feed the camel so that I can";
  4176. mes "get the soap ingredients and";
  4177. mes "5 lumps of camel dung.";
  4178. close;
  4179. }
  4180. else if (rachel_camel == 10) {
  4181. mes "["+strcharinfo(0)+"]";
  4182. mes "Right now, my time";
  4183. mes "would be better spent";
  4184. mes "looking for the Silk Sand";
  4185. mes "Camel for the ingredients.";
  4186. close;
  4187. }
  4188. else if (rachel_camel == 11) {
  4189. mes "["+strcharinfo(0)+"]";
  4190. mes "I'd better find Mr. Saraman's";
  4191. mes "lost camel, feed it camel";
  4192. mes "appetite stimulants, and";
  4193. mes "then get the soap ingredient";
  4194. mes "and 5 lumps of camel dung";
  4195. mes "if I want to free Curdie.";
  4196. close;
  4197. }
  4198. else if (rachel_camel == 12) {
  4199. mes "["+strcharinfo(0)+"]";
  4200. mes "Well... I found the";
  4201. mes "camel. Now I need to get";
  4202. mes "all the soap ingredients.";
  4203. mes "The sooner I do that, the";
  4204. mes "sooner I can help Curdie.";
  4205. close;
  4206. }
  4207. else if (rachel_camel <= 16) {
  4208. mes "^3355FFYou already found the";
  4209. mes "camel, so you need to collect";
  4210. mes "the soap ingredients if you";
  4211. mes "want to free Curdie.^000000";
  4212. close;
  4213. }
  4214. else if (rachel_camel == 17) {
  4215. mes "["+strcharinfo(0)+"]";
  4216. mes "I managed to get the soap";
  4217. mes "ingredients: 5 of those";
  4218. mes "camel dung lumps. I should";
  4219. mes "head back to Mr. Saraman to";
  4220. mes "tell him where his camel is,";
  4221. mes "and then go to Ms. Ivory.";
  4222. close;
  4223. }
  4224. else if (rachel_camel == 18) {
  4225. mes "[Organic Soap Maker Ivory]";
  4226. mes "Hm, did Soony give you";
  4227. mes "any trouble? I'm guessing";
  4228. mes "that's why it's been taking";
  4229. mes "you so long to get all that";
  4230. mes "camel dung over here.";
  4231. next;
  4232. mes "["+strcharinfo(0)+"]";
  4233. mes "It was a pretty big";
  4234. mes "hassle... But hopefully,";
  4235. mes "this will all be worth it.";
  4236. mes "Anyway, take this camel";
  4237. mes "dung. I don't want to";
  4238. mes "handle it for much longer.";
  4239. next;
  4240. mes "[Organic Soap Maker Ivory]";
  4241. mes "Yes, I can understand that.";
  4242. mes "Even though it's in bottles,";
  4243. mes "it's pretty gross that these";
  4244. mes "bottles are still warm...";
  4245. mes "Anyway, we're good to go.";
  4246. mes "Let me make you some soap~";
  4247. next;
  4248. mes "[Organic Soap Maker Ivory]";
  4249. mes "You spent a lot of";
  4250. mes "time and energy to get";
  4251. mes "these, so I won't charge";
  4252. mes "you for my service. Besides,";
  4253. mes "you brought enough materials";
  4254. mes "that I'll have some left over.";
  4255. next;
  4256. mes "^3355FFMs. Ivory put on a pair";
  4257. mes "of long gloves, and mixed";
  4258. mes "the ingredients. She then";
  4259. mes "placed them in a clean bottle.^000000";
  4260. next;
  4261. mes "[Organic Soap Maker Ivory]";
  4262. mes "Here's your soap! After";
  4263. mes "you pour the soap into";
  4264. mes "something, don't forget";
  4265. mes "to put it into a larger bottle";
  4266. mes "after about twenty seconds.";
  4267. next;
  4268. mes "[Organic Soap Maker Ivory]";
  4269. mes "And um... Don't let";
  4270. mes "anyone else know what";
  4271. mes "I use to make this soap.";
  4272. mes "People won't buy it if they";
  4273. mes "knew they were washing their";
  4274. mes "faces with... You know...";
  4275. next;
  4276. mes "["+strcharinfo(0)+"]";
  4277. mes "Don't worry, I won't";
  4278. mes "tell anyone. Thanks";
  4279. mes "for making the soap! ";
  4280. next;
  4281. mes "^3355FFNow that you have the";
  4282. mes "Silk Sand Camel Soap.";
  4283. mes "you should bring it";
  4284. mes "to Mr. Lockenlock.^000000";
  4285. set rachel_camel,19;
  4286. close;
  4287. }
  4288. else if (rachel_camel == 19) {
  4289. mes "^3355FFNow that you have the";
  4290. mes "Silk Sand Camel Soap.";
  4291. mes "you should bring it";
  4292. mes "to Mr. Lockenlock.^000000";
  4293. close;
  4294. }
  4295. else if (rachel_camel <= 25) {
  4296. mes "[Organic Soap Maker Ivory]";
  4297. mes "^333333*Phew!*^000000 It's been";
  4298. mes "a long day. I think";
  4299. mes "I'll close up shop now~";
  4300. close;
  4301. }
  4302. else {
  4303. mes "[Beautiful Lady]";
  4304. mes "Hm? Did you need";
  4305. mes "something? I'm still";
  4306. mes "setting up shop now";
  4307. mes "so I'm not really ready";
  4308. mes "to sell anything yet.";
  4309. close;
  4310. }
  4311. }
  4312. veins,115,59,5 script Saraman 847,{
  4313. if (rachel_camel < 7) {
  4314. mes "[Saraman]";
  4315. mes "Zzzzz...";
  4316. mes "Zzz... Zzzzzz...";
  4317. close;
  4318. }
  4319. else if (rachel_camel == 7) {
  4320. mes "["+strcharinfo(0)+"]";
  4321. mes "Excuse me. Hello~";
  4322. mes "Ms. Ivory sent me";
  4323. mes "here with these soap";
  4324. mes "ingredients? She said";
  4325. mes "I had to come to you if";
  4326. mes "I wanted her to make it.";
  4327. next;
  4328. mes "[Camel Farm Owner Saraman]";
  4329. mes "Soap, eh? Oh, I see.";
  4330. mes "You must be here to get";
  4331. mes "some fresh camel dung.";
  4332. next;
  4333. mes "["+strcharinfo(0)+"]";
  4334. mes "Wh-what?";
  4335. mes "My God!";
  4336. mes "A-are you sure?";
  4337. mes "Tell me you're joking!";
  4338. next;
  4339. mes "[Camel Farm Owner Saraman]";
  4340. mes "Sure as sin, and";
  4341. mes "honest to God.";
  4342. next;
  4343. mes "["+strcharinfo(0)+"]";
  4344. mes "...............................";
  4345. mes "...............................";
  4346. mes "...............................";
  4347. next;
  4348. mes "[Camel Farm Owner Saraman]";
  4349. mes "Yeah, those ingredients";
  4350. mes "you brought me? They're for";
  4351. mes "making soap alright. ^FF0000That's";
  4352. mes "what we feed the camels^000000 so";
  4353. mes "that they make a whole lotta";
  4354. mes "dung. Dung to make soap.";
  4355. next;
  4356. mes "[Camel Farm Owner Saraman]";
  4357. mes "Oh, don't worry. Camel";
  4358. mes "dung is sterile, completely";
  4359. mes "safe. In fact, it smells nice,";
  4360. mes "has medicinal properties, and";
  4361. mes "it's considered a delicacy";
  4362. mes "in certain countries.";
  4363. next;
  4364. mes "[Camel Farm Owner Saraman]";
  4365. mes "Sadly, Silk Sand Camels";
  4366. mes "are almost extinct, so I only";
  4367. mes "have one on this farm. That's";
  4368. mes "why we have a special contract^FFFFFF ^000000 with Ms. Ivory to make her soap.";
  4369. next;
  4370. mes "[Camel Farm Owner Saraman]";
  4371. mes "Say... I wasn't expecting";
  4372. mes "her to send a deliveryman";
  4373. mes "until tomorrow. Why are";
  4374. mes "you here so early anyway?";
  4375. next;
  4376. mes "["+strcharinfo(0)+"]";
  4377. mes "Actually, this is kind";
  4378. mes "of an emergency. You see,";
  4379. mes "I need the soap to make a";
  4380. mes "key mold because I lost--";
  4381. next;
  4382. mes "[Camel Farm Owner Saraman]";
  4383. mes "Never mind, never mind.";
  4384. mes "I'm sorry I asked! So this";
  4385. mes "is a personal favor for you,";
  4386. mes "huh? Well, there's a bit of";
  4387. mes "a problem that we need to";
  4388. mes "solve first. Listen up...";
  4389. next;
  4390. mes "[Camel Farm Owner Saraman]";
  4391. mes "We can only get camel";
  4392. mes "dung after a camel eats,";
  4393. mes "right? Well, my camel isn't";
  4394. mes "used to eating so late in the";
  4395. mes "day. Even if we put food in";
  4396. mes "front of her, she won't eat it.";
  4397. next;
  4398. mes "["+strcharinfo(0)+"]";
  4399. mes "What? Isn't there";
  4400. mes "something we can do?";
  4401. mes "I mean, I'm talking about";
  4402. mes "a life or death matter!";
  4403. next;
  4404. mes "[Camel Farm Owner Saraman]";
  4405. mes "*Sigh* ...This isn't good... Okay then, let's do this.";
  4406. mes "Sometimes I make an appetite stimulant for the camel";
  4407. mes "when she's sick and wouldn't eat anything.";
  4408. mes "We can try feeding her the stimulant, and make it poop.";
  4409. next;
  4410. mes "[Camel Farm Owner Saraman]";
  4411. mes "Well, we can't forcefeed";
  4412. mes "her, but we can get her to";
  4413. mes "munch a bit on some appetite";
  4414. mes "stimulant. I usually use that";
  4415. mes "if she's sick, but if you say";
  4416. mes "that this is an emergency...";
  4417. next;
  4418. mes "[Camel Farm Owner Saraman]";
  4419. mes "Alright, I guess we";
  4420. mes "can try it. But I want you";
  4421. mes "to bring me the ingredients.";
  4422. mes "Get me... Let's see now...";
  4423. next;
  4424. mes "[Camel Farm Owner Saraman]";
  4425. mes "^4D4DFF1 Unripe Apple^000000,";
  4426. mes "^4D4DFF5 Monster's Feed^000000,";
  4427. mes "^4D4DFF1 Empty Bottle^000000, and";
  4428. mes "^4D4DFF1 Yellow Potion^000000.";
  4429. set rachel_camel,8;
  4430. close;
  4431. }
  4432. else if (rachel_camel == 8) {
  4433. if ((countitem(528) > 4) && (countitem(503) > 0) && (countitem(619) > 0) && (countitem(713) > 0)) {
  4434. mes "[Camel Farm Owner Saraman]";
  4435. mes "Oh good, you're back.";
  4436. mes "Did you bring everything?";
  4437. mes "Here, I need to mix it all";
  4438. mes "together first before you";
  4439. mes "can feed it to my camel.";
  4440. mes "Just a minute now...";
  4441. next;
  4442. mes "^3355FFSaraman mixed all";
  4443. mes "of the ingredients,";
  4444. mes "and gingerly poured";
  4445. mes "them into a bottle.^000000";
  4446. next;
  4447. mes "[Camel Farm Owner Saraman]";
  4448. mes "Alright, now bring";
  4449. mes "this to the camels over";
  4450. mes "there. Only my Silk Sand";
  4451. mes "Camel will know to eat it,";
  4452. mes "so she'll come after you.";
  4453. next;
  4454. mes "[Camel Farm Owner Saraman]";
  4455. mes "Once she nibbles this";
  4456. mes "appetite stimulant, she'll";
  4457. mes "eat her feed like crazy.";
  4458. mes "Then the dung will flow";
  4459. mes "like a faucet. Come on,";
  4460. mes "why don't you give it a try?";
  4461. next;
  4462. mes "[Camel Farm Owner Saraman]";
  4463. mes "Oh, right. You should";
  4464. mes "be able to get 5 lumps";
  4465. mes "of camel dung with those";
  4466. mes "ingredients. That's a good";
  4467. mes "amount to collect since that's";
  4468. mes "what Ms. Ivory usually orders.";
  4469. delitem 528,5; //Monster's_Feed
  4470. delitem 503,1; //Yellow_Potion
  4471. delitem 619,1; //Unripe_Apple
  4472. delitem 713,1; //Empty_Bottle
  4473. set rachel_camel,9;
  4474. close;
  4475. }
  4476. else {
  4477. mes "[Camel Farm Owner Saraman]";
  4478. mes "Well, we can't forcefeed";
  4479. mes "her, but we can get her to";
  4480. mes "munch a bit on some appetite";
  4481. mes "stimulant. I usually use that";
  4482. mes "if she's sick, but if you say";
  4483. mes "that this is an emergency...";
  4484. next;
  4485. mes "[Camel Farm Owner Saraman]";
  4486. mes "Alright, I guess we";
  4487. mes "can try it. But I want you";
  4488. mes "to bring me the ingredients.";
  4489. mes "Get me... Let's see now...";
  4490. next;
  4491. mes "[Camel Farm Owner Saraman]";
  4492. mes "^4D4DFF1 Unripe Apple^000000,";
  4493. mes "^4D4DFF5 Monster's Feed^000000,";
  4494. mes "^4D4DFF1 Empty Bottle^000000, and";
  4495. mes "^4D4DFF1 Yellow Potion^000000.";
  4496. close;
  4497. }
  4498. }
  4499. else if (rachel_camel == 9) {
  4500. mes "[Camel Farm Owner Saraman]";
  4501. mes "Once she nibbles this";
  4502. mes "appetite stimulant, she'll";
  4503. mes "eat her feed like crazy.";
  4504. mes "Then the dung will flow";
  4505. mes "like a faucet. Come on,";
  4506. mes "why don't you give it a try?";
  4507. next;
  4508. mes "[Camel Farm Owner Saraman]";
  4509. mes "Oh, right. You should";
  4510. mes "be able to get 5 lumps";
  4511. mes "of camel dung with those";
  4512. mes "ingredients. That's a good";
  4513. mes "amount to collect since that's";
  4514. mes "what Ms. Ivory usually orders.";
  4515. close;
  4516. }
  4517. else if (rachel_camel == 10) {
  4518. mes "["+strcharinfo(0)+"]";
  4519. mes "Mr. Saraman, none";
  4520. mes "of the camels will eat";
  4521. mes "this appetite stimulant...";
  4522. mes "Am I doing something wrong?";
  4523. next;
  4524. mes "[Camel Farm Owner Saraman]";
  4525. mes "Oh, yes, well...";
  4526. mes "One of my workers";
  4527. mes "just came by, and told me";
  4528. mes "that my Silk Sand Camel";
  4529. mes "disappeared somewhere...";
  4530. mes "This is terrible news!";
  4531. next;
  4532. mes "[Camel Farm Owner Saraman]";
  4533. mes "My precious Silk Sand";
  4534. mes "Camel... It's my biggest";
  4535. mes "business investment! I'm";
  4536. mes "ruined without it! Please...";
  4537. mes "I'll reward you if you can";
  4538. mes "find my camel for me!";
  4539. next;
  4540. mes "[Camel Farm Owner Saraman]";
  4541. mes "Damn it! My stupid worker";
  4542. mes "forgot to tie her up, so";
  4543. mes "she ended up running away!";
  4544. mes "Ugh! Please help me find her!";
  4545. mes "Without her, you won't be able";
  4546. mes "to get your special camel dung.";
  4547. next;
  4548. mes "[Camel Farm Owner Saraman]";
  4549. mes "Wait, don't panic...";
  4550. mes "It'll all be alright.";
  4551. mes "This camel moves very slowly";
  4552. mes "so she shouldn't be far from";
  4553. mes "here. Please find my camel";
  4554. mes "Soony as soon as you can!";
  4555. set rachel_camel,11;
  4556. close;
  4557. }
  4558. else if (rachel_camel == 11) {
  4559. mes "[Camel Farm Owner Saraman]";
  4560. mes "Soony! Soony...!";
  4561. mes "Wh-where are you?!";
  4562. next;
  4563. mes "[Camel Farm Owner Saraman]";
  4564. mes "Please, help me find";
  4565. mes "my Soony, my Silk Sand";
  4566. mes "Camel. You won't be able to";
  4567. mes "make your soap without her!";
  4568. mes "And my business is really";
  4569. mes "dependent on my Soony!";
  4570. close;
  4571. }
  4572. else if (rachel_camel == 12) {
  4573. mes "["+strcharinfo(0)+"]";
  4574. mes "Well... I found the";
  4575. mes "camel. Now I need to get";
  4576. mes "all the soap ingredients.";
  4577. mes "The sooner I do that, the";
  4578. mes "sooner I can help Curdie.";
  4579. close;
  4580. }
  4581. else if (rachel_camel <= 16) {
  4582. mes "^3355FFYou already found the";
  4583. mes "camel, so you need to collect";
  4584. mes "the soap ingredients if you";
  4585. mes "want to free Curdie.^000000";
  4586. close;
  4587. }
  4588. else if (rachel_camel == 17) {
  4589. mes "[Camel Farm Owner Saraman]";
  4590. mes "Oh, it's you!";
  4591. mes "Did you find my";
  4592. mes "Soony? Where is she?";
  4593. mes "What happened to her?";
  4594. mes "Oh God, I don't know what";
  4595. mes "I'll do without that camel!";
  4596. next;
  4597. mes "["+strcharinfo(0)+"]";
  4598. mes "Don't worry, Mr. Saraman,";
  4599. mes "I found Soony at the outskirts";
  4600. mes "of town. She hurt her leg so";
  4601. mes "I think it'd be a good idea if";
  4602. mes "you sent some people to";
  4603. mes "help bring her back.";
  4604. next;
  4605. mes "[Camel Farm Owner Saraman]";
  4606. mes "Thank god! Thank you, thank you so much!";
  4607. mes "I'll send my workers over there immediately.";
  4608. next;
  4609. mes "[Camel Farm Owner Saraman]";
  4610. mes "Thank goodness, you have";
  4611. mes "no idea how valuable that";
  4612. mes "camel is! I'll send some of";
  4613. mes "my men to bring her home";
  4614. mes "immediately! Thank you,";
  4615. mes "you just saved my business!";
  4616. next;
  4617. mes "[Camel Farm Owner Saraman]";
  4618. mes "Here, I want you to";
  4619. mes "have this. Consider it";
  4620. mes "a little thank you gift for";
  4621. mes "what you've done for me.";
  4622. mes "Good luck with getting";
  4623. mes "that soap you want made.";
  4624. getitem 617,1; //Old_Violet_Box
  4625. set rachel_camel,18;
  4626. close;
  4627. }
  4628. else if (rachel_camel == 18) {
  4629. mes "["+strcharinfo(0)+"]";
  4630. mes "Let's see...";
  4631. mes "Shouldn't I be going";
  4632. mes "to see Ms. Ivory now?";
  4633. close;
  4634. }
  4635. else if (rachel_camel <= 23) {
  4636. mes "[Camel Farm Owner Saraman]";
  4637. mes "Thank you for finding my";
  4638. mes "precious Silk Sand Camel";
  4639. mes "Soony. Come again sometime,";
  4640. mes "and maybe we can special my";
  4641. mes "special camel yogurt together.";
  4642. close;
  4643. }
  4644. else {
  4645. mes "[Saraman]";
  4646. mes "Zzz... Zzz~";
  4647. mes "Zzz...";
  4648. next;
  4649. mes "^3355FFWatching this man";
  4650. mes "snore also makes you";
  4651. mes "want to take a snooze.^000000";
  4652. close;
  4653. }
  4654. }
  4655. veins,78,226,5 script Camel#camelcc1::VeinsCamel 938,{
  4656. if (rachel_camel == 9) {
  4657. mes "^3355FFThe camel sniffed the";
  4658. mes "appetite stimulant, but";
  4659. mes "brusquely turned its";
  4660. mes "nose away from it.^000000";
  4661. set rachel_camel,10;
  4662. close;
  4663. }
  4664. else if (rachel_camel == 10) {
  4665. mes "^3355FFThe camel sniffed the";
  4666. mes "appetite stimulant, but";
  4667. mes "brusquely turned its";
  4668. mes "nose away from it.";
  4669. mes "This probably isn't the";
  4670. mes "camel you're looking for.^000000";
  4671. set rachel_camel,10;
  4672. close;
  4673. }
  4674. else {
  4675. mes "[Camel]";
  4676. mes "*Neigh* ~";
  4677. mes "*Chew Chew*";
  4678. close;
  4679. }
  4680. }
  4681. veins,72,227,3 duplicate(VeinsCamel) Camel#camelcc3 938
  4682. veins,81,222,1 duplicate(VeinsCamel) Camel#camelcc4 938
  4683. veins,77,219,5 duplicate(VeinsCamel) Camel#camelcc5 938
  4684. veins,73,215,8 duplicate(VeinsCamel) Camel#camelcc6 938
  4685. veins,68,215,5 duplicate(VeinsCamel) Camel#camelcc7 938
  4686. ve_fild07,235,42,3 script Silk Sand Camel 938,{
  4687. if (rachel_camel == 11) {
  4688. mes "^3355FFThis camel's leg is";
  4689. mes "wounded. Although it";
  4690. mes "seems hurt, its nostrils";
  4691. mes "flared as soon as it saw";
  4692. mes "the camel appetite stimulant,";
  4693. mes "and it smacked its lips.^000000";
  4694. next;
  4695. mes "[Camel]";
  4696. mes "^333333*Chew Chew~*^000000";
  4697. mes "^333333*Smacks lips*^000000";
  4698. next;
  4699. mes "^3355FFThe camel started nibbling";
  4700. mes "the stimulant, but its eating";
  4701. mes "became quicker as it ate";
  4702. mes "more of the feed until it";
  4703. mes "was completely consumed.^000000";
  4704. next;
  4705. mes "["+strcharinfo(0)+"]";
  4706. mes "This must be the";
  4707. mes "Silk Sand Camel...";
  4708. mes "I guess all I need to";
  4709. mes "do is collect some of";
  4710. mes "that precious camel dung.";
  4711. set rachel_camel,12;
  4712. close;
  4713. }
  4714. else if (rachel_camel >= 12 && rachel_camel <= 16) {
  4715. if (countitem(519) > 1 && countitem(511) > 19 && countitem(909) > 9 && countitem(713) > 0) {
  4716. mes "^3355FFThe camel can smell";
  4717. mes "that you have food for";
  4718. mes "it, and started salivating.";
  4719. mes "You may as well just feed it.^000000";
  4720. next;
  4721. mes "[Silk Sand Camel]";
  4722. mes "^333333*Chew Chew~*^000000";
  4723. mes "^333333*Smacks lips*^000000";
  4724. next;
  4725. switch(rand(1,7)) {
  4726. case 1:
  4727. if (rachel_camel == 12) {
  4728. mes "^3355FFThe camel ate everything,";
  4729. mes "but it doesn't seem like";
  4730. mes "it'll go through any bowel";
  4731. mes "movements anytime soon.^000000";
  4732. }
  4733. else {
  4734. mes "^3355FFThe camel grimaced";
  4735. mes "as if it were suffering";
  4736. mes "from a stomachache...";
  4737. mes "And... Out pops 2 Sweet";
  4738. mes "Potatoes. They're probably";
  4739. mes "safe to eat... Hopefully.^000000";
  4740. getitem 516,2; //Sweet_Potato
  4741. }
  4742. delitem 519,2; //Milk
  4743. delitem 511,20; //Green_Herb
  4744. delitem 909,10; //Jellopy
  4745. close;
  4746. case 2:
  4747. mes "^3355FFThe camel grimaced";
  4748. mes "as if it were suffering";
  4749. mes "from a stomachache...";
  4750. mes "And... Out pops a Sweet";
  4751. mes "Potato. It's probably";
  4752. mes "safe to eat... Maybe.^000000";
  4753. delitem 519,2; //Milk
  4754. delitem 511,20; //Green_Herb
  4755. delitem 909,10; //Jellopy
  4756. getitem 516,1; //Sweet_Potato
  4757. close;
  4758. case 3:
  4759. mes "^3355FFThe camel grimaced";
  4760. mes "as if it were suffering";
  4761. mes "from a stomachache...";
  4762. if (rachel_camel == 12) {
  4763. mes "And... Out pops 3 Sweet";
  4764. mes "Potatoes. They're probably";
  4765. }
  4766. else {
  4767. mes "And... Out pops a Sweet";
  4768. mes "Potato. It's probably";
  4769. }
  4770. mes "safe to eat... Hopefully.^000000";
  4771. delitem 519,2; //Milk
  4772. delitem 511,20; //Green_Herb
  4773. delitem 909,10; //Jellopy
  4774. if (rachel_camel == 12) {
  4775. getitem 516,3; //Sweet_Potato
  4776. }
  4777. else {
  4778. getitem 516,1; //Sweet_Potato
  4779. }
  4780. close;
  4781. case 4:
  4782. mes "[Silk Sand Camel]";
  4783. mes "^333333*Chew Chew~*^000000";
  4784. mes "^333333*Smacks lips*^000000";
  4785. next;
  4786. mes "^3355FFThe camel grimaced";
  4787. mes "as if it were suffering";
  4788. mes "from a stomachache...";
  4789. if (rachel_camel == 12) {
  4790. mes "And... Out pops 7 Sweet";
  4791. mes "Potatoes. They're probably";
  4792. }
  4793. else {
  4794. mes "And... Out pops a Sweet";
  4795. mes "Potato. It's probably";
  4796. }
  4797. mes "safe to eat... Hopefully.^000000";
  4798. delitem 519,2; //Milk
  4799. delitem 511,20; //Green_Herb
  4800. delitem 909,10; //Jellopy
  4801. if (rachel_camel == 12) {
  4802. getitem 516,7; //Sweet_Potato
  4803. }
  4804. else {
  4805. getitem 516,1; //Sweet_Potato
  4806. }
  4807. close;
  4808. case 5:
  4809. mes "^3355FFThe camel grimaced";
  4810. mes "as if it were suffering";
  4811. mes "from a stomachache...";
  4812. mes "Huzzah! You got a lump";
  4813. mes "of steaming camel dung!";
  4814. mes "This is cause for celebration!^000000";
  4815. next;
  4816. mes "["+strcharinfo(0)+"]";
  4817. if (rachel_camel == 12) {
  4818. mes "Now all I need is";
  4819. mes "just 4 more lumps";
  4820. mes "of this nasty old dung.";
  4821. }
  4822. else if (rachel_camel == 13) {
  4823. mes "Awesome! I got";
  4824. mes "2 glorious camel dung";
  4825. mes "lumps! Only 3 more to go!";
  4826. }
  4827. else if (rachel_camel == 14) {
  4828. mes "Yes! Now I have";
  4829. mes "3 camel dung lumps.";
  4830. mes "Just 2 more... I'm more";
  4831. mes "than halfway done!";
  4832. }
  4833. else if (rachel_camel == 15) {
  4834. mes "4 lumps of camel dung...";
  4835. mes "Heh heh! This is going";
  4836. mes "better than I thought!";
  4837. mes "Only 1 more to go!";
  4838. }
  4839. else if (rachel_camel == 16) {
  4840. mes "In my hands...";
  4841. mes "I am holding";
  4842. mes "5 lumps of camel dung.";
  4843. mes "This is my finest moment.";
  4844. next;
  4845. mes "["+strcharinfo(0)+"]";
  4846. mes "Never, in all my years";
  4847. mes "of adventuring, saving the";
  4848. mes "oppressed, protecting the";
  4849. mes "innocent, did I dare dream";
  4850. mes "that I'd accomplish such";
  4851. mes "a magnificent feat.";
  4852. next;
  4853. mes "["+strcharinfo(0)+"]";
  4854. mes "I am so happy--nay--";
  4855. mes "^4D4DFFproud^000000 that my strength, my";
  4856. mes "valor, and my determination";
  4857. mes "was up to this task. May the";
  4858. mes "annals of history never forget";
  4859. mes "this day! Long live "+strcharinfo(0)+"!";
  4860. next;
  4861. mes "^3355FFIt's time for you to";
  4862. mes "return to Mr. Saraman.^000000";
  4863. }
  4864. delitem 519,2; //Milk
  4865. delitem 511,20; //Green_Herb
  4866. delitem 909,10; //Jellopy
  4867. delitem 713,1; //Empty_Bottle
  4868. set rachel_camel,rachel_camel+1;
  4869. close;
  4870. case 6:
  4871. mes "[Silk Sand Camel]";
  4872. mes "^333333*Chew Chew~*^000000";
  4873. mes "^333333*Smacks lips*^000000";
  4874. next;
  4875. mes "^3355FFThe camel grimaced";
  4876. mes "as if it were suffering";
  4877. mes "from a stomachache...";
  4878. mes "And... Out pops a Sweet";
  4879. mes "Potato. It's probably";
  4880. mes "safe to eat... Maybe.^000000";
  4881. delitem 519,2; //Milk
  4882. delitem 511,20; //Green_Herb
  4883. delitem 909,10; //Jellopy
  4884. getitem 516,1; //Sweet_Potato
  4885. close;
  4886. case 7:
  4887. mes "[Silk Sand Camel]";
  4888. mes "^333333*Chew Chew~*^000000";
  4889. mes "^333333*Smacks lips*^000000";
  4890. next;
  4891. mes "^3355FFThe camel grimaced";
  4892. mes "as if it were suffering";
  4893. mes "from a stomachache...";
  4894. mes "And... Out pops a Sweet";
  4895. mes "Potato. It's probably";
  4896. mes "safe to eat... Maybe.^000000";
  4897. delitem 519,2; //Milk
  4898. delitem 511,20; //Green_Herb
  4899. delitem 909,10; //Jellopy
  4900. getitem 516,1; //Sweet_Potato
  4901. close;
  4902. }
  4903. }
  4904. else {
  4905. mes "["+strcharinfo(0)+"]";
  4906. mes "I need to feed this camel if";
  4907. mes "I ever want to get any dung";
  4908. mes "from it. Let's see, Mr. Saraman";
  4909. mes "mentioned that the items I got";
  4910. mes "for Ms. Ivory were actually";
  4911. mes "camel feed. I need to have...";
  4912. next;
  4913. mes "["+strcharinfo(0)+"]";
  4914. mes "^4D4DFF10 Milk^000000,";
  4915. mes "^4D4DFF100 Green Herbs^000000,";
  4916. mes "^4D4DFF50 Jellopies^000000, and";
  4917. mes "^4D4DFF5 Empty Bottles^000000.";
  4918. next;
  4919. mes "[Silk Sand Camel]";
  4920. mes "*Chew Chew*";
  4921. mes "*Neigh Neigh*~";
  4922. close;
  4923. }
  4924. }
  4925. else if (rachel_camel == 17) {
  4926. mes "["+strcharinfo(0)+"]";
  4927. mes "I managed to get the soap";
  4928. mes "ingredients: 5 of those";
  4929. mes "camel dung lumps. I should";
  4930. mes "head back to Mr. Saraman to";
  4931. mes "tell him where his camel is,";
  4932. mes "and then go to Ms. Ivory.";
  4933. close;
  4934. }
  4935. else {
  4936. mes "[Silk Sand Camel]";
  4937. mes "*Neigh Neigh*~";
  4938. next;
  4939. mes "^3355FFSilly camel.^000000";
  4940. close;
  4941. }
  4942. }
  4943. veins,221,120,5 script Young Town Native 943,{
  4944. if (rachel_camel == 3) {
  4945. mes "[Native Young Man]";
  4946. mes "My name is Toby.";
  4947. mes "I was born and raised here,";
  4948. mes "and no one knows more about";
  4949. mes "this town than me. Feel free";
  4950. mes "to ask if you need to find";
  4951. mes "your way around here.";
  4952. next;
  4953. mes "["+strcharinfo(0)+"]";
  4954. mes "Excuse me, but do";
  4955. mes "you know where I can";
  4956. mes "find a locksmith?";
  4957. next;
  4958. mes "[Toby]";
  4959. mes "Of course, I do!";
  4960. mes "Mr. Lockenlock is a famous";
  4961. mes "locksmith, and he makes almost";
  4962. mes "all the keys and locks in Veins";
  4963. mes "and even in Rachel.";
  4964. next;
  4965. mes "["+strcharinfo(0)+"]";
  4966. mes "Mr. Lockenlock, eh?";
  4967. mes "So where can I find him?";
  4968. next;
  4969. mes "[Toby]";
  4970. mes "Oh, he's always sitting";
  4971. mes "somewhere in the market";
  4972. mes "street. He drinks a lot,";
  4973. mes "though, so he doesn't really";
  4974. mes "work when he's hung over.";
  4975. next;
  4976. mes "[Toby]";
  4977. mes "Ah, but you know what'll";
  4978. mes "shock him back to sobriety?";
  4979. mes "A Yellow Potion! It never";
  4980. mes "fails with that guy!";
  4981. next;
  4982. mes "["+strcharinfo(0)+"]";
  4983. mes "I see.";
  4984. mes "Thanks for";
  4985. mes "the advice.";
  4986. next;
  4987. mes "[Toby]";
  4988. mes "You're so very";
  4989. mes "welcome! It's just...";
  4990. mes "After all these years...";
  4991. mes "I'm finally useful to someone!";
  4992. next;
  4993. mes "["+strcharinfo(0)+"]";
  4994. mes "...Ha...?";
  4995. next;
  4996. mes "^3355FFFind Mr. Lockenlock";
  4997. mes "in the market street, and";
  4998. mes "bring him a Yellow Potion.^000000";
  4999. set rachel_camel,4;
  5000. close;
  5001. }
  5002. else if (rachel_camel == 4) {
  5003. mes "[Toby]";
  5004. mes "After all these years...";
  5005. mes "I'm finally useful to someone!";
  5006. next;
  5007. mes "["+strcharinfo(0)+"]";
  5008. mes "...Ha...?";
  5009. next;
  5010. mes "^3355FFFind Mr. Lockenlock";
  5011. mes "in the market street, and";
  5012. mes "bring him a Yellow Potion.^000000";
  5013. close;
  5014. }
  5015. else {
  5016. mes "[Native Young Man]";
  5017. mes "My name is Toby.";
  5018. mes "I was born and raised here,";
  5019. mes "and no one knows more about";
  5020. mes "this town than me. Feel free";
  5021. mes "to ask if you need to find";
  5022. mes "your way around here.";
  5023. next;
  5024. mes "["+strcharinfo(0)+"]";
  5025. mes "No, thanks.";
  5026. next;
  5027. mes "[Native Young Man]";
  5028. mes "You don't...";
  5029. mes "^333333*Sob*^000000 You don't";
  5030. mes "need me at all?";
  5031. close;
  5032. }
  5033. }
  5034. // Thor Volcano Base Quest
  5035. //============================================================
  5036. ra_temin,87,133,1 script Rachel Guard#vol1 934,5,2,{
  5037. if (aru_vol == 2) {
  5038. mes "[Guard Karlum]";
  5039. mes "High Priest Vildt isn't";
  5040. mes "here right now. Please";
  5041. mes "come back later if you";
  5042. mes "wish to see him.";
  5043. next;
  5044. select("Think of a Distraction");
  5045. mes "["+strcharinfo(0)+"]";
  5046. mes "This guy's not going to";
  5047. mes "let me pass. Let's see...";
  5048. mes "Is there some way I could";
  5049. mes "get him to leave? What, or";
  5050. mes "even ^FF0000who^000000, could distract him?";
  5051. next;
  5052. mes "["+strcharinfo(0)+"]";
  5053. mes "Wait a second...";
  5054. mes "Of course! I should";
  5055. mes "talk to him about...";
  5056. next;
  5057. input .@input$;
  5058. mes "["+strcharinfo(0)+"]";
  5059. mes "Wait a second...";
  5060. mes "Of course! I should";
  5061. mes "talk to him about ^FF0000"+.@input$+"^000000 !!";
  5062. next;
  5063. if (.@input$ != "Lamir") {
  5064. mes "["+strcharinfo(0)+"]";
  5065. mes "What the...?";
  5066. mes "Where did I think of that?";
  5067. mes "That doesn't make any sense...";
  5068. close;
  5069. }
  5070. mes "["+strcharinfo(0)+"]";
  5071. mes "That's right! I talked";
  5072. mes "to Lamir a while ago.";
  5073. mes "If she's right, then this";
  5074. mes "guy must be Karlum, the guy";
  5075. mes "who's totally in love with her.";
  5076. mes "Hmm... I know what I'll say...";
  5077. next;
  5078. mes "["+strcharinfo(0)+"]";
  5079. mes "^333333*Ahem*^000000 Excuse me,";
  5080. mes "but are you Karlum?";
  5081. mes "I've got a message for you.";
  5082. next;
  5083. mes "[Guard Karlum]";
  5084. mes "A message for me?";
  5085. mes "Is that why you're still";
  5086. mes "loitering around? Well,";
  5087. mes "spit it out. I can't waste";
  5088. mes "too much time on the job...";
  5089. next;
  5090. mes "["+strcharinfo(0)+"]";
  5091. mes "You know ^3131FFLamir^000000, right?";
  5092. next;
  5093. emotion e_omg;
  5094. mes "[Guard Karlum]";
  5095. mes "Lamir? Oh... My.";
  5096. mes "Oh no! Did something";
  5097. mes "bad happen to her?";
  5098. mes "Quick, tell me!";
  5099. next;
  5100. mes "["+strcharinfo(0)+"]";
  5101. mes "No, nothing like that.";
  5102. mes "She just told me that she";
  5103. mes "had something important to";
  5104. mes "tell you, and that you had to";
  5105. mes "come see her when you're free.";
  5106. next;
  5107. mes "["+strcharinfo(0)+"]";
  5108. mes "I tried to ask her";
  5109. mes "more, but she just kept";
  5110. mes "blushing and turning away.";
  5111. mes "Is there something going";
  5112. mes "on between you too?";
  5113. next;
  5114. mes "[Guard Karlum]";
  5115. mes "...I don't believe it.";
  5116. mes "Finally. After all these";
  5117. mes "years. She feels the same";
  5118. mes "way I feel for her! My midnight";
  5119. mes "serenade a few days ago";
  5120. mes "must've touched her heart.";
  5121. next;
  5122. mes "[Guard Karlum]";
  5123. mes "Screw this stupid job!";
  5124. mes "I've made my choice, and";
  5125. mes "I choose true love! I can't";
  5126. mes "keep Lamir waiting any longer!";
  5127. set aru_vol,3;
  5128. donpcevent "vol_time::OnEnable";
  5129. close2;
  5130. disablenpc "Rachel Guard#vol1";
  5131. end;
  5132. }
  5133. else if ((aru_vol> 2) && (aru_vol < 5)) {
  5134. mes "[Guard Karlum]";
  5135. mes "Hey! Lamir told me that";
  5136. mes "she didn't want to see";
  5137. mes "me at all! What's your";
  5138. mes "game, huh? Do you think";
  5139. mes "I'm that easy to trick?";
  5140. next;
  5141. mes "["+strcharinfo(0)+"]";
  5142. mes "What? Is that what";
  5143. mes "happened? I could've";
  5144. mes "sworn th--Oooh. I get it now.";
  5145. mes "She must be playing hard to";
  5146. mes "get. That must mean that";
  5147. mes "she's reeeeally into you.";
  5148. next;
  5149. mes "[Guard Karlum]";
  5150. mes "Ah! That makes perfect";
  5151. mes "sense! No wonder she treated";
  5152. mes "me that way! Hahaha! I should";
  5153. mes "have figured it out sooner!";
  5154. mes "Well then, I should go see";
  5155. mes "her and play hard to get too!";
  5156. donpcevent "vol_time::OnEnable";
  5157. close2;
  5158. disablenpc "Rachel Guard#vol1";
  5159. end;
  5160. }
  5161. else {
  5162. mes "[Guard Karlum]";
  5163. mes "High Priest Vildt isn't";
  5164. mes "here right now. Please";
  5165. mes "come back later if you";
  5166. mes "wish to see him.";
  5167. close;
  5168. }
  5169. OnInit:
  5170. enablenpc "Rachel Guard#vol1";
  5171. end;
  5172. OnTouch:
  5173. //OnTouch2:
  5174. warp "ra_temin",85,137;
  5175. close;
  5176. }
  5177. ra_temin,82,133,7 script Rachel Guard#vol2 934,5,2,{
  5178. mes "[Guard Krodger]";
  5179. mes "High Priest Vildt isn't";
  5180. mes "here right now. Please";
  5181. mes "come back later if you";
  5182. mes "wish to see him.";
  5183. close;
  5184. OnInit:
  5185. enablenpc "Rachel Guard#vol2";
  5186. end;
  5187. OnTouch:
  5188. //OnTouch2:
  5189. warp "ra_temin",85,137;
  5190. close;
  5191. }
  5192. ra_temin,115,140,1 script Flower Vase#vol 111,{
  5193. if ((aru_vol> 2) && (aru_vol < 5)) {
  5194. mes "^3355FFYou find a giant";
  5195. mes "vase full of beautiful";
  5196. mes "flowers that look freshly";
  5197. mes "picked from a garden.^000000";
  5198. next;
  5199. if (select("Destroy Vase:Don't Destroy Vase") == 1) {
  5200. mes "^3355FFYou grasp the flower";
  5201. mes "vase with both hands, and";
  5202. mes "then hurl it to the ground.^000000";
  5203. next;
  5204. mes "^3355FF*Crash!*^000000";
  5205. next;
  5206. mes "[Guard Krodger]";
  5207. mes "Who's there?!";
  5208. disablenpc "Rachel Guard#vol2";
  5209. enablenpc "Rachel Guard#vol2_1";
  5210. donpcevent "vol_time2::OnEnable";
  5211. set aru_vol,4;
  5212. disablenpc "Flower Vase#vol";
  5213. close;
  5214. }
  5215. mes "["+strcharinfo(0)+"]";
  5216. mes "A lot of loving care";
  5217. mes "was put into arranging";
  5218. mes "these flowers.. I can't";
  5219. mes "bear to disturb their beauty.";
  5220. next;
  5221. mes "^3355FFAnd so you just";
  5222. mes "stood there, looking";
  5223. mes "a bit pitiable, but not";
  5224. mes "really all that pathetic.^000000";
  5225. close;
  5226. }
  5227. mes "^3355FFYou find a giant";
  5228. mes "vase full of beautiful";
  5229. mes "flowers that look freshly";
  5230. mes "picked from a garden.^000000";
  5231. close;
  5232. }
  5233. ra_temin,85,131,0 script path_vol1 -1,5,0,{
  5234. OnTouch:
  5235. //OnTouch2:
  5236. if ((aru_vol != 3) && (aru_vol != 4)) {
  5237. warp "ra_temin",85,137;
  5238. }
  5239. end;
  5240. }
  5241. ra_temin,82,131,0 script path_vol1#2 -1,5,0,{
  5242. OnTouch:
  5243. //OnTouch2:
  5244. if (aru_vol != 4) {
  5245. warp "ra_temin",85,137;
  5246. }
  5247. end;
  5248. }
  5249. ra_temin,82,127,0 script path_vol1#3 -1,5,1,{
  5250. OnTouch:
  5251. //OnTouch2:
  5252. if (aru_vol == 5) {
  5253. warp "ra_temin",84,124;
  5254. }
  5255. end;
  5256. }
  5257. ra_temin,40,124,3 script Female Follower#vol 920,{
  5258. mes "[Lamir]";
  5259. mes "^333333*Sigh*^000000 High Priest Vildt";
  5260. mes "left over so much food after";
  5261. mes "eating. Didn't he learn to";
  5262. mes "finish all of his food?";
  5263. next;
  5264. mes "[Lamir]";
  5265. mes "You know, my mother used";
  5266. mes "to threaten that she'd force";
  5267. mes "me to marry Karlum if I didn't";
  5268. mes "finish all my food when I was";
  5269. mes "a kid. I learned never to";
  5270. mes "leave any leftovers that way~";
  5271. next;
  5272. select("Who's Karlum?");
  5273. mes "[Lamir]";
  5274. mes "Karlum? Oh, he's been";
  5275. mes "chasing me ever since we";
  5276. mes "were kids, declaring his";
  5277. mes "love and all that. Even";
  5278. mes "after we grew up, he's still";
  5279. mes "stubborn about that point.";
  5280. next;
  5281. mes "[Lamir]";
  5282. mes "Ugh! Even today, he";
  5283. mes "still gets on my nerves!";
  5284. mes "I mean, it's great that he's";
  5285. mes "a guard at High Priest Vildt's";
  5286. mes "office, but come on! Why can't";
  5287. mes "he bother another girl?";
  5288. if (aru_vol == 1) {
  5289. set aru_vol,2;
  5290. }
  5291. close;
  5292. }
  5293. ra_temin,42,124,3 script Rachel Guard#vol1_1 934,{
  5294. end;
  5295. OnInit:
  5296. disablenpc "Rachel Guard#vol1_1";
  5297. end;
  5298. }
  5299. ra_temin,5,5,3 script vol_time 844,{
  5300. OnInit:
  5301. stopnpctimer;
  5302. end;
  5303. OnEnable:
  5304. initnpctimer;
  5305. enablenpc "Rachel Guard#vol1_1";
  5306. end;
  5307. OnTimer10000:
  5308. mapannounce "ra_temin","Guard Karlum: Lamir! It's Karlum! Your love is here!",bc_map,"0xFFCE00";
  5309. end;
  5310. OnTimer15000:
  5311. mapannounce "ra_temin","Lamir: Karlum? What are you doing here?",bc_map,"0xFFCE00";
  5312. end;
  5313. OnTimer20000:
  5314. mapannounce "ra_temin","Guard Karlum: Lamir, you can stop pretending now. I've come to realize that your coldness masks your love~",bc_map,"0xFFCE00";
  5315. end;
  5316. OnTimer30000:
  5317. mapannounce "ra_temin","Lamir: What are you talking about? Sorry, Karlum, but I don't have any special feelings for you.",bc_map,"0xFFCE00";
  5318. end;
  5319. OnTimer35000:
  5320. mapannounce "ra_temin","Guard Karlum: I know, it's embarrassing to confess your true feelings~",bc_map,"0xFFCE00";
  5321. end;
  5322. OnTimer40000:
  5323. mapannounce "ra_temin","Guard Karlum: However, I can't deny that your shyness is breaking my heart.",bc_map,"0xFFCE00";
  5324. end;
  5325. OnTimer45000:
  5326. mapannounce "ra_temin","Lamir: Karlum, when will you realize that I haven't, and won't ever fall in love with you?",bc_map,"0xFFCE00";
  5327. end;
  5328. OnTimer50000:
  5329. mapannounce "ra_temin","Guard Karlum: .............",bc_map,"0xFFCE00";
  5330. end;
  5331. OnTimer55000:
  5332. mapannounce "ra_temin","Guard Karlum: Wha--? But I thought...? Huh, sorry. I should get going...",bc_map,"0xFFCE00";
  5333. stopnpctimer;
  5334. disablenpc "Rachel Guard#vol1_1";
  5335. enablenpc "Rachel Guard#vol1";
  5336. end;
  5337. }
  5338. ra_temin,113,140,1 script Rachel Guard#vol2_1 934,{
  5339. mes "[Guard Krodger]";
  5340. mes "What's with this vase?";
  5341. mes "They always send me out";
  5342. mes "here to clean up this mess!";
  5343. mes "I mean, it happens so often,";
  5344. mes "I don't think it's accidental.";
  5345. mes "You think it's vandals?";
  5346. close;
  5347. OnInit:
  5348. disablenpc "Rachel Guard#vol2_1";
  5349. end;
  5350. }
  5351. ra_temin,5,5,1 script vol_time2 844,{
  5352. OnInit:
  5353. stopnpctimer;
  5354. end;
  5355. OnEnable:
  5356. initnpctimer;
  5357. end;
  5358. OnTimer30000:
  5359. mapannounce "ra_temin","Guard Krodger: Phew~, now I'm done cleaning up this mess.",bc_map,"0xFFCE00";
  5360. stopnpctimer;
  5361. disablenpc "Rachel Guard#vol2_1";
  5362. enablenpc "Rachel Guard#vol2";
  5363. enablenpc "Flower Vase#vol";
  5364. end;
  5365. }
  5366. ra_temin,87,118,3 script Drawer#vol1::VeinsDrawer 111,{
  5367. mes "^3355FFThere are some neatly";
  5368. mes "printed and organized";
  5369. mes "documents inside";
  5370. mes "these drawers.^000000";
  5371. close;
  5372. }
  5373. ra_temin,83,118,3 duplicate(VeinsDrawer) Drawer#vol2 111
  5374. ra_temin,85,118,3 script Drawer#vol3 111,{
  5375. if ((MaxWeight-Weight) < 2000 || checkweight(1201,1) == 0) {
  5376. mes "^3355FFWait a second!";
  5377. mes "Right now, you're carrying";
  5378. mes "too many things with you.";
  5379. mes "Please come back after";
  5380. mes "using the Kafra Service";
  5381. mes "to store some of your items.^000000";
  5382. close;
  5383. }
  5384. if (aru_vol == 4) {
  5385. mes "^3355FFYou find a thick pile";
  5386. mes "of reports submitted";
  5387. mes "to the high priest";
  5388. mes "inside this drawer.^000000";
  5389. next;
  5390. if (select("Check the Reports:Cancel") == 1) {
  5391. mes "["+strcharinfo(0)+"]";
  5392. mes "Well, it might not to";
  5393. mes "the most moral thing,";
  5394. mes "but I get the feeling";
  5395. mes "that I should at least";
  5396. mes "check some of these out.";
  5397. next;
  5398. mes "^3355FFYou started shuffling";
  5399. mes "through the documents,";
  5400. mes "glancing at a few that";
  5401. mes "catch your interest.^000000";
  5402. next;
  5403. mes "["+strcharinfo(0)+"]";
  5404. mes "Ooh...";
  5405. mes "This might be";
  5406. mes "what I'm looking for.";
  5407. next;
  5408. mes "^3355FFYou take the thick report";
  5409. mes "labeled ''Veins Geological";
  5410. mes "Research Institute'' on";
  5411. mes "the cover, and then you";
  5412. mes "close the drawer.^000000";
  5413. set aru_vol,5;
  5414. getitem 7342,1; //File01
  5415. close;
  5416. }
  5417. mes "["+strcharinfo(0)+"]";
  5418. mes "Forget it.";
  5419. mes "I didn't get permission";
  5420. mes "to look through these files.";
  5421. close;
  5422. }
  5423. else if (aru_vol == 5) {
  5424. if (countitem(7342) < 1) {
  5425. mes "["+strcharinfo(0)+"]";
  5426. mes "Oh! Here's another";
  5427. mes "copy of that report";
  5428. mes "I wanted! Pretty lucky~";
  5429. getitem 7342,1; //File01
  5430. close;
  5431. }
  5432. mes "^3355FFYou find a thick pile";
  5433. mes "of reports submitted";
  5434. mes "to the high priest";
  5435. mes "inside this drawer.^000000";
  5436. close;
  5437. }
  5438. mes "^3355FFYou find a thick pile";
  5439. mes "of reports submitted";
  5440. mes "to the high priest";
  5441. mes "inside this drawer.^000000";
  5442. close;
  5443. }
  5444. ra_temin,88,117,3 script Goddess Statue#vol1 111,{
  5445. mes "^3355FFIt's a statue of Freya,";
  5446. mes "a goddess revered for her";
  5447. mes "clemency and wisdom.^000000";
  5448. close;
  5449. }
  5450. ra_temin,73,126,1 script Ladder#vol1 111,{
  5451. if (aru_vol == 5) {
  5452. mes "["+strcharinfo(0)+"]";
  5453. mes "Wait, I can use this";
  5454. mes "ladder to sneak out of";
  5455. mes "here! I snuck inside so";
  5456. mes "I'd get caught if I just";
  5457. mes "passed the guards...";
  5458. next;
  5459. if (select("Climb Ladder:Cancel") == 1) {
  5460. mes "^3355FFYou climbed the";
  5461. mes "ladder over the";
  5462. mes "wall and snuck out.^000000";
  5463. close2;
  5464. warp "ra_temin",74,136;
  5465. end;
  5466. }
  5467. mes "^3355FFYou decided not to climb";
  5468. mes "up the ladder for now.^000000";
  5469. close;
  5470. }
  5471. end;
  5472. }
  5473. ve_in,280,223,0 script #volroom -1,2,2,{
  5474. OnTouch:
  5475. //OnTouch2:
  5476. if (aru_vol == 6) {
  5477. mes "^3355FFThis house looks like";
  5478. mes "it's been abandoned for";
  5479. mes "a while: the floor is thickly";
  5480. mes "covered with dust and many";
  5481. mes "pieces of discarded paper.^000000";
  5482. next;
  5483. mes "^3355FFOne particular piece";
  5484. mes "of paper catches your";
  5485. mes "attention. You pick it";
  5486. mes "up and give it a read.^000000";
  5487. next;
  5488. mes "[Paper]";
  5489. mes "''^333333The regularly scheduled";
  5490. mes "geological survey had been";
  5491. mes "postponed for over a week.";
  5492. mes "Please submit your report";
  5493. mes "to us as soon as possible.^000000''";
  5494. next;
  5495. mes "["+strcharinfo(0)+"]";
  5496. mes "Although the sender's";
  5497. mes "name isn't on this letter,";
  5498. mes "I can guess who wrote it. ";
  5499. mes "Speaking of which...";
  5500. mes "Where's the geologist?";
  5501. set aru_vol,7;
  5502. close;
  5503. }
  5504. else if (aru_vol < 6) {
  5505. mes "^3355FFThis house looks like";
  5506. mes "it's been abandoned for";
  5507. mes "a while: the floor is thickly";
  5508. mes "covered with dust and many";
  5509. mes "pieces of discarded paper.^000000";
  5510. close;
  5511. }
  5512. end;
  5513. }
  5514. veins,159,171,3 script Towner#vol 945,{
  5515. mes "[Towner]";
  5516. mes "The small office on the";
  5517. mes "2nd floor of this weapon";
  5518. mes "shop is occupied by a";
  5519. mes "geologist. At least, he's";
  5520. mes "supposed to be one...";
  5521. next;
  5522. mes "[Towner]";
  5523. mes "The guy might be a quack:";
  5524. mes "all he does is drink and";
  5525. mes "flirt with skanky women";
  5526. mes "all day. I thought scholars";
  5527. mes "are supposed to read and study";
  5528. mes "and discover things, you know?";
  5529. close;
  5530. }
  5531. ve_in,233,116,3 script Drunken Man#vol 901,{
  5532. if ((MaxWeight-Weight) < 2000 || checkweight(1201,1) == 0) {
  5533. mes "^3355FFWait a second!";
  5534. mes "Right now, you're carrying";
  5535. mes "too many things with you.";
  5536. mes "Please come back after";
  5537. mes "using the Kafra Service";
  5538. mes "to store some of your items.^000000";
  5539. close;
  5540. }
  5541. if (aru_vol < 7) {
  5542. mes "[Drunken Man]";
  5543. mes "So... ^333333*Urp*^000000";
  5544. mes "So then I said...";
  5545. next;
  5546. mes "[Drunken Man]";
  5547. mes "''^3131FFHey, buddy! A man";
  5548. mes "uses his back to talk,";
  5549. mes "not his fists! You wanna";
  5550. mes "piece of me? Bring it on!^000000''";
  5551. next;
  5552. mes "[Drunken Man]";
  5553. mes "Then he got all";
  5554. mes "scared, and ran away!";
  5555. mes "Hahahaha! Guess I look";
  5556. mes "pretty tough, don't I?";
  5557. next;
  5558. donpcevent "Drunken Lady#1::OnEmote";
  5559. donpcevent "Drunken Lady#2::OnEmote";
  5560. mes "[Ladies]";
  5561. mes "Oh, my God!";
  5562. mes "You're so cool~!";
  5563. next;
  5564. mes "[Drunken Man]";
  5565. mes "Well... Anyone would";
  5566. mes "have done it. I was just";
  5567. mes "being a gentleman.";
  5568. mes "Hahahah, that's right!";
  5569. close;
  5570. }
  5571. else if (aru_vol == 7) {
  5572. mes "[Drunken Man]";
  5573. mes "So... ^333333*Urp*^000000";
  5574. mes "So then I said...";
  5575. next;
  5576. mes "[Drunken Man]";
  5577. mes "''^3131FFHey, buddy! A man";
  5578. mes "uses his back to talk,";
  5579. mes "not his fists! You wanna";
  5580. mes "piece of me? Bring it on!^000000''";
  5581. next;
  5582. mes "[Drunken Man]";
  5583. mes "Then he got all";
  5584. mes "scared, and ran away!";
  5585. mes "Hahahaha! Guess I look";
  5586. mes "pretty tough, don't I?";
  5587. next;
  5588. donpcevent "Drunken Lady#1::OnEmote";
  5589. donpcevent "Drunken Lady#2::OnEmote";
  5590. mes "[Ladies]";
  5591. mes "Oh, my God!";
  5592. mes "You're so cool~!";
  5593. next;
  5594. mes "[Drunken Man]";
  5595. mes "Well... Anyone would";
  5596. mes "have done it. I was just";
  5597. mes "being a gentleman.";
  5598. mes "Hahahah, that's right!";
  5599. next;
  5600. mes "["+strcharinfo(0)+"]";
  5601. mes "Excuse me, but are";
  5602. mes "you the executive director";
  5603. mes "of the Veins Geological Team?";
  5604. next;
  5605. mes "[Drunken Man]";
  5606. mes "Yeah, sure! Executive";
  5607. mes "director, deputy director,";
  5608. mes "director, researcher, CEO,";
  5609. mes "no... No, wait, that last one";
  5610. mes "doesn't sound right. Hah!";
  5611. mes "I'm all of those~";
  5612. next;
  5613. mes "[Drunken Man]";
  5614. mes "I'm the executive director...";
  5615. mes "I'm the only one that works";
  5616. mes "at the institute, really.";
  5617. mes "Why, what do you want?";
  5618. next;
  5619. mes "["+strcharinfo(0)+"]";
  5620. mes "Uhh... There are some";
  5621. mes "official notices for you";
  5622. mes "at your office. I guess you";
  5623. mes "need to get some surveys";
  5624. mes "done? They sound like";
  5625. mes "they're pretty important.";
  5626. next;
  5627. mes "["+strcharinfo(0)+"]";
  5628. mes "Maybe...";
  5629. mes "Maybe even ^FF0000urgent^000000.";
  5630. next;
  5631. mes "[Drunken Man]";
  5632. mes "Wha--? Hey, what day";
  5633. mes "is it today? Damn it!";
  5634. mes "Fine, fine, time to get";
  5635. mes "to work. Just when I was";
  5636. mes "really enjoying myself too!";
  5637. mes "Argh, I never wanna be sober!";
  5638. next;
  5639. mes "[Drunken Man]";
  5640. mes "But... Working is the";
  5641. mes "only way for me to afford";
  5642. mes "all this drinking... Such";
  5643. mes "is life. Such is life.";
  5644. next;
  5645. mes "[Ladies]";
  5646. mes "Where are you going?";
  5647. mes "Can't you stay a bit";
  5648. mes "longer and talk with";
  5649. mes "us? Pleeeeeease?";
  5650. next;
  5651. mes "[Drunken Man]";
  5652. mes "Sorry, ladies,";
  5653. mes "but duty calls.";
  5654. mes "Hahahahahahha~";
  5655. next;
  5656. donpcevent "Drunken Lady#1::OnEmote";
  5657. donpcevent "Drunken Lady#2::OnEmote";
  5658. mes "[Ladies]";
  5659. mes "Please don't go~";
  5660. next;
  5661. mes "[Drunken Man]";
  5662. mes "Ahem!";
  5663. mes "Let's see now.";
  5664. mes "What'd be best...?";
  5665. mes "..............................";
  5666. mes "..............................";
  5667. mes "..............................";
  5668. next;
  5669. mes "[Drunken Man]";
  5670. mes "..............................";
  5671. mes "..............................";
  5672. mes "........................Right!";
  5673. next;
  5674. mes "[Drunken Man]";
  5675. mes "Hey, you.";
  5676. next;
  5677. mes "["+strcharinfo(0)+"]";
  5678. mes "Yes?";
  5679. next;
  5680. emotion e_no1;
  5681. mes "[Drunken Man]";
  5682. mes "I hereby promote you as";
  5683. mes "chief researcher of the";
  5684. mes "Veins Geological Research";
  5685. mes "Institute. Congratulations!";
  5686. mes "Welcome to the team, friend!";
  5687. next;
  5688. mes "["+strcharinfo(0)+"]";
  5689. mes "Huh...?";
  5690. mes "I don't understand";
  5691. mes "what you're talking about!";
  5692. next;
  5693. mes "[Drunken Man]";
  5694. mes "Heh! You should be grateful";
  5695. mes "that I'm accepting you as my";
  5696. mes "student! Everyone'd be proud";
  5697. mes "to study under me, Gio, the";
  5698. mes "world's greatest geologist!";
  5699. mes "(Well, maybe.)";
  5700. next;
  5701. mes "["+strcharinfo(0)+"]";
  5702. mes "Hey, I never--";
  5703. next;
  5704. mes "[Geologist Gio]";
  5705. mes "Ah-ah! Now that you're";
  5706. mes "my student, I expect you";
  5707. mes "to work hard if you're going";
  5708. mes "to learn anything. First thing";
  5709. mes "first--go to my office and";
  5710. mes "clear up my belated business.";
  5711. next;
  5712. mes "[Geologist Gio]";
  5713. mes "Here, take this ^FF0000reference";
  5714. mes "guide^000000 with you to my office.";
  5715. mes "When you check my desk, you'll";
  5716. mes "find a ^FF0000pyrometer^000000 and a ^FF0000report";
  5717. mes "form^000000. You'll need to bring all";
  5718. mes "that stuff to Thor Volcano.";
  5719. next;
  5720. mes "[Geologist Gio]";
  5721. mes "When you get to Thor Volcano,";
  5722. mes "use the pryometer to check the";
  5723. mes "volcano's temperature, and";
  5724. mes "fill out the report form.";
  5725. next;
  5726. mes "[Geologist Gio]";
  5727. mes "Take the filled report";
  5728. mes "form to the geology camp";
  5729. mes "that's deep inside the volcano";
  5730. mes "so that they can stamp their";
  5731. mes "confirmation on it. That's";
  5732. mes "not so hard now, is it?";
  5733. next;
  5734. mes "[Geologist Gio]";
  5735. mes "Ahh, I've also decided";
  5736. mes "to take these lovely ladies";
  5737. mes "on as my students as well~";
  5738. mes "I should stay here and";
  5739. mes "entreat them to a lecture.";
  5740. next;
  5741. donpcevent "Drunken Lady#1::OnEmote";
  5742. donpcevent "Drunken Lady#2::OnEmote";
  5743. mes "[Ladies]";
  5744. mes "Oh~! You'll really";
  5745. mes "teach us geology?";
  5746. next;
  5747. mes "[Geologist Gio]";
  5748. mes "Oh, right! When they";
  5749. mes "ask you about the volcano's";
  5750. mes "temperature when you submit";
  5751. mes "the report at the geological";
  5752. mes "camp, make something up.";
  5753. mes "Make sure it sounds bad!";
  5754. next;
  5755. mes "[Geologist Gio]";
  5756. mes "Words like ''explosion,''";
  5757. mes "''disaster,'' and ''collatoral";
  5758. mes "damage'' would be perfect.";
  5759. mes "Just do your part, and I'll";
  5760. mes "take care of the rest. Okay~";
  5761. mes "Come back soon, my pupil!";
  5762. next;
  5763. mes "^3355FFWell, this isn't what";
  5764. mes "you expected, but you get";
  5765. mes "the feeling that this will";
  5766. mes "all turn out in your favor.";
  5767. mes "You know that feeling, right?^000000";
  5768. set aru_vol,8;
  5769. getitem 7705,1; //Note_Of_Geologist
  5770. close;
  5771. }
  5772. else if ((aru_vol > 7) && (aru_vol < 24)) {
  5773. mes "[Geologist Gio]";
  5774. mes "Hey, you'd better hurry";
  5775. mes "it up. I mean, you're the";
  5776. mes "one that found that notice";
  5777. mes "in my office, didn't you?";
  5778. mes "You know how important";
  5779. mes "this work is to us!";
  5780. next;
  5781. mes "[Geologist Gio]";
  5782. mes "Get the pyrometer,";
  5783. mes "and go to Thor Volcano";
  5784. mes "to fill out the report";
  5785. mes "form and submit it to";
  5786. mes "the geological camp!";
  5787. close;
  5788. }
  5789. else if (aru_vol == 24) {
  5790. mes "[Geologist Gio]";
  5791. mes "Well, those are";
  5792. mes "nice legs, but they're";
  5793. mes "not the best pair I've see--";
  5794. next;
  5795. mes "["+strcharinfo(0)+"]";
  5796. mes "I'm back.";
  5797. next;
  5798. mes "[Geologist Gio]";
  5799. mes "*Ahem* And that's how";
  5800. mes "erosion... Works. Tomorrow,";
  5801. mes "I'll teach you ladies all";
  5802. mes "about rocks. All of them.";
  5803. next;
  5804. mes "[Geologist Gio]";
  5805. mes "Welcome back! So,";
  5806. mes "how was the volcanic";
  5807. mes "temperature report?";
  5808. next;
  5809. mes "["+strcharinfo(0)+"]";
  5810. mes "Well, I did what you";
  5811. mes "told me. Hey, are you";
  5812. mes "sure you wanted me to";
  5813. mes "exaggerate the temperature?";
  5814. mes "What about the camp?";
  5815. next;
  5816. mes "[Geologist Gio]";
  5817. mes "Oh, don't worry about";
  5818. mes "the temperature. It's";
  5819. mes "supposed to go up.";
  5820. next;
  5821. mes "["+strcharinfo(0)+"]";
  5822. mes "What are you...?";
  5823. mes "Actually, I thought that";
  5824. mes "maybe the pryometer";
  5825. mes "might be broken.";
  5826. next;
  5827. mes "[Geologist Gio]";
  5828. mes "Heh! You're right~";
  5829. mes "I broke it on purpose.";
  5830. next;
  5831. mes "["+strcharinfo(0)+"]";
  5832. mes "What?!";
  5833. next;
  5834. mes "[Geologist Gio]";
  5835. mes "You know, it's hard for";
  5836. mes "scholars like me to make";
  5837. mes "a decent living. Hell, I was";
  5838. mes "lucky enough to get that";
  5839. mes "temperature measuring job";
  5840. mes "from the geological camp.";
  5841. next;
  5842. mes "[Geologist Gio]";
  5843. mes "Those guys've been trying";
  5844. mes "to fire me ever since they";
  5845. mes "realized the volcano became";
  5846. mes "dormant. But... They can't";
  5847. mes "fire me if there's proof that";
  5848. mes "it might go off anytime!";
  5849. next;
  5850. mes "[Geologist Gio]";
  5851. mes "Then, when they're all";
  5852. mes "panicked, I calmly and";
  5853. mes "suavely offer a solution";
  5854. mes "that looks like it works.";
  5855. mes "Of course, there's never";
  5856. mes "a problem to begin with...";
  5857. next;
  5858. mes "["+strcharinfo(0)+"]";
  5859. mes "So...";
  5860. mes "You're a con man.";
  5861. next;
  5862. mes "[Geologist Gio]";
  5863. mes "Awww, don't look at";
  5864. mes "me like that. I'm a real";
  5865. mes "scientist. Come on...";
  5866. mes "Oh, come on...";
  5867. next;
  5868. mes "[Geologist Gio]";
  5869. mes "Look, why don't you head";
  5870. mes "back to my institute and";
  5871. mes "check out my bookshelf?";
  5872. mes "I keep a small box there";
  5873. mes "where I keep all sorts";
  5874. mes "of nifty little goodies.";
  5875. next;
  5876. mes "[Geologist Gio]";
  5877. mes "You can have the very";
  5878. mes "first thing that pops out";
  5879. mes "of that box. I wonder if the";
  5880. mes "goddess will grace you";
  5881. mes "with good fortune. You";
  5882. mes "might get something good~";
  5883. next;
  5884. mes "[Geologist Gio]";
  5885. mes "Consider it your";
  5886. mes "payment for a job";
  5887. mes "well done. Good work!";
  5888. mes "I expected nothing less";
  5889. mes "from my star pupil!";
  5890. set aru_vol,25;
  5891. delitem 7342,1; //File01
  5892. delitem 7704,1; //Broken_Thermometer
  5893. delitem 7705,1; //Note_Of_Geologist
  5894. close;
  5895. }
  5896. mes "[Drunken Man]";
  5897. mes "So... ^333333*Urp*^000000";
  5898. mes "So then I said...";
  5899. next;
  5900. mes "[Drunken Man]";
  5901. mes "''^3131FFHey, buddy! A man";
  5902. mes "uses his back to talk,";
  5903. mes "not his fists! You wanna";
  5904. mes "piece of me? Bring it on!^000000''";
  5905. next;
  5906. mes "[Drunken Man]";
  5907. mes "Then he got all";
  5908. mes "scared, and ran away!";
  5909. mes "Hahahaha! Guess I look";
  5910. mes "pretty tough, don't I?";
  5911. next;
  5912. donpcevent "Drunken Lady#1::OnEmote";
  5913. donpcevent "Drunken Lady#2::OnEmote";
  5914. mes "[Ladies]";
  5915. mes "Oh, my God!";
  5916. mes "You're so cool~!";
  5917. next;
  5918. mes "[Drunken Man]";
  5919. mes "Well... Anyone would";
  5920. mes "have done it. I was just";
  5921. mes "being a gentleman.";
  5922. mes "Hahahah, that's right!";
  5923. close;
  5924. }
  5925. ve_in,232,117,5 script Drunken Lady#1 940,{
  5926. mes "[Drunken Lady]";
  5927. mes "This guys' actually";
  5928. mes "pretty boring, but...";
  5929. mes "I get free drinks if";
  5930. mes "I can put up with him~";
  5931. close;
  5932. OnEmote:
  5933. emotion e_lv;
  5934. end;
  5935. }
  5936. ve_in,234,115,3 script Drunken Lady#2 940,{
  5937. mes "[Drunken Lady]";
  5938. mes "This tavern might look";
  5939. mes "luxurious and gorgeous,";
  5940. mes "but the drinks here stink!";
  5941. mes "I can mix better drinks";
  5942. mes "at home, no sweat at all~";
  5943. close;
  5944. OnEmote:
  5945. emotion e_lv;
  5946. end;
  5947. }
  5948. ve_in,277,229,3 script Wall Closet#vol 111,{
  5949. if ((MaxWeight-Weight) < 2000 || checkweight(1201,1) == 0) {
  5950. mes "^3355FFWait a second!";
  5951. mes "Right now, you're carrying";
  5952. mes "too many things with you.";
  5953. mes "Please come back after";
  5954. mes "using the Kafra Service";
  5955. mes "to store some of your items.^000000";
  5956. close;
  5957. }
  5958. if (aru_vol == 8) {
  5959. if (countitem(7704) == 0) {
  5960. mes "^3355FFYou found the";
  5961. mes "pyrometer inside";
  5962. mes "the closet.^000000";
  5963. getitem 7704,1; //Broken_Thermometer
  5964. close;
  5965. }
  5966. mes "^3355FFThere's so much junk";
  5967. mes "crammed in here!^000000";
  5968. close;
  5969. }
  5970. mes "^3355FFThere's so much junk";
  5971. mes "crammed in here!^000000";
  5972. close;
  5973. }
  5974. ve_in,281,214,3 script Bookshelf#vol 111,{
  5975. if ((MaxWeight-Weight) < 2000 || checkweight(1201,1) == 0) {
  5976. mes "^3355FFWait a second!";
  5977. mes "Right now, you're carrying";
  5978. mes "too many things with you.";
  5979. mes "Please come back after";
  5980. mes "using the Kafra Service";
  5981. mes "to store some of your items.^000000";
  5982. close;
  5983. }
  5984. if (aru_vol == 8) {
  5985. if (countitem(7342) == 0) {
  5986. mes "^3355FFYou find a bundle";
  5987. mes "of reports carelessly";
  5988. mes "stuck between some";
  5989. mes "books on this bookshelf.^000000";
  5990. getitem 7342,1; //File01
  5991. close;
  5992. }
  5993. mes "^3355FFThere's a lot of";
  5994. mes "scattered books and";
  5995. mes "notebooks lying on";
  5996. mes "this bookshelf.^000000";
  5997. close;
  5998. }
  5999. else if ((aru_vol > 8) && (aru_vol < 25)) {
  6000. mes "^3355FFThere's a lot of";
  6001. mes "scattered books and";
  6002. mes "notebooks lying on";
  6003. mes "this bookshelf.^000000";
  6004. close;
  6005. }
  6006. else if (aru_vol == 25) {
  6007. mes "^3355FFThere's a lot of";
  6008. mes "scattered books and";
  6009. mes "notebooks lying on";
  6010. mes "this bookshelf.^000000";
  6011. next;
  6012. mes "^3355FFAfter a quick look,";
  6013. mes "you notice the grayish";
  6014. mes "purple box that Gio was";
  6015. mes "talking about it. You close";
  6016. mes "your eyes, and reach inside";
  6017. mes "Gio's purple box of goodies.^000000";
  6018. next;
  6019. set aru_vol,26;
  6020. set .@box_box,rand(1,20);
  6021. if (.@box_box < 7) {
  6022. getitem 12104,1; //Random_Quiver
  6023. }
  6024. else if ((.@box_box > 6) && (.@box_box < 9)) {
  6025. getitem 661,1; //Sway_Apron
  6026. }
  6027. else if ((.@box_box > 8) && (.@box_box < 20)) {
  6028. getitem 12027,5; //Giggling_Box
  6029. }
  6030. else {
  6031. getitem 12103,1; //Bloody_Dead_Branch
  6032. }
  6033. getexp 800000,0;
  6034. mes "^3355FFWell, you've done all";
  6035. mes "that you could here.";
  6036. mes "Now would be a good time";
  6037. mes "to return to High Priest Zhed.^000000";
  6038. close;
  6039. }
  6040. mes "^3355FFThere's a lot of";
  6041. mes "scattered books and";
  6042. mes "notebooks lying on";
  6043. mes "this bookshelf.^000000";
  6044. close;
  6045. }
  6046. thor_v01,37,234,3 script Hot Land Surface#1 111,{
  6047. if (aru_vol == 8) {
  6048. if ((countitem(7704) > 0) && (countitem(7342) > 0)) {
  6049. mes "^3355FFYou use the pyrometer";
  6050. mes "to check the surface";
  6051. mes "temperature of the ground";
  6052. mes "here in the volcano.^000000";
  6053. next;
  6054. mes "^3131FFBeep-- Beep-- Bee-^000000";
  6055. next;
  6056. mes "^3131FFCurrent Temperature: 2300 ThT^000000";
  6057. next;
  6058. mes "^3355FFYou record the";
  6059. mes "temperature in";
  6060. mes "your report.^000000";
  6061. set aru_vol,9;
  6062. next;
  6063. mes "["+strcharinfo(0)+"]";
  6064. mes "I should take a few more";
  6065. mes "temperature measurements";
  6066. mes "before I submit this report,";
  6067. mes "just to be absolutely sure.";
  6068. close;
  6069. }
  6070. mes "^3355FFYou need both the";
  6071. mes "pyrometer and the";
  6072. mes "report form to measure";
  6073. mes "and record the temperature";
  6074. mes "of the ground's surface here.^000000";
  6075. close;
  6076. }
  6077. mes "^3355FFThis patch of ground";
  6078. mes "emits an intense heat";
  6079. mes "that stings your face.^000000";
  6080. close;
  6081. }
  6082. thor_v02,165,37,3 script Hot Land Surface#2 111,{
  6083. if (aru_vol == 9) {
  6084. if ((countitem(7704) > 0) && (countitem(7342) > 0)) {
  6085. mes "^3355FFYou use the pyrometer";
  6086. mes "to check the surface";
  6087. mes "temperature of the ground";
  6088. mes "here in the volcano.^000000";
  6089. next;
  6090. mes "^3131FFBeep-- Beep-- Bee-^000000";
  6091. next;
  6092. mes "^3131FFCurrent Temperature: 2270 ThT^000000";
  6093. next;
  6094. mes "^3355FFYou record the";
  6095. mes "temperature in";
  6096. mes "your report.^000000";
  6097. set aru_vol,10;
  6098. close;
  6099. }
  6100. mes "^3355FFYou need both the";
  6101. mes "pyrometer and the";
  6102. mes "report form to measure";
  6103. mes "and record the temperature";
  6104. mes "of the ground's surface here.^000000";
  6105. close;
  6106. }
  6107. mes "^3355FFThis patch of ground";
  6108. mes "emits an intense heat";
  6109. mes "that stings your face.^000000";
  6110. close;
  6111. }
  6112. thor_v02,170,100,3 script Hot Land Surface#3 111,{
  6113. if (aru_vol == 10) {
  6114. if ((countitem(7704) > 0) && (countitem(7342) > 0)) {
  6115. mes "^3355FFYou use the pyrometer";
  6116. mes "to check the surface";
  6117. mes "temperature of the ground";
  6118. mes "here in the volcano.^000000";
  6119. next;
  6120. mes "^3131FFBeep-- Beep-- Bee-^000000";
  6121. next;
  6122. mes "^3131FFCurrent Temperature: 2500 ThT^000000";
  6123. next;
  6124. mes "^3355FFYou record the";
  6125. mes "temperature in";
  6126. mes "your report.^000000";
  6127. next;
  6128. mes "["+strcharinfo(0)+"]";
  6129. mes "I've taken enough";
  6130. mes "measurements. I should";
  6131. mes "submit this report to the";
  6132. mes "geological camp now~";
  6133. set aru_vol,11;
  6134. close;
  6135. }
  6136. mes "^3355FFYou need both the";
  6137. mes "pyrometer and the";
  6138. mes "report form to measure";
  6139. mes "and record the temperature";
  6140. mes "of the ground's surface here.^000000";
  6141. close;
  6142. }
  6143. else if (aru_vol == 11) {
  6144. mes "["+strcharinfo(0)+"]";
  6145. mes "I've taken enough";
  6146. mes "measurements. I should";
  6147. mes "submit this report to the";
  6148. mes "geological camp now~";
  6149. close;
  6150. }
  6151. mes "^3355FFThis patch of ground";
  6152. mes "emits an intense heat";
  6153. mes "that stings your face.^000000";
  6154. close;
  6155. }
  6156. que_thor,145,66,3 script Guard#vol::VeinsGuard 939,{
  6157. if (aru_vol == 11) {
  6158. mes "[Guard]";
  6159. mes "Only authorized";
  6160. mes "personnel can enter this";
  6161. mes "area. Identify yourself!";
  6162. next;
  6163. mes "["+strcharinfo(0)+"]";
  6164. mes "I'm a research student working";
  6165. mes "under Director Gio for the";
  6166. mes "Veins Geological Research";
  6167. mes "Institute. Would you please";
  6168. mes "stamp this temperature";
  6169. mes "report for me?";
  6170. next;
  6171. mes "[Guard]";
  6172. mes "Oh, I see. Well, I'm";
  6173. mes "not the one that stamps";
  6174. mes "reports. Go inside and";
  6175. mes "ask Sahedi to help you.";
  6176. mes "He's at the airship just";
  6177. mes "south of the train station.";
  6178. set aru_vol,12;
  6179. close2;
  6180. warp "thor_camp",248,190;
  6181. end;
  6182. }
  6183. else if ((aru_vol > 11) && (aru_vol < 24)) {
  6184. mes "[Guard]";
  6185. mes "Oh, you're that student";
  6186. mes "from the institute. I don't";
  6187. mes "think we're expecting";
  6188. mes "any reports soon.";
  6189. next;
  6190. mes "["+strcharinfo(0)+"]";
  6191. mes "Oh, we just found out";
  6192. mes "that the instruments we";
  6193. mes "used were faulty, so we";
  6194. mes "had to revise our report.";
  6195. next;
  6196. mes "[Guard]";
  6197. mes "Your tools were broken";
  6198. mes "the first time? Okay, okay,";
  6199. mes "I can understand that.";
  6200. mes "Alright, you can pass.";
  6201. close2;
  6202. warp "thor_camp",248,190;
  6203. end;
  6204. }
  6205. mes "[Guard]";
  6206. mes "Who are you?!";
  6207. close;
  6208. }
  6209. que_thor,136,66,3 duplicate(VeinsGuard) Guard#vol2 939
  6210. que_thor,127,60,5 duplicate(VeinsGuard) Guard#vol3 939
  6211. thor_camp,250,104,3 script Sahedi#vol 934,{
  6212. if ((MaxWeight-Weight) < 2000 || checkweight(1201,1) == 0) {
  6213. mes "^3355FFWait a second!";
  6214. mes "Right now, you're carrying";
  6215. mes "too many things with you.";
  6216. mes "Please come back after";
  6217. mes "using the Kafra Service";
  6218. mes "to store some of your items.^000000";
  6219. close;
  6220. }
  6221. if (aru_vol == 12) {
  6222. mes "[Sahedi]";
  6223. mes "I'm sorry, but I don't";
  6224. mes "think I know you. Only";
  6225. mes "authorized personnel is";
  6226. mes "allowed in this area, so";
  6227. mes "if you don't have any";
  6228. mes "reason to be here...";
  6229. next;
  6230. mes "["+strcharinfo(0)+"]";
  6231. mes "I'm a research student working";
  6232. mes "under Director Gio for the";
  6233. mes "Veins Geological Research";
  6234. mes "Institute. Would you please";
  6235. mes "stamp this temperature";
  6236. mes "report for me?";
  6237. next;
  6238. mes "["+strcharinfo(0)+"]";
  6239. mes "Um, Gio is sick right";
  6240. mes "now, so that's why he";
  6241. mes "had me fill out this report";
  6242. mes "form and submit it for him.";
  6243. next;
  6244. mes "[Sahedi]";
  6245. mes "Ah, so that's why his";
  6246. mes "report's late this time.";
  6247. mes "I'm sorry to hear that.";
  6248. mes "And here I thought he was";
  6249. mes "just wasting his time on";
  6250. mes "women and alcohol...";
  6251. next;
  6252. mes "[Sahedi]";
  6253. mes "Let's see...";
  6254. next;
  6255. emotion e_omg;
  6256. mes "[Sahedi]";
  6257. mes "Oh God! Why is the";
  6258. mes "temperature so high?!";
  6259. mes "We've had a few reports";
  6260. mes "like this in the past, but...";
  6261. mes "Is this... How bad is this?";
  6262. next;
  6263. emotion 19,1;
  6264. mes "["+strcharinfo(0)+"]";
  6265. mes "Oh... Oh, no!";
  6266. mes "Yikes! I guess if it's";
  6267. mes "higher than normal...";
  6268. mes "It might be bad?";
  6269. next;
  6270. mes "[Sahedi]";
  6271. mes "What should I do?";
  6272. mes "Should I activate";
  6273. mes "the alarm? I don't...";
  6274. mes "I don't wanna die!";
  6275. next;
  6276. mes "["+strcharinfo(0)+"]";
  6277. mes "You might want to calm";
  6278. mes "down first. I'll take a look";
  6279. mes "around the camp, so please";
  6280. mes "don't say anything that will";
  6281. mes "make anyone else panic for now.";
  6282. next;
  6283. mes "[Sahedi]";
  6284. mes "Okay...";
  6285. mes "Please go ahead, and";
  6286. mes "see if this camp will be";
  6287. mes "safe from any disaster.";
  6288. set aru_vol,13;
  6289. delitem 7342,1; //File01
  6290. close;
  6291. }
  6292. else if ((aru_vol > 12) && (aru_vol < 23)) {
  6293. mes "[Sahedi]";
  6294. mes "So, are we in any";
  6295. mes "danger? Does it look";
  6296. mes "like this volcano will";
  6297. mes "erupt anytime soon?";
  6298. next;
  6299. mes "["+strcharinfo(0)+"]";
  6300. mes "Oh, I'm not finished";
  6301. mes "investigating yet. Would";
  6302. mes "you please wait a bit longer?";
  6303. next;
  6304. mes "[Sahedi]";
  6305. mes "Sure, sure. Just make";
  6306. mes "sure that you do a real";
  6307. mes "thorough check of everything";
  6308. mes "in the volcano for me, yeah?";
  6309. close;
  6310. }
  6311. else if (aru_vol == 23) {
  6312. mes "[Sahedi]";
  6313. mes "So, are we in any";
  6314. mes "danger? Does it look";
  6315. mes "like this volcano will";
  6316. mes "erupt anytime soon?";
  6317. next;
  6318. while(1) {
  6319. if (select("Yes:No") == 1) {
  6320. mes "["+strcharinfo(0)+"]";
  6321. mes "I guess I can't hide it";
  6322. mes "from you... The recent";
  6323. mes "activity of this volcano";
  6324. mes "has recently been fairly...";
  6325. mes "disconcerting.";
  6326. next;
  6327. break;
  6328. }
  6329. else {
  6330. mes "^3355FFWait... You should take";
  6331. mes "advantage of this situation.";
  6332. mes "This could be your chance to";
  6333. mes "intervene in the conflict";
  6334. mes "between two contries!^000000";
  6335. next;
  6336. mes "^3355FFYou might not be able";
  6337. mes "to stop their war, but";
  6338. mes "maybe you can distract";
  6339. mes "them with the threat";
  6340. mes "of natural disaster...^000000";
  6341. next;
  6342. }
  6343. }
  6344. emotion e_omg;
  6345. mes "[Sahedi]";
  6346. mes "Huh? Are you serious?";
  6347. mes "Thor Volcano's gonna";
  6348. mes "erupt?! We-we have to";
  6349. mes "get the hell out of here!";
  6350. mes "It'll be a disaster, just";
  6351. mes "like it happened in the past!";
  6352. next;
  6353. emotion 52,1;
  6354. mes "["+strcharinfo(0)+"]";
  6355. mes "Yes, I agree. There's";
  6356. mes "a good chance of an...";
  6357. mes "explosion that'll cause";
  6358. mes "a lot of collateral damage.";
  6359. next;
  6360. mes "[Sahedi]";
  6361. mes "What are our chances?";
  6362. mes "How much time do we";
  6363. mes "have to evacuate?";
  6364. next;
  6365. emotion 52,1;
  6366. mes "["+strcharinfo(0)+"]";
  6367. mes "Well... Uh...";
  6368. mes "According to my data...";
  6369. mes "Analysis... There's a 75%";
  6370. mes "chance of eruption within";
  6371. mes "the next thirty days.";
  6372. next;
  6373. mes "[Sahedi]";
  6374. mes "What?! We must report";
  6375. mes "this to the high priest";
  6376. mes "immediately! Aitra!";
  6377. next;
  6378. enablenpc "Aitra#vol";
  6379. mes "[Aitra]";
  6380. mes "Yes, sir!";
  6381. next;
  6382. mes "[Sahedi]";
  6383. mes "This is an emergency.";
  6384. mes "Bring this message to";
  6385. mes "the high priest as soon";
  6386. mes "as possible. And don't";
  6387. mes "forget to pack all your";
  6388. mes "things before you leave.";
  6389. next;
  6390. mes "[Aitra]";
  6391. mes "Huh?";
  6392. mes " ...Yes, sir.";
  6393. next;
  6394. disablenpc "Aitra#vol";
  6395. mes "[Sahedi]";
  6396. mes "Oh, this is a nightmare...";
  6397. mes "Will you please take your";
  6398. mes "report to your director, Gio?";
  6399. mes "Hopefully he'll have some";
  6400. mes "advice for what we can";
  6401. mes "do about this disaster...";
  6402. set aru_vol,24;
  6403. getitem 7342,1; //File01
  6404. close;
  6405. }
  6406. mes "[Sahedi]";
  6407. mes "Argh, I'm so busy!";
  6408. close;
  6409. }
  6410. thor_camp,194,220,0 script #Colonel1 -1,5,5,{
  6411. OnTouch:
  6412. //OnTouch2:
  6413. if (aru_vol == 13) {
  6414. enablenpc "Colonel Vito#1";
  6415. mes "[????]";
  6416. mes "You...!";
  6417. mes "What are you doing";
  6418. mes "just standing around?!";
  6419. mes "Aren't you supposed to";
  6420. mes "be transporting cargo? ";
  6421. mes "Attention to orders!";
  6422. next;
  6423. mes "["+strcharinfo(0)+"]";
  6424. mes "Are you talking to me?";
  6425. mes "No, I'm from the Veins Geo--";
  6426. next;
  6427. mes "[Colonel Vito]";
  6428. mes "Look at you. You don't";
  6429. mes "even have your uniform";
  6430. mes "yet. Still a rookie, eh?";
  6431. mes "Looks like I'll have to";
  6432. mes "personally train you as";
  6433. mes "one of our holy knights!";
  6434. next;
  6435. mes "["+strcharinfo(0)+"]";
  6436. mes "But I'm not--";
  6437. next;
  6438. mes "[Colonel Vito]";
  6439. mes "You should be honored to";
  6440. mes "have the rare opportunity";
  6441. mes "to be trained by me, the";
  6442. mes "great Colonel Vito. I'll mold";
  6443. mes "you into a true warrior for";
  6444. mes "Freya! Now follow me!";
  6445. set aru_vol,14;
  6446. close2;
  6447. disablenpc "Colonel Vito#1";
  6448. warp "thor_camp",156,68;
  6449. end;
  6450. }
  6451. else if (aru_vol == 14) {
  6452. mes "[Colonel Vito]";
  6453. mes "What are you still";
  6454. mes "doing standing there?";
  6455. mes "Don't slack off! Come!";
  6456. close2;
  6457. warp "thor_camp",156,68;
  6458. end;
  6459. }
  6460. end;
  6461. }
  6462. thor_camp,162,182,0 script #Colonel2 -1,7,7,{
  6463. OnTouch:
  6464. //OnTouch2:
  6465. if (aru_vol == 13) {
  6466. enablenpc "Colonel Vito#2";
  6467. mes "[????]";
  6468. mes "You...!";
  6469. mes "What are you doing";
  6470. mes "just standing around?!";
  6471. mes "Aren't you supposed to";
  6472. mes "be transporting cargo? ";
  6473. mes "Attention to orders!";
  6474. next;
  6475. mes "["+strcharinfo(0)+"]";
  6476. mes "Are you talking to me?";
  6477. mes "No, I'm from the Veins Geo--";
  6478. next;
  6479. mes "[Colonel Vito]";
  6480. mes "Look at you. You don't";
  6481. mes "even have your uniform";
  6482. mes "yet. Still a rookie, eh?";
  6483. mes "Looks like I'll have to";
  6484. mes "personally train you as";
  6485. mes "one of our holy knights!";
  6486. next;
  6487. mes "["+strcharinfo(0)+"]";
  6488. mes "But I'm not--";
  6489. next;
  6490. mes "[Colonel Vito]";
  6491. mes "You should be honored to";
  6492. mes "have the rare opportunity";
  6493. mes "to be trained by me, the";
  6494. mes "great Colonel Vito. I'll mold";
  6495. mes "you into a true warrior for";
  6496. mes "Freya! Now follow me!";
  6497. set aru_vol,14;
  6498. disablenpc "Colonel Vito#2";
  6499. close2;
  6500. warp "thor_camp",156,68;
  6501. end;
  6502. }
  6503. else if (aru_vol == 14) {
  6504. mes "[Colonel Vito]";
  6505. mes "What are you still";
  6506. mes "doing standing there?";
  6507. mes "Don't slack off! Come!";
  6508. close2;
  6509. disablenpc "Colonel Vito#2";
  6510. warp "thor_camp",156,68;
  6511. end;
  6512. }
  6513. end;
  6514. }
  6515. thor_camp,187,228,5 script Colonel Vito#1 946,{
  6516. OnInit:
  6517. disablenpc "Colonel Vito#1";
  6518. end;
  6519. }
  6520. thor_camp,155,175,7 script Colonel Vito#2 946,{
  6521. OnInit:
  6522. disablenpc "Colonel Vito#2";
  6523. end;
  6524. }
  6525. thor_camp,159,74,3 script Colonel Vito#3 946,{
  6526. if (aru_vol == 14) {
  6527. mes "[Colonel Vito]";
  6528. mes "I am Colonel Vito,";
  6529. mes "and I'm in charge of";
  6530. mes "the Arunafeltz camp";
  6531. mes "here in Thor Volcano.";
  6532. mes "What's your name, soldier?";
  6533. next;
  6534. mes "["+strcharinfo(0)+"]";
  6535. mes ""+strcharinfo(0)+", sir.";
  6536. next;
  6537. mes "[Colonel Vito]";
  6538. mes "Hmpf! That's a weakling's";
  6539. mes "name! I can tell that your";
  6540. mes "mind and body are too weak!";
  6541. mes "That won't do. How will you";
  6542. mes "be worthy of serving the";
  6543. mes "beautiful, graceful Freya?";
  6544. next;
  6545. mes "[Colonel Vito]";
  6546. mes "You need more training.";
  6547. mes "Take a break first, and";
  6548. mes "prepare yourself. We will";
  6549. mes "begin as soon as you're ready.";
  6550. set aru_vol,15;
  6551. close;
  6552. }
  6553. else if (aru_vol == 15) {
  6554. mes "[Colonel Vito]";
  6555. mes "First, we need to take";
  6556. mes "care of that weak mind";
  6557. mes "of yours. This first";
  6558. mes "training exercise will";
  6559. mes "be verbal based.";
  6560. next;
  6561. while(1) {
  6562. mes "[Colonel Vito]";
  6563. mes "Question one!";
  6564. mes "Who do we fight for?";
  6565. mes "Who do we live for?";
  6566. next;
  6567. if (select("Odin:Freya:Thor") == 2) {
  6568. break;
  6569. }
  6570. mes "[Colonel Vito]";
  6571. mes "You idiot!";
  6572. percentheal -10,0;
  6573. specialeffect2 EF_HIT2;
  6574. next;
  6575. }
  6576. mes "[Colonel Vito]";
  6577. mes "Right! Freya is not only";
  6578. mes "a goddess of love, but she's";
  6579. mes "also a goddess of war.";
  6580. mes "We are on a sacred mission";
  6581. mes "to recover the pieces of";
  6582. mes "Ymir's Heart for her sake.";
  6583. next;
  6584. mes "[Colonel Vito]";
  6585. mes "Freya was greatly wounded";
  6586. mes "in the war among gods,";
  6587. mes "humans, and demons.";
  6588. mes "Odin, the leader of the";
  6589. mes "gods, tried to help her, but";
  6590. mes "even his power wasn't enough.";
  6591. next;
  6592. mes "[Colonel Vito]";
  6593. mes "Odin did advise her to";
  6594. mes "obtain Ymir's Heart, as";
  6595. mes "it would fully recover her";
  6596. mes "powers. That is why we are";
  6597. mes "preparing for war: we must";
  6598. mes "obtain Ymir's Heart for Freya!";
  6599. next;
  6600. mes "[Colonel Vito]";
  6601. mes "DO YOU UNDERSTAND?!";
  6602. next;
  6603. mes "["+strcharinfo(0)+"]";
  6604. mes "Yes, sir!";
  6605. next;
  6606. mes "[Colonel Vito]";
  6607. mes "Now, there's a country";
  6608. mes "called the Rune-Midgarts";
  6609. mes "Kingdom that's full of fools.";
  6610. mes "Their ancestors branded us";
  6611. mes "as heretics and drove us";
  6612. mes "to this deserted land.";
  6613. next;
  6614. mes "[Colonel Vito]";
  6615. mes "We cannot forgive how they";
  6616. mes "denied us our freedom to";
  6617. mes "worship Freya. Our people";
  6618. mes "will have revenge on them.";
  6619. mes "Mark my word, soldier.";
  6620. mes "Now, repeat after me.";
  6621. next;
  6622. mes "[Colonel Vito]";
  6623. mes "I, "+strcharinfo(0)+",";
  6624. next;
  6625. mes "["+strcharinfo(0)+"]";
  6626. mes "I, "+strcharinfo(0)+",";
  6627. next;
  6628. while(1) {
  6629. mes "[Colonel Vito]";
  6630. mes "^FF0000as a devoted servant";
  6631. mes "of Goddess Freya";
  6632. next;
  6633. input .@input$;
  6634. set .@answer$,"as a devoted servant of Goddess Freya";
  6635. if (.@input$ == .@answer$) {
  6636. mes "["+strcharinfo(0)+"]";
  6637. mes "as a devoted servant";
  6638. mes "of Goddess Freya, the";
  6639. mes "patron saint of the";
  6640. mes "great Arunafeltz,^000000";
  6641. next;
  6642. break;
  6643. }
  6644. else {
  6645. mes "[Colonel Vito]";
  6646. mes "Wrong! Try again!";
  6647. next;
  6648. }
  6649. }
  6650. while(1) {
  6651. mes "[Colonel Vito]";
  6652. mes "^FF0000I pledge my honor to";
  6653. mes "overthrow our mortal enemy";
  6654. next;
  6655. input .@input$;
  6656. set .@answer$,"I pledge my honor to overthrow our mortal enemy";
  6657. if (.@input$ == .@answer$) {
  6658. mes "["+strcharinfo(0)+"]";
  6659. mes "I pledge my honor to";
  6660. mes "overthrow our mortal enemy,";
  6661. mes "the Rune-Midgarts Kingdom.";
  6662. next;
  6663. break;
  6664. }
  6665. else {
  6666. mes "[Colonel Vito]";
  6667. mes "Wrong! Try again!";
  6668. next;
  6669. }
  6670. }
  6671. while(1) {
  6672. mes "[Colonel Vito]";
  6673. mes "^FF0000I will show no mercy^000000";
  6674. next;
  6675. input .@input$;
  6676. set .@answer$,"I will show no mercy";
  6677. if (.@input$ == .@answer$) {
  6678. mes "["+strcharinfo(0)+"]";
  6679. mes "I will show no mercy.";
  6680. mes "Nothing will stay my hand.^000000";
  6681. next;
  6682. break;
  6683. }
  6684. else {
  6685. mes "[Colonel Vito]";
  6686. mes "Wrong! Try again!";
  6687. next;
  6688. }
  6689. }
  6690. while(1) {
  6691. mes "[Colonel Vito]";
  6692. mes "^FF0000I shall devote";
  6693. mes "my entire life^000000";
  6694. next;
  6695. input .@input$;
  6696. set .@answer$,"I shall devote my entire life";
  6697. if (.@input$ == .@answer$) {
  6698. mes "["+strcharinfo(0)+"]";
  6699. mes "I shall devote my";
  6700. mes "entire life to the";
  6701. mes "full recovery of";
  6702. mes "Goddess Freya.^000000";
  6703. next;
  6704. break;
  6705. }
  6706. else {
  6707. mes "[Colonel Vito]";
  6708. mes "Wrong! Try again!";
  6709. next;
  6710. }
  6711. }
  6712. while(1) {
  6713. mes "[Colonel Vito]";
  6714. mes "^FF0000Down with the";
  6715. mes "Rune-Midgarts Kingdom!^000000";
  6716. next;
  6717. input .@input$;
  6718. set .@answer$,"Down with the Rune-Midgarts Kingdom!";
  6719. if (.@input$ == .@answer$) {
  6720. mes "["+strcharinfo(0)+"]";
  6721. mes "Down with the";
  6722. mes "Rune-Midgarts Kingdom!^000000";
  6723. next;
  6724. break;
  6725. }
  6726. else {
  6727. mes "[Colonel Vito]";
  6728. mes "Wrong! Try again!";
  6729. next;
  6730. }
  6731. }
  6732. mes "[Colonel Vito]";
  6733. mes "Good. Now you know the";
  6734. mes "kind of attitude that you";
  6735. mes "must have as a holy warrior";
  6736. mes "in Freya's service. That";
  6737. mes "is all for the first exercise,";
  6738. mes "but there's one more left.";
  6739. set aru_vol,16;
  6740. close;
  6741. }
  6742. else if (aru_vol == 16) {
  6743. mes "[Colonel Vito]";
  6744. mes "Before we actually do";
  6745. mes "the 2nd training exercise,";
  6746. mes "I have a duty to assign to";
  6747. mes "you. Find the huge pipe zone";
  6748. mes "to the north of this building";
  6749. mes "and find any broken machines.";
  6750. set aru_vol,17;
  6751. close;
  6752. }
  6753. else if (aru_vol == 17) {
  6754. mes "[Colonel Vito]";
  6755. mes "Inspect the machines";
  6756. mes "in the pipe zone to the";
  6757. mes "north of this building.";
  6758. mes "Don't dawdle: move out!";
  6759. close;
  6760. }
  6761. else if (aru_vol == 18) {
  6762. mes "[Colonel Vito]";
  6763. mes "Good work. Remember";
  6764. mes "that your first priority is to";
  6765. mes "check the control panel.";
  6766. mes "It needs to be regularly";
  6767. mes "inspected since it controls";
  6768. mes "the camp's energy resources.";
  6769. next;
  6770. mes "["+strcharinfo(0)+"]";
  6771. mes "Yes, sir!";
  6772. next;
  6773. mes "[Colonel Vito]";
  6774. mes "Now it's time for the";
  6775. mes "second training exercise";
  6776. mes "which will strengthen your";
  6777. mes "body. See the dummy in";
  6778. mes "front of you? Practice by";
  6779. mes "chopping it 10 times. Go!";
  6780. set aru_vol,19;
  6781. next;
  6782. if (select("Yes, sir!:What do you mean by chop?") == 1) {
  6783. mes "[Colonel Vito]";
  6784. mes "Focus your energy in";
  6785. mes "your yell when you strike!";
  6786. mes "Chop! 10 Times! Do it!";
  6787. close;
  6788. }
  6789. mes "[Colonel Vito]";
  6790. mes "Chop...? It's a hand chop.";
  6791. mes "You strike the enemy with";
  6792. mes "the bottom of your hand";
  6793. mes "like a knife blade. How";
  6794. mes "did you join the army";
  6795. mes "without knowing that?";
  6796. next;
  6797. mes "[Colonel Vito]";
  6798. mes "Focus your energy in";
  6799. mes "your yell when you strike!";
  6800. mes "Chop! 10 Times! Do it!";
  6801. close;
  6802. }
  6803. else if (aru_vol == 20) {
  6804. mes "[Colonel Vito]";
  6805. mes "The more you train,";
  6806. mes "the stronger you become.";
  6807. mes "As you grow stronger, so";
  6808. mes "does Freya's holy troops.";
  6809. mes "Train everyday, and don't";
  6810. mes "you ever slack off!";
  6811. next;
  6812. mes "["+strcharinfo(0)+"]";
  6813. mes "Yes, sir!";
  6814. next;
  6815. mes "[Colonel Vito]";
  6816. mes "That is all for your";
  6817. mes "training. If you have";
  6818. mes "any questions about camp";
  6819. mes "life, go ask Sahedi right";
  6820. mes "outside this building.";
  6821. mes "You are dismissed.";
  6822. next;
  6823. mes "["+strcharinfo(0)+"]";
  6824. mes "(^333333Well... I think";
  6825. mes "I will go back to";
  6826. mes "Sahedi. Hopefully,";
  6827. mes "he'll think of me as";
  6828. mes "a geological researcher";
  6829. mes "instead of as a soldier.^000000)";
  6830. set aru_vol,21;
  6831. close;
  6832. }
  6833. mes "[Colonel Vito]";
  6834. mes "We must be ever";
  6835. mes "vigilant in our training.";
  6836. mes "You can never know when";
  6837. mes "Freya will call on us to fight!";
  6838. close;
  6839. }
  6840. thor_camp,141,62,0 script #vol_study1::VeinsWarp -1,3,3,{
  6841. OnTouch:
  6842. //OnTouch2:
  6843. if ((aru_vol >= 14 && aru_vol <= 16) || (aru_vol == 19)) {
  6844. warp "thor_camp",156,67;
  6845. }
  6846. end;
  6847. }
  6848. thor_camp,172,72,0 duplicate(VeinsWarp) #vol_study2 -1,3,3
  6849. thor_camp,172,38,0 duplicate(VeinsWarp) #vol_study3 -1,3,3
  6850. thor_camp,172,132,0 script #sita_vol -1,3,3,{
  6851. OnTouch:
  6852. //OnTouch2:
  6853. if (aru_vol == 21) {
  6854. mes "^3355FFThere's a stream of";
  6855. mes "magma running down";
  6856. mes "through a path under";
  6857. mes "the barbed wires.^000000";
  6858. next;
  6859. mes "^3355FFYou can hear the faint";
  6860. mes "sound of hammering, as if";
  6861. mes "iron was being manufactured";
  6862. mes "from deep underground.^000000";
  6863. set aru_vol,22;
  6864. close;
  6865. }
  6866. end;
  6867. }
  6868. thor_camp,148,310,0 script #buki_vol -1,5,5,{
  6869. OnTouch:
  6870. //OnTouch2:
  6871. if (aru_vol == 22) {
  6872. mes "^3355FFPeople are carrying";
  6873. mes "many heavy wooden boxes";
  6874. mes "imprinted with the stamp";
  6875. mes "of the Schwaltzvalt Republic.";
  6876. mes "These must contain military";
  6877. mes "supplies for the camp.^000000";
  6878. next;
  6879. mes "["+strcharinfo(0)+"]";
  6880. mes "I should go back";
  6881. mes "to Sahedi now.";
  6882. set aru_vol,23;
  6883. close;
  6884. }
  6885. end;
  6886. }
  6887. thor_camp,124,314,1 script Soldier#vol1 939,{
  6888. mes "[Thor Volcano Camp Soldier]";
  6889. mes "Freya, I'm so exhausted!";
  6890. mes "I'm starving to death too!";
  6891. mes "When will we get more rations?";
  6892. close;
  6893. }
  6894. thor_camp,134,309,5 script Soldier#vol2 939,{
  6895. mes "[Thor Volcano Camp Soldier]";
  6896. mes "I hear we'll be eating";
  6897. mes "chicken salad, fried chicken,";
  6898. mes "and Kunlun style chicken for";
  6899. mes "dinner tonight! I wonder who";
  6900. mes "was rich enough to donate";
  6901. mes "so much chicken to us?";
  6902. next;
  6903. mes "[Thor Volcano Camp Soldier]";
  6904. mes "Heheh...";
  6905. mes "I can't wait for dinner!";
  6906. close;
  6907. }
  6908. thor_camp,109,167,3 script Control Panel#vol 111,{
  6909. if (aru_vol == 17) {
  6910. mes "^3355FFThis control panel";
  6911. mes "controls the main power";
  6912. mes "resources for the Thor";
  6913. mes "Volcano camp, helping it";
  6914. mes "run its operations smoothly";
  6915. mes "under the ground.";
  6916. next;
  6917. mes "["+strcharinfo(0)+"]";
  6918. mes "All these pipes with molten";
  6919. mes "rock flowing through them...";
  6920. mes "I guess their heat is what";
  6921. mes "powers this camp. That's";
  6922. mes "actually a smart idea~";
  6923. next;
  6924. mes "^3355FFThe control panel emits";
  6925. mes "faint mechanical noises";
  6926. mes "and seems to be running";
  6927. mes "pretty smoothly. Everything";
  6928. mes "looks to be in working order.";
  6929. next;
  6930. mes "["+strcharinfo(0)+"]";
  6931. mes "No problems here.";
  6932. mes "I guess I can go";
  6933. mes "back to that colonel.";
  6934. set aru_vol,18;
  6935. close;
  6936. }
  6937. end;
  6938. }
  6939. thor_camp,150,65,3 script Dummy#1::VeinsDummy 111,{
  6940. if (aru_vol == 19) {
  6941. mes "^3355FFIt's a training dummy";
  6942. mes "that looks like it can";
  6943. mes "take a beating. Its chest";
  6944. mes "is marked with the emblem";
  6945. mes "of the Rune-Midgarts Kingdom.^000000";
  6946. next;
  6947. mes "["+strcharinfo(0)+"]";
  6948. mes "Wow...";
  6949. mes "They really hate the";
  6950. mes "Rune-Midgarts Kingdom...";
  6951. mes "(^333333Technically, I shouldn't";
  6952. mes "be doing this. Isn't this";
  6953. mes "considered treason?^000000)";
  6954. next;
  6955. mes "[Colonel Vito]";
  6956. mes "I can't hear you,";
  6957. mes "soldier! Make your";
  6958. mes "voice loud and clear!";
  6959. mes "Now... Execute attack!";
  6960. next;
  6961. mes "["+strcharinfo(0)+"]";
  6962. mes "Yes, sir!";
  6963. next;
  6964. specialeffect EF_HIT2;
  6965. mes "["+strcharinfo(0)+"]";
  6966. mes "One!";
  6967. next;
  6968. specialeffect EF_HIT2;
  6969. mes "["+strcharinfo(0)+"]";
  6970. mes "Two!";
  6971. next;
  6972. specialeffect EF_HIT2;
  6973. mes "["+strcharinfo(0)+"]";
  6974. mes "Three!!";
  6975. next;
  6976. specialeffect EF_HIT2;
  6977. mes "["+strcharinfo(0)+"]";
  6978. mes "Four!";
  6979. next;
  6980. specialeffect EF_HIT2;
  6981. mes "["+strcharinfo(0)+"]";
  6982. mes "Five!!";
  6983. next;
  6984. specialeffect EF_HIT2;
  6985. mes "["+strcharinfo(0)+"]";
  6986. mes "Six!!";
  6987. next;
  6988. specialeffect EF_HIT2;
  6989. mes "["+strcharinfo(0)+"]";
  6990. mes "Seven!!";
  6991. next;
  6992. specialeffect EF_HIT2;
  6993. mes "["+strcharinfo(0)+"]";
  6994. mes "Eight!!";
  6995. next;
  6996. specialeffect EF_HIT2;
  6997. mes "["+strcharinfo(0)+"]";
  6998. mes "Nine!";
  6999. next;
  7000. specialeffect EF_HIT2;
  7001. mes "["+strcharinfo(0)+"]";
  7002. mes "Ten!";
  7003. set aru_vol,20;
  7004. close;
  7005. }
  7006. else if (aru_vol == 20) {
  7007. mes "^3355FF*THUD*^000000";
  7008. specialeffect EF_HIT2;
  7009. emotion e_omg,1;
  7010. next;
  7011. mes "[Colonel Vito]";
  7012. mes "Soldier...";
  7013. mes "How many times";
  7014. mes "did I order you to";
  7015. mes "chop the dummy?";
  7016. next;
  7017. mes "["+strcharinfo(0)+"]";
  7018. mes "10 times, sir!";
  7019. next;
  7020. mes "[Colonel Vito]";
  7021. mes "And how many times";
  7022. mes "did you actually";
  7023. mes "chop the dummy?";
  7024. next;
  7025. mes "["+strcharinfo(0)+"]";
  7026. mes "11 times, sir!";
  7027. next;
  7028. mes "[Colonel Vito]";
  7029. mes "Unacceptable!";
  7030. mes "Listen to your orders";
  7031. mes "this time, and do it";
  7032. mes "again properly!";
  7033. set aru_vol,19;
  7034. close;
  7035. }
  7036. }
  7037. thor_camp,156,65,3 duplicate(VeinsDummy) Dummy#2 111
  7038. thor_camp,162,65,3 duplicate(VeinsDummy) Dummy#3 111
  7039. thor_camp,150,57,3 duplicate(VeinsDummy) Dummy#4 111
  7040. thor_camp,156,57,3 duplicate(VeinsDummy) Dummy#5 111
  7041. thor_camp,162,57,3 duplicate(VeinsDummy) Dummy#6 111
  7042. thor_camp,248,104,5 script Aitra#vol 939,{
  7043. OnInit:
  7044. disablenpc "Aitra#vol";
  7045. end;
  7046. }
  7047. thor_camp,49,97,3 script High Priest#vol 933,{
  7048. mes "^3355FFYou'd better not";
  7049. mes "do anything too";
  7050. mes "conspicuous in";
  7051. mes "front of him.^000000";
  7052. close;
  7053. }
  7054. thor_camp,49,122,1 script Thor Volcano Soldier#vo1 939,{
  7055. mes "^3355FFYou'd better not";
  7056. mes "do anything too";
  7057. mes "conspicuous in";
  7058. mes "front of him.^000000";
  7059. close;
  7060. }
  7061. thor_camp,31,93,1 script Thor Volcano Soldier#vo2 939,{
  7062. mes "^3355FFYou'd better not";
  7063. mes "do anything too";
  7064. mes "conspicuous in";
  7065. mes "front of him.^000000";
  7066. close;
  7067. }
  7068. thor_camp,59,79,1 script Thor Volcano Soldier#vo3 939,{
  7069. mes "^3355FFYou'd better not";
  7070. mes "do anything too";
  7071. mes "conspicuous in";
  7072. mes "front of him.^000000";
  7073. close;
  7074. }
  7075. thor_camp,143,114,1 script Thor Volcano Soldier#vo4 939,{
  7076. emotion e_sob;
  7077. mes "[Soldier]";
  7078. mes "Oh Freya...";
  7079. mes "Bless this Old Blue Box";
  7080. mes "so that I don't get anything";
  7081. mes "lame again. I am so tired";
  7082. mes "of getting arrows from these...";
  7083. close;
  7084. }
  7085. thor_camp,206,92,3 script Thor Volcano Soldier#vo5 939,{
  7086. mes "[Soldier]";
  7087. mes "Ah, time to";
  7088. mes "go to work.";
  7089. next;
  7090. mes "[Soldier]";
  7091. mes "What th-?!";
  7092. mes "Something smells";
  7093. mes "like sweaty socks that";
  7094. mes "haven't been washed!";
  7095. close;
  7096. }
  7097. thor_camp,201,321,1 script Thor Volcano Soldier#vo6 939,{
  7098. mes "[Soldier]";
  7099. mes "Yo-ho! Yo-ho!";
  7100. close;
  7101. }
  7102. thor_camp,196,315,7 script Thor Volcano Soldier#vo7 939,{
  7103. mes "[Soldier]";
  7104. mes "I guess I need to go";
  7105. mes "on Guardian polishing";
  7106. mes "duty. Those things are";
  7107. mes "so huge, and I gotta";
  7108. mes "clean up about twenty...";
  7109. close;
  7110. }
  7111. thor_camp,181,231,0 script Guardian#vol_7 111,{
  7112. mes "^3355FFThere are many guardians";
  7113. mes "here in different stages";
  7114. mes "of disassembly. It looks";
  7115. mes "like they're all in the";
  7116. mes "middle of being repaired.^000000";
  7117. close;
  7118. }
  7119. thor_camp,98,213,5 script Thor Volcano Soldier#vo8 939,{
  7120. mes "[Soldier]";
  7121. mes "Aren't you the one from";
  7122. mes "the geological research";
  7123. mes "center? There's nothing";
  7124. mes "for you here, we're just";
  7125. mes "performing maintenance";
  7126. mes "on these guardians.";
  7127. close;
  7128. }
  7129. thor_camp,98,213,5 script Thor Volcano Soldier#vo9 939,{
  7130. mes "[Soldier]";
  7131. mes "Why am I always";
  7132. mes "stationed here?!";
  7133. mes "No one ever comes";
  7134. mes "here! Nobody!";
  7135. close;
  7136. }
  7137. thor_v02,143,78,0 script #totcamp 45,2,2,{
  7138. OnTouch:
  7139. if (rachel_camel < 24) {
  7140. warp "que_thor",65,55;
  7141. end;
  7142. }
  7143. warp "que_thor",182,55;
  7144. end;
  7145. }
  7146. que_thor,69,56,0 script #tov_1 45,2,2,{
  7147. OnTouch:
  7148. warp "thor_v02",146,84;
  7149. end;
  7150. }
  7151. que_thor,187,56,0 script #tov_2 45,2,2,{
  7152. OnTouch:
  7153. warp "thor_v02",146,84;
  7154. end;
  7155. }
  7156. thor_camp,62,98,0 script #volbq -1,5,5,{
  7157. OnTouch:
  7158. //OnTouch2:
  7159. mes "^3355FFThere is an old man";
  7160. mes "in high priest robes";
  7161. mes "in front of you.^000000";
  7162. next;
  7163. mes "^3355FFYou'd better not";
  7164. mes "do anything too";
  7165. mes "conspicuous in";
  7166. mes "front of him.^000000";
  7167. close;
  7168. }
  7169. thor_camp,246,191,3 script Guard#goto 939,{
  7170. mes "[Guard]";
  7171. mes "What now?";
  7172. mes "Can't you see I'm busy?";
  7173. next;
  7174. if (select("Let me go out.:I'm sorry.") == 1) {
  7175. mes "[Guard]";
  7176. mes "Hurry up, and get out!";
  7177. close2;
  7178. warp "que_thor",145,60;
  7179. end;
  7180. }
  7181. mes "[Guard]";
  7182. mes "If you're sorry,";
  7183. mes "stop bugging me!";
  7184. close;
  7185. }
  7186. veins,302,166,0 script #whoau -1,2,2,{
  7187. OnTouch:
  7188. mes "[House Owner]";
  7189. mes "Wh-who the hell";
  7190. mes "are you? Honey!";
  7191. mes "There's this...";
  7192. mes "person in our home!";
  7193. next;
  7194. mes "^3355FFHubbie never came.";
  7195. mes "Nobody messes with";
  7196. mes ""+strcharinfo(0)+". Nobody.^000000";
  7197. close;
  7198. }
  7199. ve_in,235,135,5 script Bartender#ve 947,{
  7200. mes "[Bartender]";
  7201. mes "Welcome to our tavern.";
  7202. mes "Please, have a seat.";
  7203. mes "Let me bring you a";
  7204. mes "glass of ice water first.";
  7205. close;
  7206. }
  7207. ve_in,237,131,1 script Female Customer#ve1 940,{
  7208. mes "[Female Customer]";
  7209. mes "Bartender, aren't any of";
  7210. mes "your regulars nice young";
  7211. mes "men? You know, I've been";
  7212. mes "pretty lonely lately...";
  7213. next;
  7214. if (Sex == 0) {
  7215. mes "[Bartender]";
  7216. mes "Haha, well,";
  7217. mes "I'm not so sure..";
  7218. next;
  7219. mes "[Bartender]";
  7220. mes "How about... me?";
  7221. next;
  7222. mes "[Female Customer]";
  7223. mes "Hmpf...";
  7224. next;
  7225. mes "[Bartender]";
  7226. mes "Oh, come on!";
  7227. mes "I was kidding~";
  7228. emotion e_sob;
  7229. close;
  7230. }
  7231. mes "[Bartender]";
  7232. mes "Haha, well,";
  7233. mes "I'm not so sure..";
  7234. mes "What about this nice";
  7235. mes "young adventurer here?";
  7236. next;
  7237. mes "["+strcharinfo(0)+"]";
  7238. mes "Meee?";
  7239. emotion 19,1;
  7240. next;
  7241. mes "[Female Customer]";
  7242. mes "Mmm...";
  7243. mes "Not my style.";
  7244. emotion e_dots,1;
  7245. close;
  7246. }
  7247. ve_in,239,107,1 script Male Customer#ve2 943,{
  7248. mes "[Male Customer]";
  7249. mes "How can that ugly old";
  7250. mes "man have girls hanging";
  7251. mes "off his arms when I just";
  7252. mes "got dumped by my girlfriend";
  7253. mes "and ditched by all my friends?!";
  7254. next;
  7255. mes "[Male Customer]";
  7256. mes "Oh, alcohol...";
  7257. mes "Right now, you're";
  7258. mes "my only friend in";
  7259. mes "all the world...";
  7260. mes "A toast... To drinking!";
  7261. specialeffect EF_ASPERSIO;
  7262. close;
  7263. }