map_zones.yml 140 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925
  1. # This file is a part of rAthena.
  2. # Copyright(C) 2024 rAthena Development Team
  3. # https://rathena.org - https://github.com/rathena
  4. #
  5. # This program is free software: you can redistribute it and/or modify
  6. # it under the terms of the GNU General Public License as published by
  7. # the Free Software Foundation, either version 3 of the License, or
  8. # (at your option) any later version.
  9. #
  10. # This program is distributed in the hope that it will be useful,
  11. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. # GNU General Public License for more details.
  14. #
  15. # You should have received a copy of the GNU General Public License
  16. # along with this program. If not, see <http:#www.gnu.org/licenses/>.
  17. #
  18. ###########################################################################
  19. # Map Zone Database
  20. ###########################################################################
  21. #
  22. # Map Zone Settings
  23. #
  24. ###########################################################################
  25. # - Id Zone ID.
  26. # DisabledCommands: List of disabled @commands. (Default: null)
  27. # DisabledSkills: List of disabled skills. (Default: null)
  28. # DisabledItems: List of disabled items. (Default: null)
  29. # DisabledStatuses: List of disabled statuses. (Default: null)
  30. # RestrictedJobs: List of restricted jobs from entering zone. (Default: null)
  31. # Maps: List of maps to apply the zone to.
  32. # Mapflags: List of mapflags. (Default: null)
  33. # - Flag Mapflag name.
  34. # Value Value assigned to mapflag. (Default: true)
  35. ###########################################################################
  36. Header:
  37. Type: MAP_ZONES
  38. Version: 1
  39. Body:
  40. - Id: Village
  41. DisabledSkills:
  42. - Skill: AM_CANNIBALIZE
  43. Pc: 100
  44. - Skill: AM_SPHEREMINE
  45. Pc: 100
  46. - Skill: CR_CULTIVATION
  47. Pc: 100
  48. - Skill: WZ_ICEWALL
  49. Pc: 100
  50. - Skill: BS_GREED
  51. Pc: 100
  52. - Skill: BD_ETERNALCHAOS
  53. Pc: 100
  54. - Skill: BD_ROKISWEIL
  55. Pc: 100
  56. - Skill: BA_DISSONANCE
  57. Pc: 100
  58. - Skill: DC_UGLYDANCE
  59. Pc: 100
  60. - Skill: DC_DONTFORGETME
  61. Pc: 100
  62. - Skill: CG_MOONLIT
  63. Pc: 100
  64. - Skill: WM_GLOOMYDAY
  65. Pc: 100
  66. - Skill: WM_SOUND_OF_DESTRUCTION
  67. Pc: 100
  68. - Skill: WM_SATURDAY_NIGHT_FEVER
  69. Pc: 100
  70. - Skill: WM_MELODYOFSINK
  71. Pc: 100
  72. - Skill: WM_BEYOND_OF_WARCRY
  73. Pc: 100
  74. - Skill: SO_ARRULLO
  75. Pc: 100
  76. - Skill: SC_MANHOLE
  77. Pc: 100
  78. - Skill: GN_WALLOFTHORN
  79. Pc: 100
  80. - Skill: WM_POEMOFNETHERWORLD
  81. Pc: 100
  82. - Skill: SC_BLOODYLUST
  83. Pc: 100
  84. - Skill: NC_MAGNETICFIELD
  85. Pc: 100
  86. - Skill: SC_CHAOSPANIC
  87. Pc: 100
  88. - Skill: MI_HARMONIZE
  89. Pc: 100
  90. - Skill: TR_ROKI_CAPRICCIO
  91. Pc: 100
  92. - Skill: TR_NIPELHEIM_REQUIEM
  93. Pc: 100
  94. - Skill: EM_ACTIVITY_BURN
  95. Pc: 100
  96. DisabledItems:
  97. Azoth: 100
  98. E_Greed_Scroll: 100
  99. F_Greed_Scroll: 100
  100. Greed_Scroll: 100
  101. Greed_Scroll_C: 100
  102. Hylozoist_Card: 100
  103. Runstone_Crush: 100
  104. Runstone_Millennium: 100
  105. Runstone_Storm: 100
  106. Siege_Arrow_A: 100
  107. Siege_Arrow_S: 100
  108. Siege_Boots: 100
  109. Siege_Greave: 100
  110. Siege_Manteau: 100
  111. Siege_Muffler: 100
  112. Siege_Plate: 100
  113. Siege_Robe: 100
  114. Siege_Shoes: 100
  115. Siege_Suits: 100
  116. TE_Ring_Of_Defiance: 100
  117. TE_Ring_Of_Protection: 100
  118. TE_Ring_Of_Rage: 100
  119. TE_White_Potion: 100
  120. TE_White_Slim_Potion: 100
  121. TE_Woe_Axe: 100
  122. TE_Woe_Bone_Helm: 100
  123. TE_Woe_Book: 100
  124. TE_Woe_Boots: 100
  125. TE_Woe_Bow: 100
  126. TE_Woe_Buckler: 100
  127. TE_Woe_Cap: 100
  128. TE_Woe_Chain_Mail: 100
  129. TE_Woe_Coat: 100
  130. TE_Woe_Fist: 100
  131. TE_Woe_Gatling: 100
  132. TE_Woe_Grenade: 100
  133. TE_Woe_Guitar: 100
  134. TE_Woe_Huuma: 100
  135. TE_Woe_Katar: 100
  136. TE_Woe_Knife: 100
  137. TE_Woe_Lance: 100
  138. TE_Woe_Mace: 100
  139. TE_Woe_Mage_Coat: 100
  140. TE_Woe_Magic_Eyes: 100
  141. TE_Woe_Magic_Guard: 100
  142. TE_Woe_Magic_Manteau: 100
  143. TE_Woe_Magic_Sandal: 100
  144. TE_Woe_Manteau: 100
  145. TE_Woe_Muffler: 100
  146. TE_Woe_Pike: 100
  147. TE_Woe_Pistol: 100
  148. TE_Woe_Rifle: 100
  149. TE_Woe_Rope: 100
  150. TE_Woe_Shield: 100
  151. TE_Woe_Shoes: 100
  152. TE_Woe_Shotgun: 100
  153. TE_Woe_Staff: 100
  154. TE_Woe_Sword: 100
  155. TE_Woe_Two_Handed_Axe: 100
  156. TE_Woe_Two_Hand_Staff: 100
  157. TE_Woe_Two_Hand_Sword: 100
  158. Treasure_Box_Scroll: 100
  159. Velum_Arbalest: 100
  160. Velum_Arc_Wand: 100
  161. Velum_Bible: 100
  162. Velum_Buster: 100
  163. Velum_Claw: 100
  164. Velum_Claymore: 100
  165. Velum_CrossBow: 100
  166. Velum_Damascus: 100
  167. Velum_Encyclopedia: 100
  168. Velum_Flail: 100
  169. Velum_Glaive: 100
  170. Velum_Guillotine: 100
  171. Velum_Jamadhar: 100
  172. Velum_Katzbalger: 100
  173. Velum_Scare: 100
  174. Velum_Spear: 100
  175. Velum_Stunner: 100
  176. Maps:
  177. alberta: true
  178. aldebaran: true
  179. amatsu: true
  180. ayothaya: true
  181. ba_maison: true
  182. brasilis: true
  183. comodo: true
  184. dewata: true
  185. eclage: true
  186. einbech: true
  187. einbroch: true
  188. evt_bomb: true
  189. geffen: true
  190. gonryun: true
  191. harboro1: true
  192. hero_lb: true
  193. hugel: true
  194. icecastle: true
  195. izlude: true
  196. izlude_a: true
  197. izlude_b: true
  198. izlude_c: true
  199. izlude_d: true
  200. jor_nest: true
  201. jor_sanct: true
  202. lasagna: true
  203. louyang: true
  204. ma_scene01: true
  205. malangdo: true
  206. malaya: true
  207. mid_camp: true
  208. monk_in: true
  209. mora: true
  210. morocc: true
  211. moscovia: true
  212. nameless_i: true
  213. payon: true
  214. prontera: true
  215. prt_monk: true
  216. ra_temple: true
  217. rachel: true
  218. sp_cor: true
  219. t_garden: true
  220. te_alde_gld: true
  221. tra_fild: true
  222. umbala: true
  223. veins: true
  224. wolfvill: true
  225. x_lhz: true
  226. x_prt: true
  227. x_ra: true
  228. xmas: true
  229. yuno: true
  230. Mapflags:
  231. - Flag: NightEnabled
  232. - Flag: NoBranch
  233. - Flag: NoPenalty
  234. - Flag: PrivateAirship_Destination
  235. - Flag: PrivateAirship_Source
  236. - Flag: Reset
  237. - Id: Village_In
  238. DisabledSkills:
  239. - Skill: AM_CANNIBALIZE
  240. Pc: 100
  241. - Skill: AM_SPHEREMINE
  242. Pc: 100
  243. - Skill: CR_CULTIVATION
  244. Pc: 100
  245. - Skill: WZ_ICEWALL
  246. Pc: 100
  247. - Skill: BD_ETERNALCHAOS
  248. Pc: 100
  249. - Skill: BD_ROKISWEIL
  250. Pc: 100
  251. - Skill: BA_DISSONANCE
  252. Pc: 100
  253. - Skill: DC_UGLYDANCE
  254. Pc: 100
  255. - Skill: DC_DONTFORGETME
  256. Pc: 100
  257. - Skill: WM_GLOOMYDAY
  258. Pc: 100
  259. - Skill: WM_SOUND_OF_DESTRUCTION
  260. Pc: 100
  261. - Skill: WM_SATURDAY_NIGHT_FEVER
  262. Pc: 100
  263. - Skill: WM_MELODYOFSINK
  264. Pc: 100
  265. - Skill: WM_BEYOND_OF_WARCRY
  266. Pc: 100
  267. - Skill: SO_ARRULLO
  268. Pc: 100
  269. - Skill: SC_DIMENSIONDOOR
  270. Pc: 100
  271. - Skill: SC_MANHOLE
  272. Pc: 100
  273. - Skill: SC_BLOODYLUST
  274. Pc: 100
  275. - Skill: MI_HARMONIZE
  276. Pc: 100
  277. - Skill: SU_LOPE
  278. Pc: 100
  279. - Skill: AB_CONVENIO
  280. Pc: 100
  281. - Skill: TR_ROKI_CAPRICCIO
  282. Pc: 100
  283. - Skill: TR_NIPELHEIM_REQUIEM
  284. Pc: 100
  285. - Skill: EM_ACTIVITY_BURN
  286. Pc: 100
  287. DisabledItems:
  288. #Accessory_of_Ascetic: 100
  289. Anopheles_Card: 100
  290. Armaia_Card: 100
  291. "Arquien's_Necklace": 100
  292. Azoth: 100
  293. Blazzer_Card: 100
  294. #Butterfly_Hairpin: 100
  295. Bogy_Horn: 100
  296. Cactus_Hat: 100
  297. #Carnation_Garlands: 100
  298. Cleaver: 100
  299. #Comp_Wing_Of_Fly: 100
  300. Cow_Hat: 100
  301. #Cps_Fly_Wing: 100
  302. Cramp_Card: 100
  303. C_Devil_Whisper: 100
  304. C_Iceflake_Hat: 100
  305. C_Wing_Of_Fly: 100
  306. Dark_Snake_Lord_Hat: 100
  307. Devil_Whisper: 100
  308. Dragon_Egg_Card: 100
  309. Dragon_Wing: 100
  310. Dryad_Card: 100
  311. Event_Pierrot_Nose: 100
  312. Evil_Cloud_Hermit_Card: 100
  313. E_Giant_Fly_Wing: 100
  314. Fish_In_Mouth: 100
  315. Forceps_Hairpin: 100
  316. Gaia_Sword: 100
  317. Galapago_Cap: 100
  318. Galapago_Card: 100
  319. Gargoyle_Card: 100
  320. Garuda_Hat: 100
  321. General_Helmet: 100
  322. Giant_Fly_Wing: 100
  323. Giant_Honet_Card: 100
  324. Gloomy_Pumpkin_Hat: 100
  325. Green_Iguana_Card: 100
  326. Gremlin_Card: 100
  327. Happy_Balloon_J: 100
  328. Hellomother_Hat: 100
  329. Honeybee_Hat: 100
  330. Hunting_Spear: 100
  331. Hylozoist_Card: 100
  332. Im_Egg_Shell_Hat: 100
  333. Japan_Winecup: 100
  334. Jewel_Sword: 100
  335. Knocker_Card: 100
  336. Lady_Tanee_Card: 100
  337. Lady_Tanee_Doll: 100
  338. Leaf_Cat_Card: 100
  339. Leib_Olmai_Card: 100
  340. Li_Me_Mang_Ryang_Card: 100
  341. Lucky_Day: 100
  342. Lunakaligo: 100
  343. "Mama's_Knife": 100
  344. Marin_Card: 100
  345. Mimic_Card: 100
  346. Mini_Tree: 100
  347. Minus_Agi: 100
  348. Minus_Dex: 100
  349. Minus_Int: 100
  350. Minus_Luk: 100
  351. Minus_Str: 100
  352. Minus_Vit: 100
  353. Mystcase_Card: 100
  354. Neuralizer: 100
  355. N_Fly_Wing: 100
  356. #N_Fly_Wing2: 100
  357. Orc_Archer_Bow: 100
  358. Orc_Archer_Card: 100
  359. Pig_Moneybox: 100
  360. Pinguicula_Dark_Card: 100
  361. Plasma_Card: 100
  362. Pumpkin_Hat_: 100
  363. Q_Scaraba_Card: 100
  364. Raydric_Archer_Card: 100
  365. Red_Lantern: 100
  366. Red_Square_Bag: 100
  367. Red_White_Hat: 100
  368. Remover_Hat: 100
  369. Retribution_Card: 100
  370. Ribbon_Chef_Hat: 100
  371. Rice_Cake_Boy_Card: 100
  372. Runstone_Crush: 100
  373. Runstone_Millennium: 100
  374. Runstone_Storm: 100
  375. Sageworm_Card: 100
  376. Santa_Hat_1: 100
  377. Sasimi: 100
  378. Scarlet_Rose: 100
  379. Scr_MT_Robots_Card: 100
  380. Sealed_Lady_Tanee_Card: 100
  381. See_Otter_Card: 100
  382. Sg_Blue_Potion_Box: 100
  383. Sg_Violet_Potion_Box: 100
  384. Sg_White_Potion_Box: 100
  385. Siege_Arrow_A: 100
  386. Siege_Arrow_S: 100
  387. Siege_Boots: 100
  388. Siege_Greave: 100
  389. Siege_Manteau: 100
  390. Siege_Muffler: 100
  391. Siege_Plate: 100
  392. Siege_Robe: 100
  393. Siege_Shoes: 100
  394. Siege_Suits: 100
  395. Sleeper_Card: 100
  396. Snowier_Card: 100
  397. Snowman_Hat: 100
  398. Spare_Card: 100
  399. Spring_Rabbit_Card: 100
  400. St_Pat_Hat: 100
  401. Starving_Fish_Hat: 100
  402. Stem_Worm_Card: 100
  403. Stretched_Nose_M: 100
  404. Tengu_Card: 100
  405. TE_Ring_Of_Defiance: 100
  406. TE_Ring_Of_Protection: 100
  407. TE_Ring_Of_Rage: 100
  408. TE_White_Potion: 100
  409. TE_White_Slim_Potion: 100
  410. TE_Woe_Axe: 100
  411. TE_Woe_Bone_Helm: 100
  412. TE_Woe_Book: 100
  413. TE_Woe_Boots: 100
  414. TE_Woe_Bow: 100
  415. TE_Woe_Buckler: 100
  416. TE_Woe_Cap: 100
  417. TE_Woe_Chain_Mail: 100
  418. TE_Woe_Coat: 100
  419. TE_Woe_Fist: 100
  420. TE_Woe_Gatling: 100
  421. TE_Woe_Grenade: 100
  422. TE_Woe_Guitar: 100
  423. TE_Woe_Huuma: 100
  424. TE_Woe_Katar: 100
  425. TE_Woe_Knife: 100
  426. TE_Woe_Lance: 100
  427. TE_Woe_Mace: 100
  428. TE_Woe_Mage_Coat: 100
  429. TE_Woe_Magic_Eyes: 100
  430. TE_Woe_Magic_Guard: 100
  431. TE_Woe_Magic_Manteau: 100
  432. TE_Woe_Magic_Sandal: 100
  433. TE_Woe_Manteau: 100
  434. TE_Woe_Muffler: 100
  435. TE_Woe_Pike: 100
  436. TE_Woe_Pistol: 100
  437. TE_Woe_Rifle: 100
  438. TE_Woe_Rope: 100
  439. TE_Woe_Shield: 100
  440. TE_Woe_Shoes: 100
  441. TE_Woe_Shotgun: 100
  442. TE_Woe_Staff: 100
  443. TE_Woe_Sword: 100
  444. TE_Woe_Two_Handed_Axe: 100
  445. TE_Woe_Two_Hand_Staff: 100
  446. TE_Woe_Two_Hand_Sword: 100
  447. Toast_C: 100
  448. Treasure_Box_Scroll: 100
  449. Tw_Rice_Ball: 100
  450. Umbala_Spirit: 100
  451. Uni_Catalog_Bz: 100
  452. Velum_Arbalest: 100
  453. Velum_Arc_Wand: 100
  454. Velum_Bible: 100
  455. Velum_Buster: 100
  456. Velum_Claw: 100
  457. Velum_Claymore: 100
  458. Velum_CrossBow: 100
  459. Velum_Damascus: 100
  460. Velum_Encyclopedia: 100
  461. Velum_Flail: 100
  462. Velum_Glaive: 100
  463. Velum_Guillotine: 100
  464. Velum_Jamadhar: 100
  465. Velum_Katzbalger: 100
  466. Velum_Scare: 100
  467. Velum_Spear: 100
  468. Velum_Stunner: 100
  469. Vending_Search_Scroll2: 100
  470. Vending_Search_Scroll: 100
  471. Weird_Pumpkin_Hat: 100
  472. Wild_Ginseng_Card: 100
  473. Wing_Of_Fly: 100
  474. #Wing_Of_Fly_TW: 100
  475. Woe_Blue_Potion: 100
  476. Woe_Violet_Potion: 100
  477. Woe_White_Potion: 100
  478. Wraith_Card: 100
  479. Zeny_Knife: 100
  480. Maps:
  481. air_if: true
  482. airplane2: true
  483. airplane: true
  484. airplane_01: true
  485. airport: true
  486. alberta_in: true
  487. alde_alche: true
  488. aldeba_in: true
  489. ama_in01: true
  490. ama_in02: true
  491. arena_room: true
  492. auction_01: true
  493. auction_02: true
  494. ayo_in01: true
  495. ayo_in02: true
  496. ba_in01: true
  497. bat_room: true
  498. bra_in01: true
  499. cave: true
  500. cmd_in01: true
  501. cmd_in02: true
  502. conch_in: true
  503. dali02: true
  504. dali: true
  505. dew_in01: true
  506. dic_in01: true
  507. ecl_hub01: true
  508. ecl_in01: true
  509. ecl_in02: true
  510. ecl_in03: true
  511. ecl_in04: true
  512. ecl_tdun04: true
  513. ein_in01: true
  514. gef_tower: true
  515. geffen_in: true
  516. gon_in: true
  517. grademk: true
  518. guild_vs2: true
  519. har_in01: true
  520. hu_in01: true
  521. icas_in2: true
  522. icas_in: true
  523. icecastle: true
  524. in_hunter: true
  525. in_orcs01: true
  526. in_rogue: true
  527. int_land01: true
  528. int_land02: true
  529. int_land03: true
  530. int_land04: true
  531. int_land: true
  532. itemmall: true
  533. iz_ac01: true
  534. iz_ac01_a: true
  535. iz_ac01_b: true
  536. iz_ac01_c: true
  537. iz_ac01_d: true
  538. iz_ac02: true
  539. iz_ac02_a: true
  540. iz_ac02_b: true
  541. iz_ac02_c: true
  542. iz_ac02_d: true
  543. iz_ng01: true
  544. izlude_in: true
  545. jawaii: true
  546. jawaii_in: true
  547. job3_gen01: true
  548. jor_safty1: true
  549. jor_safty2: true
  550. kh_mansion: true
  551. kh_rossi: true
  552. kh_school: true
  553. kh_vila: true
  554. lasa_in01: true
  555. lhz_airport: true
  556. lhz_in01: true
  557. lhz_in02: true
  558. lhz_in03: true
  559. lighthalzen: true
  560. lou_in01: true
  561. lou_in02: true
  562. ma_in01: true
  563. mal_in01: true
  564. mal_in02: true
  565. man_in01: true
  566. memohall: true
  567. mid_campin: true
  568. moc_castle: true
  569. moc_para01: true
  570. morocc_in: true
  571. nameless_in: true
  572. new_1-3: true
  573. new_2-3: true
  574. new_3-3: true
  575. new_4-3: true
  576. new_5-3: true
  577. nif_in: true
  578. nyd_dun02: true
  579. ordeal_1-1: true
  580. ordeal_1-2: true
  581. ordeal_2-1: true
  582. ordeal_2-2: true
  583. ordeal_3-1: true
  584. ordeal_3-2: true
  585. paramk: true
  586. pay_arche: true
  587. payon_in01: true
  588. payon_in02: true
  589. payon_in03: true
  590. prt_are01: true
  591. prt_cas: true
  592. prt_cas_q: true
  593. prt_castle: true
  594. prt_church: true
  595. prt_elib: true
  596. prt_evt_in: true
  597. prt_in: true
  598. prt_lib: true
  599. prt_lib_q: true
  600. prt_pri00: true
  601. pub_cat: true
  602. que_house_s: true
  603. que_ng: true
  604. que_rachel: true
  605. que_temsky: true
  606. que_thr: true
  607. ra_in01: true
  608. ra_temin: true
  609. ra_temsky: true
  610. rag_fes: true
  611. rag_fes_a: true
  612. rebel_in: true
  613. rgsr_in: true
  614. s_atelier: true
  615. sch_lab: true
  616. sec_in01: true
  617. spl_in01: true
  618. spl_in02: true
  619. star_in: true
  620. turbo_room: true
  621. um_in: true
  622. un_bk_q: true
  623. ve_in02: true
  624. ve_in: true
  625. verus04: true
  626. xmas_in: true
  627. y_airport: true
  628. yuno_in01: true
  629. yuno_in02: true
  630. yuno_in03: true
  631. yuno_in04: true
  632. yuno_in05: true
  633. yuno_pre: true
  634. Mapflags:
  635. - Flag: NoBonusItemDrop
  636. - Flag: NoBranch
  637. - Flag: NoMemo
  638. - Flag: NoPenalty
  639. - Flag: NoTeleport
  640. - Flag: NoWarpTo
  641. - Id: Field
  642. DisabledSkills:
  643. - Skill: BD_ETERNALCHAOS
  644. Pc: 100
  645. - Skill: BD_ROKISWEIL
  646. Pc: 100
  647. - Skill: BA_DISSONANCE
  648. Pc: 100
  649. - Skill: DC_UGLYDANCE
  650. Pc: 100
  651. - Skill: DC_DONTFORGETME
  652. Pc: 100
  653. - Skill: WM_GLOOMYDAY
  654. Pc: 100
  655. - Skill: WM_SOUND_OF_DESTRUCTION
  656. Pc: 100
  657. - Skill: WM_SATURDAY_NIGHT_FEVER
  658. Pc: 100
  659. - Skill: WM_MELODYOFSINK
  660. Pc: 100
  661. - Skill: WM_BEYOND_OF_WARCRY
  662. Pc: 100
  663. - Skill: SO_ARRULLO
  664. Pc: 100
  665. - Skill: SC_MANHOLE
  666. Pc: 100
  667. - Skill: SC_BLOODYLUST
  668. Pc: 100
  669. - Skill: TR_ROKI_CAPRICCIO
  670. Pc: 100
  671. - Skill: TR_NIPELHEIM_REQUIEM
  672. Pc: 100
  673. - Skill: EM_ACTIVITY_BURN
  674. Pc: 100
  675. DisabledItems:
  676. Minus_Agi: 100
  677. Minus_Dex: 100
  678. Minus_Int: 100
  679. Minus_Luk: 100
  680. Minus_Str: 100
  681. Minus_Vit: 100
  682. Neuralizer: 100
  683. Runstone_Crush: 100
  684. Runstone_Millennium: 100
  685. Runstone_Storm: 100
  686. Sg_Blue_Potion_Box: 100
  687. Sg_Violet_Potion_Box: 100
  688. Sg_White_Potion_Box: 100
  689. Siege_Arrow_A: 100
  690. Siege_Arrow_S: 100
  691. Siege_Boots: 100
  692. Siege_Greave: 100
  693. Siege_Manteau: 100
  694. Siege_Muffler: 100
  695. Siege_Plate: 100
  696. Siege_Robe: 100
  697. Siege_Shoes: 100
  698. Siege_Suits: 100
  699. TE_Ring_Of_Defiance: 100
  700. TE_Ring_Of_Protection: 100
  701. TE_Ring_Of_Rage: 100
  702. TE_White_Potion: 100
  703. TE_White_Slim_Potion: 100
  704. TE_Woe_Axe: 100
  705. TE_Woe_Bone_Helm: 100
  706. TE_Woe_Book: 100
  707. TE_Woe_Boots: 100
  708. TE_Woe_Bow: 100
  709. TE_Woe_Buckler: 100
  710. TE_Woe_Cap: 100
  711. TE_Woe_Chain_Mail: 100
  712. TE_Woe_Coat: 100
  713. TE_Woe_Fist: 100
  714. TE_Woe_Gatling: 100
  715. TE_Woe_Grenade: 100
  716. TE_Woe_Guitar: 100
  717. TE_Woe_Huuma: 100
  718. TE_Woe_Katar: 100
  719. TE_Woe_Knife: 100
  720. TE_Woe_Lance: 100
  721. TE_Woe_Mace: 100
  722. TE_Woe_Mage_Coat: 100
  723. TE_Woe_Magic_Eyes: 100
  724. TE_Woe_Magic_Guard: 100
  725. TE_Woe_Magic_Manteau: 100
  726. TE_Woe_Magic_Sandal: 100
  727. TE_Woe_Manteau: 100
  728. TE_Woe_Muffler: 100
  729. TE_Woe_Pike: 100
  730. TE_Woe_Pistol: 100
  731. TE_Woe_Rifle: 100
  732. TE_Woe_Rope: 100
  733. TE_Woe_Shield: 100
  734. TE_Woe_Shoes: 100
  735. TE_Woe_Shotgun: 100
  736. TE_Woe_Staff: 100
  737. TE_Woe_Sword: 100
  738. TE_Woe_Two_Handed_Axe: 100
  739. TE_Woe_Two_Hand_Staff: 100
  740. TE_Woe_Two_Hand_Sword: 100
  741. Uni_Catalog_Bz: 100
  742. Velum_Arbalest: 100
  743. Velum_Arc_Wand: 100
  744. Velum_Bible: 100
  745. Velum_Buster: 100
  746. Velum_Claw: 100
  747. Velum_Claymore: 100
  748. Velum_CrossBow: 100
  749. Velum_Damascus: 100
  750. Velum_Encyclopedia: 100
  751. Velum_Flail: 100
  752. Velum_Glaive: 100
  753. Velum_Guillotine: 100
  754. Velum_Jamadhar: 100
  755. Velum_Katzbalger: 100
  756. Velum_Scare: 100
  757. Velum_Spear: 100
  758. Velum_Stunner: 100
  759. Vending_Search_Scroll2: 100
  760. Vending_Search_Scroll: 100
  761. Woe_Blue_Potion: 100
  762. Woe_Violet_Potion: 100
  763. Woe_White_Potion: 100
  764. Maps:
  765. 06guild_01: true
  766. 06guild_02: true
  767. 06guild_03: true
  768. 06guild_04: true
  769. 06guild_05: true
  770. 06guild_06: true
  771. 06guild_07: true
  772. 06guild_08: true
  773. 06guild_r: true
  774. alde_gld: true
  775. ama_fild01: true
  776. aru_gld: true
  777. ayo_fild01: true
  778. bif_fild01: true
  779. bif_fild02: true
  780. cmd_fild01: true
  781. cmd_fild02: true
  782. cmd_fild03: true
  783. cmd_fild04: true
  784. cmd_fild05: true
  785. cmd_fild06: true
  786. cmd_fild07: true
  787. cmd_fild08: true
  788. cmd_fild09: true
  789. ecl_fild01: true
  790. ein_fild01: true
  791. ein_fild02: true
  792. ein_fild03: true
  793. ein_fild04: true
  794. ein_fild05: true
  795. ein_fild06: true
  796. ein_fild07: true
  797. ein_fild08: true
  798. ein_fild09: true
  799. ein_fild10: true
  800. g_room1-1: true
  801. g_room1-2: true
  802. g_room1-3: true
  803. g_room2: true
  804. gef_fild00: true
  805. gef_fild01: true
  806. gef_fild02: true
  807. gef_fild04: true
  808. gef_fild06: true
  809. gef_fild07: true
  810. gef_fild08: true
  811. gef_fild10: true
  812. gef_fild12: true
  813. gef_fild13: true
  814. gef_fild14: true
  815. gl_cas02_: true
  816. gl_chyard_: true
  817. glast_01: true
  818. gon_fild01: true
  819. guild_vs1-1: true
  820. guild_vs1-2: true
  821. guild_vs1-3: true
  822. guild_vs1-4: true
  823. guild_vs2-1: true
  824. guild_vs2-2: true
  825. gw_fild01: true
  826. gw_fild02: true
  827. harboro2: true
  828. hu_fild02: true
  829. hu_fild03: true
  830. hu_fild04: true
  831. hu_fild06: true
  832. hu_fild07: true
  833. izlu2dun: true
  834. job_gun: true
  835. job_thief1: true
  836. jor_back1: true
  837. jor_back2: true
  838. jor_back3: true
  839. jor_back4: true
  840. jor_back5: true
  841. jor_back6: true
  842. jor_tail: true
  843. jor_twice: true
  844. jor_twig: true
  845. lhz_fild01: true
  846. lhz_fild02: true
  847. lhz_fild03: true
  848. ma_fild01: true
  849. ma_fild02: true
  850. mjolnir_01: true
  851. mjolnir_03: true
  852. mjolnir_06: true
  853. mjolnir_07: true
  854. mjolnir_09: true
  855. moc_fild01: true
  856. moc_fild02: true
  857. moc_fild03: true
  858. moc_fild07: true
  859. moc_fild11: true
  860. moc_fild12: true
  861. moc_fild13: true
  862. moc_fild16: true
  863. moc_fild17: true
  864. moc_fild18: true
  865. moc_ruins: true
  866. moro_vol: true
  867. mosk_fild02: true
  868. pay_fild01: true
  869. pay_fild02: true
  870. pay_fild03: true
  871. pay_fild04: true
  872. pay_fild05: true
  873. pay_fild06: true
  874. pay_fild07: true
  875. pay_fild08: true
  876. pay_fild09: true
  877. pay_fild10: true
  878. pay_fild11: true
  879. prt_fild00: true
  880. prt_fild01: true
  881. prt_fild02: true
  882. prt_fild03: true
  883. prt_fild04: true
  884. prt_fild05: true
  885. prt_fild06: true
  886. prt_fild07: true
  887. prt_fild08: true
  888. prt_fild08a: true
  889. prt_fild08b: true
  890. prt_fild08c: true
  891. prt_fild08d: true
  892. prt_fild09: true
  893. prt_fild10: true
  894. prt_gld: true
  895. que_avan01: true
  896. ra_fild01: true
  897. ra_fild02: true
  898. ra_fild03: true
  899. ra_fild05: true
  900. ra_fild06: true
  901. ra_fild07: true
  902. ra_fild08: true
  903. ra_fild09: true
  904. ra_fild10: true
  905. ra_fild11: true
  906. ra_fild12: true
  907. ra_fild13: true
  908. rockrdg1: true
  909. rockrdg2: true
  910. sch_gld: true
  911. te_prt_gld: true
  912. um_fild01: true
  913. um_fild02: true
  914. um_fild03: true
  915. um_fild04: true
  916. un_myst: true
  917. ve_fild01: true
  918. ve_fild02: true
  919. ve_fild03: true
  920. ve_fild04: true
  921. ve_fild05: true
  922. ve_fild06: true
  923. ve_fild07: true
  924. xmas_fild01: true
  925. yuno_fild01: true
  926. yuno_fild02: true
  927. yuno_fild03: true
  928. yuno_fild04: true
  929. yuno_fild06: true
  930. yuno_fild10: true
  931. yuno_fild11: true
  932. yuno_fild12: true
  933. Mapflags:
  934. - Flag: NightEnabled
  935. - Flag: PrivateAirship_Destination
  936. - Flag: PrivateAirship_Source
  937. - Id: Dungeon
  938. DisabledSkills:
  939. - Skill: BD_ETERNALCHAOS
  940. Pc: 100
  941. - Skill: BD_ROKISWEIL
  942. Pc: 100
  943. - Skill: BA_DISSONANCE
  944. Pc: 100
  945. - Skill: DC_UGLYDANCE
  946. Pc: 100
  947. - Skill: DC_DONTFORGETME
  948. Pc: 100
  949. - Skill: WM_GLOOMYDAY
  950. Pc: 100
  951. - Skill: WM_SOUND_OF_DESTRUCTION
  952. Pc: 100
  953. - Skill: WM_SATURDAY_NIGHT_FEVER
  954. Pc: 100
  955. - Skill: WM_MELODYOFSINK
  956. Pc: 100
  957. - Skill: WM_BEYOND_OF_WARCRY
  958. Pc: 100
  959. - Skill: SO_ARRULLO
  960. Pc: 100
  961. - Skill: SC_MANHOLE
  962. Pc: 100
  963. - Skill: SC_BLOODYLUST
  964. Pc: 100
  965. - Skill: TR_ROKI_CAPRICCIO
  966. Pc: 100
  967. - Skill: TR_NIPELHEIM_REQUIEM
  968. Pc: 100
  969. - Skill: EM_ACTIVITY_BURN
  970. Pc: 100
  971. DisabledItems:
  972. Minus_Agi: 100
  973. Minus_Dex: 100
  974. Minus_Int: 100
  975. Minus_Luk: 100
  976. Minus_Str: 100
  977. Minus_Vit: 100
  978. Neuralizer: 100
  979. Runstone_Crush: 100
  980. Runstone_Millennium: 100
  981. Runstone_Storm: 100
  982. Sg_Blue_Potion_Box: 100
  983. Sg_Violet_Potion_Box: 100
  984. Sg_White_Potion_Box: 100
  985. Siege_Arrow_A: 100
  986. Siege_Arrow_S: 100
  987. Siege_Boots: 100
  988. Siege_Greave: 100
  989. Siege_Manteau: 100
  990. Siege_Muffler: 100
  991. Siege_Plate: 100
  992. Siege_Robe: 100
  993. Siege_Shoes: 100
  994. Siege_Suits: 100
  995. TE_Ring_Of_Defiance: 100
  996. TE_Ring_Of_Protection: 100
  997. TE_Ring_Of_Rage: 100
  998. TE_White_Potion: 100
  999. TE_White_Slim_Potion: 100
  1000. TE_Woe_Axe: 100
  1001. TE_Woe_Bone_Helm: 100
  1002. TE_Woe_Book: 100
  1003. TE_Woe_Boots: 100
  1004. TE_Woe_Bow: 100
  1005. TE_Woe_Buckler: 100
  1006. TE_Woe_Cap: 100
  1007. TE_Woe_Chain_Mail: 100
  1008. TE_Woe_Coat: 100
  1009. TE_Woe_Fist: 100
  1010. TE_Woe_Gatling: 100
  1011. TE_Woe_Grenade: 100
  1012. TE_Woe_Guitar: 100
  1013. TE_Woe_Huuma: 100
  1014. TE_Woe_Katar: 100
  1015. TE_Woe_Knife: 100
  1016. TE_Woe_Lance: 100
  1017. TE_Woe_Mace: 100
  1018. TE_Woe_Mage_Coat: 100
  1019. TE_Woe_Magic_Eyes: 100
  1020. TE_Woe_Magic_Guard: 100
  1021. TE_Woe_Magic_Manteau: 100
  1022. TE_Woe_Magic_Sandal: 100
  1023. TE_Woe_Manteau: 100
  1024. TE_Woe_Muffler: 100
  1025. TE_Woe_Pike: 100
  1026. TE_Woe_Pistol: 100
  1027. TE_Woe_Rifle: 100
  1028. TE_Woe_Rope: 100
  1029. TE_Woe_Shield: 100
  1030. TE_Woe_Shoes: 100
  1031. TE_Woe_Shotgun: 100
  1032. TE_Woe_Staff: 100
  1033. TE_Woe_Sword: 100
  1034. TE_Woe_Two_Handed_Axe: 100
  1035. TE_Woe_Two_Hand_Staff: 100
  1036. TE_Woe_Two_Hand_Sword: 100
  1037. Uni_Catalog_Bz: 100
  1038. Velum_Arbalest: 100
  1039. Velum_Arc_Wand: 100
  1040. Velum_Bible: 100
  1041. Velum_Buster: 100
  1042. Velum_Claw: 100
  1043. Velum_Claymore: 100
  1044. Velum_CrossBow: 100
  1045. Velum_Damascus: 100
  1046. Velum_Encyclopedia: 100
  1047. Velum_Flail: 100
  1048. Velum_Glaive: 100
  1049. Velum_Guillotine: 100
  1050. Velum_Jamadhar: 100
  1051. Velum_Katzbalger: 100
  1052. Velum_Scare: 100
  1053. Velum_Spear: 100
  1054. Velum_Stunner: 100
  1055. Vending_Search_Scroll2: 100
  1056. Vending_Search_Scroll: 100
  1057. Woe_Blue_Potion: 100
  1058. Woe_Violet_Potion: 100
  1059. Woe_White_Potion: 100
  1060. Maps:
  1061. abbey01: true
  1062. abbey02: true
  1063. abbey03: true
  1064. abyss_01: true
  1065. abyss_02: true
  1066. abyss_03: true
  1067. abyss_04: true
  1068. alb2trea: true
  1069. alde_dun01: true
  1070. alde_dun02: true
  1071. alde_dun03: true
  1072. alde_dun04: true
  1073. ama_dun02: true
  1074. ama_dun03: true
  1075. amicitia1: true
  1076. amicitia2: true
  1077. ant_d02_i: true
  1078. anthell01: true
  1079. anthell02: true
  1080. ayo_dun01: true
  1081. ayo_dun02: true
  1082. ayo_fild02: true
  1083. ba_2whs01: true
  1084. ba_2whs02: true
  1085. ba_bath: true
  1086. ba_chess: true
  1087. ba_lib: true
  1088. ba_lost: true
  1089. ba_pw01: true
  1090. ba_pw02: true
  1091. ba_pw03: true
  1092. beach_dun2: true
  1093. beach_dun3: true
  1094. beach_dun: true
  1095. bl_death: true
  1096. bl_grass: true
  1097. bl_ice: true
  1098. bl_lava: true
  1099. bl_soul: true
  1100. bl_temple: true
  1101. bl_venom: true
  1102. bra_dun01: true
  1103. bra_dun02: true
  1104. bra_fild01: true
  1105. c_tower1: true
  1106. c_tower2: true
  1107. c_tower2_: true
  1108. c_tower3: true
  1109. c_tower3_: true
  1110. c_tower4: true
  1111. clock_01: true
  1112. com_d02_i: true
  1113. dew_dun01: true
  1114. dew_dun02: true
  1115. dew_fild01: true
  1116. dic_dun01: true
  1117. dic_dun02: true
  1118. dic_dun03: true
  1119. dic_fild01: true
  1120. dic_fild02: true
  1121. ecl_tdun01: true
  1122. ecl_tdun02: true
  1123. ecl_tdun03: true
  1124. ein_d02_i: true
  1125. ein_dun01: true
  1126. ein_dun02: true
  1127. ein_dun03: true
  1128. for_dun01: true
  1129. for_dun02: true
  1130. gef_d01_i: true
  1131. gef_dun00: true
  1132. gef_dun01: true
  1133. gef_dun02: true
  1134. gef_dun03: true
  1135. gef_fild03: true
  1136. gef_fild05: true
  1137. gef_fild09: true
  1138. gef_fild11: true
  1139. gefenia01: true
  1140. gefenia02: true
  1141. gefenia03: true
  1142. gefenia04: true
  1143. gl_cas01: true
  1144. gl_cas01_: true
  1145. gl_cas02: true
  1146. gl_church: true
  1147. gl_chyard: true
  1148. gl_dun01: true
  1149. gl_dun02: true
  1150. gl_in01: true
  1151. gl_knt01: true
  1152. gl_knt02: true
  1153. gl_prison1: true
  1154. gl_prison: true
  1155. gl_sew01: true
  1156. gl_sew02: true
  1157. gl_sew03: true
  1158. gl_sew04: true
  1159. gl_step: true
  1160. gon_dun01: true
  1161. gon_dun02: true
  1162. gon_dun03: true
  1163. hu_fild01: true
  1164. hu_fild05: true
  1165. ice_d03_i: true
  1166. ice_dun01: true
  1167. ice_dun02: true
  1168. in_sphinx1: true
  1169. in_sphinx2: true
  1170. in_sphinx3: true
  1171. in_sphinx4: true
  1172. in_sphinx5: true
  1173. iz_d04_i: true
  1174. iz_d05_i: true
  1175. iz_dun00: true
  1176. iz_dun01: true
  1177. iz_dun02: true
  1178. iz_dun03: true
  1179. iz_dun04: true
  1180. jor_ab01: true
  1181. jor_ab02: true
  1182. jor_dun01: true
  1183. jor_dun02: true
  1184. jor_dun03: true
  1185. jor_maze: true
  1186. jor_root1: true
  1187. jor_root2: true
  1188. jor_root3: true
  1189. jupe_cave: true
  1190. jupe_core: true
  1191. juperos_01: true
  1192. juperos_02: true
  1193. kh_dun02: true
  1194. lasa_dun01: true
  1195. lasa_dun02: true
  1196. lasa_dun03: true
  1197. lasa_fild01: true
  1198. lasa_fild02: true
  1199. lasa_sea: true
  1200. lhz_dun01: true
  1201. lhz_dun02: true
  1202. lhz_dun03: true
  1203. lhz_dun04: true
  1204. lhz_dun_n: true
  1205. lou_dun01: true
  1206. lou_dun02: true
  1207. lou_dun03: true
  1208. lou_fild01: true
  1209. ma_dun01: true
  1210. mag_dun01: true
  1211. mag_dun02: true
  1212. mag_dun03: true
  1213. mal_dun01: true
  1214. man_fild01: true
  1215. man_fild02: true
  1216. man_fild03: true
  1217. mjo_dun01: true
  1218. mjo_dun02: true
  1219. mjo_dun03: true
  1220. mjo_wst01: true
  1221. mjolnir_02: true
  1222. mjolnir_04: true
  1223. mjolnir_05: true
  1224. mjolnir_08: true
  1225. mjolnir_10: true
  1226. mjolnir_11: true
  1227. mjolnir_12: true
  1228. moc_fild19: true
  1229. moc_fild20: true
  1230. moc_fild21: true
  1231. moc_fild22: true
  1232. moc_pryd01: true
  1233. moc_pryd02: true
  1234. moc_pryd03: true
  1235. moc_pryd04: true
  1236. moc_pryd05: true
  1237. moc_pryd06: true
  1238. moc_prydb1: true
  1239. moc_prydn1: true
  1240. moc_prydn2: true
  1241. moro_cav: true
  1242. mosk_dun01: true
  1243. mosk_dun02: true
  1244. mosk_dun03: true
  1245. nameless_n: true
  1246. nif_dun01: true
  1247. nif_dun02: true
  1248. nif_fild01: true
  1249. nif_fild02: true
  1250. niflheim: true
  1251. nyd_dun01: true
  1252. odin_past: true
  1253. odin_tem01: true
  1254. odin_tem02: true
  1255. odin_tem03: true
  1256. orcsdun01: true
  1257. orcsdun02: true
  1258. oz_dun01: true
  1259. oz_dun02: true
  1260. pay_d03_i: true
  1261. pay_dun00: true
  1262. pay_dun01: true
  1263. pay_dun02: true
  1264. pay_dun03: true
  1265. pay_dun04: true
  1266. prt_fild11: true
  1267. prt_maze01: true
  1268. prt_maze02: true
  1269. prt_maze03: true
  1270. prt_mz03_i: true
  1271. prt_prison: true
  1272. prt_q: true
  1273. prt_sewb1: true
  1274. prt_sewb2: true
  1275. prt_sewb3: true
  1276. prt_sewb4: true
  1277. que_san04: true
  1278. ra_pol01: true
  1279. ra_san01: true
  1280. ra_san02: true
  1281. ra_san03: true
  1282. ra_san04: true
  1283. ra_san05: true
  1284. rockmi1: true
  1285. sec_in02: true
  1286. silk_lair: true
  1287. slabw01: true
  1288. sp_os: true
  1289. sp_rudus2: true
  1290. sp_rudus3: true
  1291. sp_rudus4: true
  1292. sp_rudus: true
  1293. spl_fild01: true
  1294. spl_fild02: true
  1295. spl_fild03: true
  1296. tha_scene01: true
  1297. tha_t01: true
  1298. tha_t02: true
  1299. tha_t03: true
  1300. tha_t04: true
  1301. tha_t05: true
  1302. tha_t06: true
  1303. thor_v01: true
  1304. thor_v02: true
  1305. thor_v03: true
  1306. treasure01: true
  1307. treasure02: true
  1308. treasure_n1: true
  1309. treasure_n2: true
  1310. tur_d03_i: true
  1311. tur_d04_i: true
  1312. tur_d04ia: true
  1313. tur_d04ib: true
  1314. tur_dun01: true
  1315. tur_dun02: true
  1316. tur_dun03: true
  1317. tur_dun04: true
  1318. tur_dun05: true
  1319. tur_dun06: true
  1320. um_dun01: true
  1321. um_dun02: true
  1322. un_bunker: true
  1323. ver_eju: true
  1324. ver_tunn: true
  1325. verus01: true
  1326. verus02: true
  1327. verus02_a: true
  1328. verus02_b: true
  1329. verus03: true
  1330. xmas_dun01: true
  1331. xmas_dun02: true
  1332. yuno_fild05: true
  1333. yuno_fild07: true
  1334. yuno_fild08: true
  1335. yuno_fild09: true
  1336. Mapflags:
  1337. - Flag: NoMemo
  1338. - Flag: NoWarpTo
  1339. - Flag: PrivateAirship_Destination
  1340. - Flag: PrivateAirship_Source
  1341. - Id: Quest
  1342. DisabledSkills:
  1343. - Skill: AL_WARP
  1344. Pc: 100
  1345. - Skill: BD_ETERNALCHAOS
  1346. Pc: 100
  1347. - Skill: BD_ROKISWEIL
  1348. Pc: 100
  1349. - Skill: BA_DISSONANCE
  1350. Pc: 100
  1351. - Skill: DC_UGLYDANCE
  1352. Pc: 100
  1353. - Skill: DC_DONTFORGETME
  1354. Pc: 100
  1355. - Skill: WM_GLOOMYDAY
  1356. Pc: 100
  1357. - Skill: WM_SOUND_OF_DESTRUCTION
  1358. Pc: 100
  1359. - Skill: WM_SATURDAY_NIGHT_FEVER
  1360. Pc: 100
  1361. - Skill: WM_MELODYOFSINK
  1362. Pc: 100
  1363. - Skill: WM_BEYOND_OF_WARCRY
  1364. Pc: 100
  1365. - Skill: SO_ARRULLO
  1366. Pc: 100
  1367. - Skill: SC_DIMENSIONDOOR
  1368. Pc: 100
  1369. - Skill: SC_MANHOLE
  1370. Pc: 100
  1371. - Skill: SC_BLOODYLUST
  1372. Pc: 100
  1373. - Skill: SU_LOPE
  1374. Pc: 100
  1375. - Skill: AB_CONVENIO
  1376. Pc: 100
  1377. - Skill: TR_ROKI_CAPRICCIO
  1378. Pc: 100
  1379. - Skill: TR_NIPELHEIM_REQUIEM
  1380. Pc: 100
  1381. - Skill: EM_ACTIVITY_BURN
  1382. Pc: 100
  1383. DisabledItems:
  1384. #Accessory_of_Ascetic: 100
  1385. Anopheles_Card: 100
  1386. Armaia_Card: 100
  1387. "Arquien's_Necklace": 100
  1388. Azoth: 100
  1389. Blazzer_Card: 100
  1390. #Butterfly_Hairpin: 100
  1391. Bogy_Horn: 100
  1392. Cactus_Hat: 100
  1393. #Carnation_Garlands: 100
  1394. Cleaver: 100
  1395. Cow_Hat: 100
  1396. Cramp_Card: 100
  1397. C_Devil_Whisper: 100
  1398. C_Iceflake_Hat: 100
  1399. Dark_Snake_Lord_Hat: 100
  1400. Devil_Whisper: 100
  1401. Dragon_Egg_Card: 100
  1402. Dragon_Wing: 100
  1403. Dryad_Card: 100
  1404. Emergency_Scroll1: 100
  1405. Emergency_Scroll2: 100
  1406. Emergency_Scroll3: 100
  1407. Event_Cake: 100
  1408. Event_Pierrot_Nose: 100
  1409. Evil_Cloud_Hermit_Card: 100
  1410. Fish_In_Mouth: 100
  1411. Forceps_Hairpin: 100
  1412. Gaia_Sword: 100
  1413. Galapago_Cap: 100
  1414. Galapago_Card: 100
  1415. Gargoyle_Card: 100
  1416. Garuda_Hat: 100
  1417. General_Helmet: 100
  1418. Giant_Honet_Card: 100
  1419. Gloomy_Pumpkin_Hat: 100
  1420. Green_Iguana_Card: 100
  1421. Gremlin_Card: 100
  1422. Happy_Balloon_J: 100
  1423. Hellomother_Hat: 100
  1424. Honeybee_Hat: 100
  1425. Hunting_Spear: 100
  1426. Hylozoist_Card: 100
  1427. Im_Egg_Shell_Hat: 100
  1428. Japan_Winecup: 100
  1429. Jewel_Sword: 100
  1430. Knocker_Card: 100
  1431. Lady_Tanee_Card: 100
  1432. Lady_Tanee_Doll: 100
  1433. Leaf_Cat_Card: 100
  1434. Leib_Olmai_Card: 100
  1435. Li_Me_Mang_Ryang_Card: 100
  1436. Lucky_Day: 100
  1437. Lunakaligo: 100
  1438. Magical_Stone: 100
  1439. Magical_Stone_: 100
  1440. "Mama's_Knife": 100
  1441. Marin_Card: 100
  1442. Mimic_Card: 100
  1443. Mini_Tree: 100
  1444. Minus_Agi: 100
  1445. Minus_Dex: 100
  1446. Minus_Int: 100
  1447. Minus_Luk: 100
  1448. Minus_Str: 100
  1449. Minus_Vit: 100
  1450. Mystcase_Card: 100
  1451. Neuralizer: 100
  1452. N_Fly_Wing: 100
  1453. Orc_Archer_Bow: 100
  1454. Orc_Archer_Card: 100
  1455. Orc_Archer_Card: 100
  1456. Pig_Moneybox: 100
  1457. Pinguicula_Dark_Card: 100
  1458. Plasma_Card: 100
  1459. Pumpkin_Hat_: 100
  1460. Q_Scaraba_Card: 100
  1461. Radar_Ring1: 100
  1462. Radar_Ring2: 100
  1463. Radar_Ring3: 100
  1464. Raydric_Archer_Card: 100
  1465. Red_Lantern: 100
  1466. Red_Square_Bag: 100
  1467. Red_White_Hat: 100
  1468. Remover_Hat: 100
  1469. Retribution_Card: 100
  1470. Ribbon_Chef_Hat: 100
  1471. Rice_Cake_Boy_Card: 100
  1472. Sageworm_Card: 100
  1473. Santa_Hat_1: 100
  1474. "Santa's_Hat_": 100
  1475. Sasimi: 100
  1476. Scarlet_Rose: 100
  1477. Scr_MT_Robots_Card: 100
  1478. Sealed_Lady_Tanee_Card: 100
  1479. See_Otter_Card: 100
  1480. Sg_Blue_Potion_Box: 100
  1481. Sg_Violet_Potion_Box: 100
  1482. Sg_White_Potion_Box: 100
  1483. Siege_Arrow_A: 100
  1484. Siege_Arrow_S: 100
  1485. Siege_Boots: 100
  1486. Siege_Greave: 100
  1487. Siege_Manteau: 100
  1488. Siege_Muffler: 100
  1489. Siege_Plate: 100
  1490. Siege_Robe: 100
  1491. Siege_Shoes: 100
  1492. Siege_Suits: 100
  1493. Sleeper_Card: 100
  1494. Snowier_Card: 100
  1495. Snowman_Hat: 100
  1496. Spare_Card: 100
  1497. Spring_Rabbit_Card: 100
  1498. St_Pat_Hat: 100
  1499. Starving_Fish_Hat: 100
  1500. Stem_Worm_Card: 100
  1501. Stretched_Nose_M: 100
  1502. Tengu_Card: 100
  1503. TE_Ring_Of_Defiance: 100
  1504. TE_Ring_Of_Protection: 100
  1505. TE_Ring_Of_Rage: 100
  1506. TE_White_Potion: 100
  1507. TE_White_Slim_Potion: 100
  1508. TE_Woe_Axe: 100
  1509. TE_Woe_Bone_Helm: 100
  1510. TE_Woe_Book: 100
  1511. TE_Woe_Boots: 100
  1512. TE_Woe_Bow: 100
  1513. TE_Woe_Buckler: 100
  1514. TE_Woe_Cap: 100
  1515. TE_Woe_Chain_Mail: 100
  1516. TE_Woe_Coat: 100
  1517. TE_Woe_Fist: 100
  1518. TE_Woe_Gatling: 100
  1519. TE_Woe_Grenade: 100
  1520. TE_Woe_Guitar: 100
  1521. TE_Woe_Huuma: 100
  1522. TE_Woe_Katar: 100
  1523. TE_Woe_Knife: 100
  1524. TE_Woe_Lance: 100
  1525. TE_Woe_Mace: 100
  1526. TE_Woe_Mage_Coat: 100
  1527. TE_Woe_Magic_Eyes: 100
  1528. TE_Woe_Magic_Guard: 100
  1529. TE_Woe_Magic_Manteau: 100
  1530. TE_Woe_Magic_Sandal: 100
  1531. TE_Woe_Manteau: 100
  1532. TE_Woe_Muffler: 100
  1533. TE_Woe_Pike: 100
  1534. TE_Woe_Pistol: 100
  1535. TE_Woe_Rifle: 100
  1536. TE_Woe_Rope: 100
  1537. TE_Woe_Shield: 100
  1538. TE_Woe_Shoes: 100
  1539. TE_Woe_Shotgun: 100
  1540. TE_Woe_Staff: 100
  1541. TE_Woe_Sword: 100
  1542. TE_Woe_Two_Handed_Axe: 100
  1543. TE_Woe_Two_Hand_Staff: 100
  1544. TE_Woe_Two_Hand_Sword: 100
  1545. Toast_C: 100
  1546. Treasure_Box_Scroll: 100
  1547. Tw_Rice_Ball: 100
  1548. Umbala_Spirit: 100
  1549. Uni_Catalog_Bz: 100
  1550. Velum_Arbalest: 100
  1551. Velum_Arc_Wand: 100
  1552. Velum_Bible: 100
  1553. Velum_Buster: 100
  1554. Velum_Claw: 100
  1555. Velum_Claymore: 100
  1556. Velum_CrossBow: 100
  1557. Velum_Damascus: 100
  1558. Velum_Encyclopedia: 100
  1559. Velum_Flail: 100
  1560. Velum_Glaive: 100
  1561. Velum_Guillotine: 100
  1562. Velum_Jamadhar: 100
  1563. Velum_Katzbalger: 100
  1564. Velum_Scare: 100
  1565. Velum_Spear: 100
  1566. Velum_Stunner: 100
  1567. Vending_Search_Scroll2: 100
  1568. Vending_Search_Scroll: 100
  1569. Weird_Pumpkin_Hat: 100
  1570. Wild_Ginseng_Card: 100
  1571. Woe_Blue_Potion: 100
  1572. Woe_Violet_Potion: 100
  1573. Woe_White_Potion: 100
  1574. Wraith_Card: 100
  1575. Zeny_Knife: 100
  1576. Maps:
  1577. alb_ship: true
  1578. ama_test: true
  1579. arug_que01: true
  1580. bossnia_01: true
  1581. bossnia_02: true
  1582. bossnia_03: true
  1583. bossnia_04: true
  1584. e_tower: true
  1585. evt_mobroom: true
  1586. force_1-1: true
  1587. force_1-2: true
  1588. force_1-3: true
  1589. force_2-1: true
  1590. force_2-2: true
  1591. force_2-3: true
  1592. force_3-1: true
  1593. force_3-2: true
  1594. force_3-3: true
  1595. force_4-1: true
  1596. force_5-1: true
  1597. gon_test: true
  1598. guild_room: true
  1599. himinn: true
  1600. ice_dun04: true
  1601. in_moc_16: true
  1602. job3_arch01: true
  1603. job3_arch02: true
  1604. job3_arch03: true
  1605. job3_guil01: true
  1606. job3_guil02: true
  1607. job3_guil03: true
  1608. job3_rang01: true
  1609. job3_rang02: true
  1610. job3_rune01: true
  1611. job3_rune02: true
  1612. job3_rune03: true
  1613. job3_sha01: true
  1614. job3_war01: true
  1615. job3_war02: true
  1616. job4_bio: true
  1617. job4_mag: true
  1618. job4_tro: true
  1619. job_cru: true
  1620. job_duncer: true
  1621. job_hunte: true
  1622. job_knt: true
  1623. job_ko: true
  1624. job_monk: true
  1625. job_prist: true
  1626. job_sage: true
  1627. job_soul: true
  1628. job_star: true
  1629. job_sword1: true
  1630. job_wiz: true
  1631. jupe_area1: true
  1632. jupe_area2: true
  1633. jupe_core2: true
  1634. jupe_ele: true
  1635. jupe_ele_r: true
  1636. jupe_gate: true
  1637. kh_kiehl01: true
  1638. kh_kiehl02: true
  1639. lhz_cube: true
  1640. lhz_d_n2: true
  1641. lhz_que01: true
  1642. ma_zif01: true
  1643. ma_zif02: true
  1644. ma_zif03: true
  1645. ma_zif04: true
  1646. ma_zif05: true
  1647. ma_zif06: true
  1648. ma_zif07: true
  1649. ma_zif08: true
  1650. ma_zif09: true
  1651. moc_fild22b: true
  1652. monk_test: true
  1653. mosk_fild01: true
  1654. mosk_in: true
  1655. mosk_que: true
  1656. mosk_ship: true
  1657. n_castle: true
  1658. p_track01: true
  1659. p_track02: true
  1660. poring_w01: true
  1661. pvp_n_room: true
  1662. pvp_room: true
  1663. pvp_y_room: true
  1664. que_ba: true
  1665. que_dan01: true
  1666. que_dan02: true
  1667. que_god02: true
  1668. que_job01: true
  1669. que_job02: true
  1670. que_job03: true
  1671. que_lhz: true
  1672. que_moc_16: true
  1673. que_moon: true
  1674. que_qaru01: true
  1675. que_qaru02: true
  1676. que_qaru03: true
  1677. que_qaru04: true
  1678. que_qaru05: true
  1679. que_qsch01: true
  1680. que_qsch02: true
  1681. que_qsch03: true
  1682. que_qsch04: true
  1683. que_qsch05: true
  1684. que_sign01: true
  1685. que_sign02: true
  1686. que_swat: true
  1687. que_thor: true
  1688. quiz_test: true
  1689. rockmi2: true
  1690. schg_que01: true
  1691. star_frst: true
  1692. sword_1-1: true
  1693. sword_2-1: true
  1694. sword_3-1: true
  1695. thor_camp: true
  1696. valkyrie: true
  1697. yggdrasil01: true
  1698. z_agit: true
  1699. #force_map1: true
  1700. #force_map2: true
  1701. #force_map3: true
  1702. #hunter_1-1: true
  1703. #hunter_2-1: true
  1704. #hunter_3-1: true
  1705. #job_hunter: true
  1706. #job_knight: true
  1707. #job_priest: true
  1708. #job_wizard: true
  1709. #knight_1-1: true
  1710. #knight_2-1: true
  1711. #knight_3-1: true
  1712. #moc_fild04: true
  1713. #moc_fild05: true
  1714. #moc_fild06: true
  1715. #moc_fild08: true
  1716. #moc_fild09: true
  1717. #moc_fild10: true
  1718. #moc_fild14: true
  1719. #moc_fild15: true
  1720. #priest_1-1: true
  1721. #priest_2-1: true
  1722. #priest_3-1: true
  1723. #wizard_1-1: true
  1724. #wizard_2-1: true
  1725. #wizard_3-1: true
  1726. Mapflags:
  1727. - Flag: GuildLock
  1728. - Flag: NoBonusItemDrop
  1729. - Flag: NoBranch
  1730. - Flag: NoMemo
  1731. - Flag: NoPenalty
  1732. - Flag: NoSave
  1733. Value: SavePoint
  1734. - Flag: NoTeleport
  1735. - Flag: NoWarpTo
  1736. - Id: Penalty_FreePkZone # Nightmare Mode
  1737. DisabledSkills:
  1738. - Skill: AB_CONVENIO
  1739. Pc: 100
  1740. DisabledItems:
  1741. #Comp_Wing_Of_Fly: 100
  1742. #Cps_Fly_Wing: 100
  1743. Minus_Agi: 100
  1744. Minus_Dex: 100
  1745. Minus_Int: 100
  1746. Minus_Luk: 100
  1747. Minus_Str: 100
  1748. Minus_Vit: 100
  1749. #N_Fly_Wing2: 100
  1750. Neuralizer: 100
  1751. Runstone_Crush: 100
  1752. Runstone_Millennium: 100
  1753. Runstone_Storm: 100
  1754. TE_Ring_Of_Defiance: 100
  1755. TE_Ring_Of_Protection: 100
  1756. TE_Ring_Of_Rage: 100
  1757. TE_White_Potion: 100
  1758. TE_White_Slim_Potion: 100
  1759. TE_Woe_Axe: 100
  1760. TE_Woe_Bone_Helm: 100
  1761. TE_Woe_Book: 100
  1762. TE_Woe_Boots: 100
  1763. TE_Woe_Bow: 100
  1764. TE_Woe_Buckler: 100
  1765. TE_Woe_Cap: 100
  1766. TE_Woe_Chain_Mail: 100
  1767. TE_Woe_Coat: 100
  1768. TE_Woe_Fist: 100
  1769. TE_Woe_Gatling: 100
  1770. TE_Woe_Grenade: 100
  1771. TE_Woe_Guitar: 100
  1772. TE_Woe_Huuma: 100
  1773. TE_Woe_Katar: 100
  1774. TE_Woe_Knife: 100
  1775. TE_Woe_Lance: 100
  1776. TE_Woe_Mace: 100
  1777. TE_Woe_Mage_Coat: 100
  1778. TE_Woe_Magic_Eyes: 100
  1779. TE_Woe_Magic_Guard: 100
  1780. TE_Woe_Magic_Manteau: 100
  1781. TE_Woe_Magic_Sandal: 100
  1782. TE_Woe_Manteau: 100
  1783. TE_Woe_Muffler: 100
  1784. TE_Woe_Pike: 100
  1785. TE_Woe_Pistol: 100
  1786. TE_Woe_Rifle: 100
  1787. TE_Woe_Rope: 100
  1788. TE_Woe_Shield: 100
  1789. TE_Woe_Shoes: 100
  1790. TE_Woe_Shotgun: 100
  1791. TE_Woe_Staff: 100
  1792. TE_Woe_Sword: 100
  1793. TE_Woe_Two_Handed_Axe: 100
  1794. TE_Woe_Two_Hand_Staff: 100
  1795. TE_Woe_Two_Hand_Sword: 100
  1796. Treasure_Box_Scroll: 100
  1797. Uni_Catalog_Bz: 100
  1798. Vending_Search_Scroll2: 100
  1799. Vending_Search_Scroll: 100
  1800. #Wing_Of_Fly_TW: 100
  1801. Maps:
  1802. e_hugel: true
  1803. pvp_c_room: true
  1804. pvp_n_1-1: true
  1805. pvp_n_2-1: true
  1806. pvp_n_2-2: true
  1807. pvp_n_2-3: true
  1808. pvp_n_2-4: true
  1809. pvp_n_2-5: true
  1810. pvp_n_3-1: true
  1811. pvp_n_3-2: true
  1812. pvp_n_3-3: true
  1813. pvp_n_3-4: true
  1814. pvp_n_3-5: true
  1815. pvp_n_4-1: true
  1816. pvp_n_4-2: true
  1817. pvp_n_4-3: true
  1818. pvp_n_4-4: true
  1819. pvp_n_4-5: true
  1820. pvp_n_5-1: true
  1821. pvp_n_5-2: true
  1822. pvp_n_5-3: true
  1823. pvp_n_5-4: true
  1824. pvp_n_5-5: true
  1825. pvp_n_6-1: true
  1826. pvp_n_6-2: true
  1827. pvp_n_6-3: true
  1828. pvp_n_6-4: true
  1829. pvp_n_6-5: true
  1830. pvp_n_7-1: true
  1831. pvp_n_7-2: true
  1832. pvp_n_7-3: true
  1833. pvp_n_7-4: true
  1834. pvp_n_7-5: true
  1835. pvp_n_8-1: true
  1836. pvp_n_8-5: true
  1837. Mapflags:
  1838. - Flag: HideMobHpBar
  1839. - Flag: NoCostume
  1840. - Flag: NoMemo
  1841. - Flag: NoSave
  1842. Value: SavePoint
  1843. - Flag: NoWarpTo
  1844. - Flag: PvP
  1845. - Flag: PvP_NightmareDrop
  1846. Value: random,drop,300
  1847. - Flag: PvP_NoGuild
  1848. - Flag: PvP_NoParty
  1849. - Id: NoPenalty_FreePkZone # Yoyo Mode
  1850. DisabledSkills:
  1851. - Skill: SC_DIMENSIONDOOR
  1852. Pc: 100
  1853. - Skill: WE_CALLALLFAMILY
  1854. Pc: 100
  1855. - Skill: AB_CONVENIO
  1856. Pc: 100
  1857. DisabledItems:
  1858. C_Wing_Of_Fly: 100
  1859. #Comp_Wing_Of_Fly: 100
  1860. #Cps_Fly_Wing: 100
  1861. E_Giant_Fly_Wing: 100
  1862. Giant_Fly_Wing: 100
  1863. Minus_Agi: 100
  1864. Minus_Dex: 100
  1865. Minus_Int: 100
  1866. Minus_Luk: 100
  1867. Minus_Str: 100
  1868. Minus_Vit: 100
  1869. Neuralizer: 100
  1870. N_Fly_Wing: 100
  1871. #N_Fly_Wing2: 100
  1872. Runstone_Crush: 100
  1873. Runstone_Millennium: 100
  1874. Runstone_Storm: 100
  1875. TE_Ring_Of_Defiance: 100
  1876. TE_Ring_Of_Protection: 100
  1877. TE_Ring_Of_Rage: 100
  1878. TE_White_Potion: 100
  1879. TE_White_Slim_Potion: 100
  1880. TE_Woe_Axe: 100
  1881. TE_Woe_Bone_Helm: 100
  1882. TE_Woe_Book: 100
  1883. TE_Woe_Boots: 100
  1884. TE_Woe_Bow: 100
  1885. TE_Woe_Buckler: 100
  1886. TE_Woe_Cap: 100
  1887. TE_Woe_Chain_Mail: 100
  1888. TE_Woe_Coat: 100
  1889. TE_Woe_Fist: 100
  1890. TE_Woe_Gatling: 100
  1891. TE_Woe_Grenade: 100
  1892. TE_Woe_Guitar: 100
  1893. TE_Woe_Huuma: 100
  1894. TE_Woe_Katar: 100
  1895. TE_Woe_Knife: 100
  1896. TE_Woe_Lance: 100
  1897. TE_Woe_Mace: 100
  1898. TE_Woe_Mage_Coat: 100
  1899. TE_Woe_Magic_Eyes: 100
  1900. TE_Woe_Magic_Guard: 100
  1901. TE_Woe_Magic_Manteau: 100
  1902. TE_Woe_Magic_Sandal: 100
  1903. TE_Woe_Manteau: 100
  1904. TE_Woe_Muffler: 100
  1905. TE_Woe_Pike: 100
  1906. TE_Woe_Pistol: 100
  1907. TE_Woe_Rifle: 100
  1908. TE_Woe_Rope: 100
  1909. TE_Woe_Shield: 100
  1910. TE_Woe_Shoes: 100
  1911. TE_Woe_Shotgun: 100
  1912. TE_Woe_Staff: 100
  1913. TE_Woe_Sword: 100
  1914. TE_Woe_Two_Handed_Axe: 100
  1915. TE_Woe_Two_Hand_Staff: 100
  1916. TE_Woe_Two_Hand_Sword: 100
  1917. Uni_Catalog_Bz: 100
  1918. Vending_Search_Scroll2: 100
  1919. Vending_Search_Scroll: 100
  1920. Wing_Of_Fly: 100
  1921. #Wing_Of_Fly_TW: 100
  1922. Maps:
  1923. guild_vs1: true
  1924. guild_vs3: true
  1925. pvp_2vs2: true
  1926. pvp_n_8-2: true
  1927. pvp_n_8-3: true
  1928. pvp_n_8-4: true
  1929. pvp_y_1-1: true
  1930. pvp_y_1-2: true
  1931. pvp_y_1-3: true
  1932. pvp_y_1-4: true
  1933. pvp_y_1-5: true
  1934. pvp_y_2-1: true
  1935. pvp_y_2-2: true
  1936. pvp_y_2-3: true
  1937. pvp_y_2-4: true
  1938. pvp_y_2-5: true
  1939. pvp_y_3-1: true
  1940. pvp_y_3-2: true
  1941. pvp_y_3-3: true
  1942. pvp_y_3-4: true
  1943. pvp_y_3-5: true
  1944. pvp_y_4-1: true
  1945. pvp_y_4-2: true
  1946. pvp_y_4-3: true
  1947. pvp_y_4-4: true
  1948. pvp_y_4-5: true
  1949. pvp_y_5-1: true
  1950. pvp_y_5-2: true
  1951. pvp_y_5-3: true
  1952. pvp_y_5-4: true
  1953. pvp_y_5-5: true
  1954. pvp_y_6-1: true
  1955. pvp_y_6-2: true
  1956. pvp_y_6-3: true
  1957. pvp_y_6-4: true
  1958. pvp_y_6-5: true
  1959. pvp_y_7-1: true
  1960. pvp_y_7-2: true
  1961. pvp_y_7-3: true
  1962. pvp_y_7-4: true
  1963. pvp_y_7-5: true
  1964. pvp_y_8-1: true
  1965. pvp_y_8-2: true
  1966. pvp_y_8-3: true
  1967. pvp_y_8-4: true
  1968. pvp_y_8-5: true
  1969. Mapflags:
  1970. - Flag: HideMobHpBar
  1971. - Flag: NoCostume
  1972. - Flag: NoMemo
  1973. - Flag: NoPenalty
  1974. - Flag: NoSave
  1975. Value: SavePoint
  1976. - Flag: NoTeleport
  1977. - Flag: NoWarpTo
  1978. - Flag: PvP
  1979. - Flag: PvP_NoGuild
  1980. - Flag: PvP_NoParty
  1981. - Id: Event_GuildWar
  1982. DisabledSkills:
  1983. - Skill: TF_BACKSLIDING
  1984. Pc: 100
  1985. - Skill: AL_WARP
  1986. Pc: 100
  1987. - Skill: WZ_ICEWALL
  1988. Pc: 100
  1989. - Skill: WE_CALLPARTNER
  1990. Pc: 100
  1991. - Skill: WE_CALLBABY
  1992. Pc: 100
  1993. - Skill: WE_CALLPARENT
  1994. Pc: 100
  1995. - Skill: HP_ASSUMPTIO
  1996. Pc: 100
  1997. - Skill: HP_BASILICA
  1998. Pc: 100
  1999. - Skill: CR_CULTIVATION
  2000. Pc: 100
  2001. - Skill: CG_MOONLIT
  2002. Pc: 100
  2003. - Skill: NJ_KIRIKAGE
  2004. Pc: 100
  2005. - Skill: SC_DIMENSIONDOOR
  2006. Pc: 100
  2007. - Skill: WE_CALLALLFAMILY
  2008. Pc: 100
  2009. - Skill: WE_CHEERUP
  2010. Pc: 100
  2011. - Skill: AB_CONVENIO
  2012. Pc: 100
  2013. DisabledItems:
  2014. Anodyne: 100
  2015. Assumptio_5_Scroll: 100
  2016. Blood_Butterfly_Card: 100
  2017. Minus_Agi: 100
  2018. Minus_Dex: 100
  2019. Minus_Int: 100
  2020. Minus_Luk: 100
  2021. Minus_Str: 100
  2022. Minus_Vit: 100
  2023. Neuralizer: 100
  2024. Orleans_Gown: 100
  2025. Phen_Card: 100
  2026. Pty_Assumptio_Scroll: 100
  2027. Runstone_Crush: 100
  2028. Runstone_Millennium: 100
  2029. Runstone_Storm: 100
  2030. Sg_Blue_Potion_Box: 100
  2031. TE_Ring_Of_Defiance: 100
  2032. TE_Ring_Of_Protection: 100
  2033. TE_Ring_Of_Rage: 100
  2034. TE_White_Potion: 100
  2035. TE_White_Slim_Potion: 100
  2036. TE_Woe_Axe: 100
  2037. TE_Woe_Bone_Helm: 100
  2038. TE_Woe_Book: 100
  2039. TE_Woe_Boots: 100
  2040. TE_Woe_Bow: 100
  2041. TE_Woe_Buckler: 100
  2042. TE_Woe_Cap: 100
  2043. TE_Woe_Chain_Mail: 100
  2044. TE_Woe_Coat: 100
  2045. TE_Woe_Fist: 100
  2046. TE_Woe_Gatling: 100
  2047. TE_Woe_Grenade: 100
  2048. TE_Woe_Guitar: 100
  2049. TE_Woe_Huuma: 100
  2050. TE_Woe_Katar: 100
  2051. TE_Woe_Knife: 100
  2052. TE_Woe_Lance: 100
  2053. TE_Woe_Mace: 100
  2054. TE_Woe_Mage_Coat: 100
  2055. TE_Woe_Magic_Eyes: 100
  2056. TE_Woe_Magic_Guard: 100
  2057. TE_Woe_Magic_Manteau: 100
  2058. TE_Woe_Magic_Sandal: 100
  2059. TE_Woe_Manteau: 100
  2060. TE_Woe_Muffler: 100
  2061. TE_Woe_Pike: 100
  2062. TE_Woe_Pistol: 100
  2063. TE_Woe_Rifle: 100
  2064. TE_Woe_Rope: 100
  2065. TE_Woe_Shield: 100
  2066. TE_Woe_Shoes: 100
  2067. TE_Woe_Shotgun: 100
  2068. TE_Woe_Staff: 100
  2069. TE_Woe_Sword: 100
  2070. TE_Woe_Two_Handed_Axe: 100
  2071. TE_Woe_Two_Hand_Staff: 100
  2072. TE_Woe_Two_Hand_Sword: 100
  2073. Treasure_Box_Scroll: 100
  2074. Uni_Catalog_Bz: 100
  2075. Vending_Search_Scroll2: 100
  2076. Vending_Search_Scroll: 100
  2077. Woe_Blue_Potion: 100
  2078. Woe_Violet_Potion: 100
  2079. Woe_White_Potion: 100
  2080. DisabledStatuses:
  2081. Endure: 100
  2082. Cheerup: 100
  2083. Maps:
  2084. guild_vs5: true
  2085. Mapflags:
  2086. - Flag: Flee_Penalty
  2087. Value: 20
  2088. - Flag: GvG
  2089. - Flag: GvG_NoParty
  2090. - Flag: HideDamage
  2091. - Flag: HideMobHpBar
  2092. - Flag: Invincible_Time
  2093. Value: 10000
  2094. - Flag: Long_Damage_Rate
  2095. Value: 80
  2096. - Flag: Magic_Damage_Rate
  2097. Value: 60
  2098. - Flag: Misc_Damage_Rate
  2099. Value: 60
  2100. - Flag: NoBranch
  2101. - Flag: NoCostume
  2102. - Flag: NoCostume
  2103. - Flag: NoLockOn
  2104. - Flag: NoMemo
  2105. - Flag: NoPenalty
  2106. - Flag: NoSave
  2107. Value: SavePoint
  2108. - Flag: NoTeleport
  2109. - Flag: NoWarpTo
  2110. - Flag: PvP_NoParty
  2111. - Flag: Short_Damage_Rate
  2112. Value: 80
  2113. - Flag: Skill_Duration
  2114. Value: HT_SKIDTRAP,400
  2115. - Flag: Skill_Duration
  2116. Value: HT_LANDMINE,400
  2117. - Flag: Skill_Duration
  2118. Value: HT_ANKLESNARE,400
  2119. - Flag: Skill_Duration
  2120. Value: HT_SHOCKWAVE,400
  2121. - Flag: Skill_Duration
  2122. Value: HT_SANDMAN,400
  2123. - Flag: Skill_Duration
  2124. Value: HT_FLASHER,400
  2125. - Flag: Skill_Duration
  2126. Value: HT_FREEZINGTRAP,400
  2127. - Flag: Skill_Duration
  2128. Value: HT_BLASTMINE,400
  2129. - Flag: Skill_Duration
  2130. Value: HT_CLAYMORETRAP,400
  2131. - Flag: Skill_Duration
  2132. Value: HT_TALKIEBOX,400
  2133. - Flag: Weapon_Damage_Rate
  2134. Value: 60
  2135. - Id: Agit # WoE:FE
  2136. DisabledSkills:
  2137. - Skill: TF_BACKSLIDING
  2138. Pc: 100
  2139. - Skill: AL_WARP
  2140. Pc: 100
  2141. - Skill: WZ_ICEWALL
  2142. Pc: 100
  2143. - Skill: WE_CALLPARTNER
  2144. Pc: 100
  2145. - Skill: WE_CALLBABY
  2146. Pc: 100
  2147. - Skill: WE_CALLPARENT
  2148. Pc: 100
  2149. - Skill: SL_KAIZEL
  2150. Pc: 100
  2151. - Skill: HP_ASSUMPTIO
  2152. Pc: 100
  2153. - Skill: HP_BASILICA
  2154. Pc: 100
  2155. - Skill: CR_CULTIVATION
  2156. Pc: 100
  2157. - Skill: CG_MOONLIT
  2158. Pc: 100
  2159. - Skill: NJ_KIRIKAGE
  2160. Pc: 100
  2161. - Skill: SC_DIMENSIONDOOR
  2162. Pc: 100
  2163. - Skill: GN_THORNS_TRAP
  2164. Pc: 100
  2165. - Skill: GN_WALLOFTHORN
  2166. Pc: 100
  2167. - Skill: WE_CALLALLFAMILY
  2168. Pc: 100
  2169. - Skill: WE_CHEERUP
  2170. Pc: 100
  2171. - Skill: AB_CONVENIO
  2172. Pc: 100
  2173. DisabledItems:
  2174. Anodyne: 100
  2175. Assumptio_5_Scroll: 100
  2176. Greed_Scroll: 100
  2177. Minus_Agi: 100
  2178. Minus_Dex: 100
  2179. Minus_Int: 100
  2180. Minus_Luk: 100
  2181. Minus_Str: 100
  2182. Minus_Vit: 100
  2183. Neuralizer: 100
  2184. N_Fly_Wing: 100
  2185. Pty_Assumptio_Scroll: 100
  2186. Runstone_Crush: 100
  2187. Runstone_Millennium: 100
  2188. Runstone_Storm: 100
  2189. TE_Ring_Of_Defiance: 100
  2190. TE_Ring_Of_Protection: 100
  2191. TE_Ring_Of_Rage: 100
  2192. TE_White_Potion: 100
  2193. TE_White_Slim_Potion: 100
  2194. TE_Woe_Axe: 100
  2195. TE_Woe_Bone_Helm: 100
  2196. TE_Woe_Book: 100
  2197. TE_Woe_Boots: 100
  2198. TE_Woe_Bow: 100
  2199. TE_Woe_Buckler: 100
  2200. TE_Woe_Cap: 100
  2201. TE_Woe_Chain_Mail: 100
  2202. TE_Woe_Coat: 100
  2203. TE_Woe_Fist: 100
  2204. TE_Woe_Gatling: 100
  2205. TE_Woe_Grenade: 100
  2206. TE_Woe_Guitar: 100
  2207. TE_Woe_Huuma: 100
  2208. TE_Woe_Katar: 100
  2209. TE_Woe_Knife: 100
  2210. TE_Woe_Lance: 100
  2211. TE_Woe_Mace: 100
  2212. TE_Woe_Mage_Coat: 100
  2213. TE_Woe_Magic_Eyes: 100
  2214. TE_Woe_Magic_Guard: 100
  2215. TE_Woe_Magic_Manteau: 100
  2216. TE_Woe_Magic_Sandal: 100
  2217. TE_Woe_Manteau: 100
  2218. TE_Woe_Muffler: 100
  2219. TE_Woe_Pike: 100
  2220. TE_Woe_Pistol: 100
  2221. TE_Woe_Rifle: 100
  2222. TE_Woe_Rope: 100
  2223. TE_Woe_Shield: 100
  2224. TE_Woe_Shoes: 100
  2225. TE_Woe_Shotgun: 100
  2226. TE_Woe_Staff: 100
  2227. TE_Woe_Sword: 100
  2228. TE_Woe_Two_Handed_Axe: 100
  2229. TE_Woe_Two_Hand_Staff: 100
  2230. TE_Woe_Two_Hand_Sword: 100
  2231. Treasure_Box_Scroll: 100
  2232. Uni_Catalog_Bz: 100
  2233. Vending_Search_Scroll2: 100
  2234. Vending_Search_Scroll: 100
  2235. Maps:
  2236. aldeg_cas01: true
  2237. aldeg_cas02: true
  2238. aldeg_cas03: true
  2239. aldeg_cas04: true
  2240. aldeg_cas05: true
  2241. gefg_cas01: true
  2242. gefg_cas02: true
  2243. gefg_cas03: true
  2244. gefg_cas04: true
  2245. gefg_cas05: true
  2246. guild_vs4: true
  2247. nguild_alde: true
  2248. nguild_gef: true
  2249. nguild_pay: true
  2250. nguild_prt: true
  2251. payg_cas01: true
  2252. payg_cas02: true
  2253. payg_cas03: true
  2254. payg_cas04: true
  2255. payg_cas05: true
  2256. prtg_cas01: true
  2257. prtg_cas02: true
  2258. prtg_cas03: true
  2259. prtg_cas04: true
  2260. prtg_cas05: true
  2261. Mapflags:
  2262. - Flag: Flee_Penalty
  2263. Value: 20
  2264. - Flag: GuildLock
  2265. - Flag: GvG_Castle
  2266. - Flag: HideDamage
  2267. - Flag: HideMobHpBar
  2268. - Flag: Invincible_Time
  2269. Value: 10000
  2270. - Flag: Long_Damage_Rate
  2271. Value: 80
  2272. - Flag: Magic_Damage_Rate
  2273. Value: 60
  2274. - Flag: Misc_Damage_Rate
  2275. Value: 60
  2276. - Flag: Monster_NoTeleport
  2277. - Flag: NoBranch
  2278. - Flag: NoCostume
  2279. - Flag: NoLockOn
  2280. - Flag: NoMemo
  2281. - Flag: NoPenalty
  2282. - Flag: NoSave
  2283. Value: SavePoint
  2284. - Flag: NoTeleport
  2285. - Flag: NoWarp
  2286. - Flag: NoWarpTo
  2287. - Flag: PvP_NoParty
  2288. - Flag: Short_Damage_Rate
  2289. Value: 80
  2290. - Flag: Skill_Duration
  2291. Value: HT_SKIDTRAP,400
  2292. - Flag: Skill_Duration
  2293. Value: HT_LANDMINE,400
  2294. - Flag: Skill_Duration
  2295. Value: HT_ANKLESNARE,400
  2296. - Flag: Skill_Duration
  2297. Value: HT_SHOCKWAVE,400
  2298. - Flag: Skill_Duration
  2299. Value: HT_SANDMAN,400
  2300. - Flag: Skill_Duration
  2301. Value: HT_FLASHER,400
  2302. - Flag: Skill_Duration
  2303. Value: HT_FREEZINGTRAP,400
  2304. - Flag: Skill_Duration
  2305. Value: HT_BLASTMINE,400
  2306. - Flag: Skill_Duration
  2307. Value: HT_CLAYMORETRAP,400
  2308. - Flag: Skill_Duration
  2309. Value: HT_TALKIEBOX,400
  2310. - Flag: Weapon_Damage_Rate
  2311. Value: 60
  2312. - Id: Dungeon2 # Guild Dungeon - PK Enabled
  2313. DisabledItems:
  2314. Minus_Agi: 100
  2315. Minus_Dex: 100
  2316. Minus_Int: 100
  2317. Minus_Luk: 100
  2318. Minus_Str: 100
  2319. Minus_Vit: 100
  2320. Neuralizer: 100
  2321. Runstone_Crush: 100
  2322. Runstone_Millennium: 100
  2323. Runstone_Storm: 100
  2324. TE_Ring_Of_Defiance: 100
  2325. TE_Ring_Of_Protection: 100
  2326. TE_Ring_Of_Rage: 100
  2327. TE_White_Potion: 100
  2328. TE_White_Slim_Potion: 100
  2329. TE_Woe_Axe: 100
  2330. TE_Woe_Bone_Helm: 100
  2331. TE_Woe_Book: 100
  2332. TE_Woe_Boots: 100
  2333. TE_Woe_Bow: 100
  2334. TE_Woe_Buckler: 100
  2335. TE_Woe_Cap: 100
  2336. TE_Woe_Chain_Mail: 100
  2337. TE_Woe_Coat: 100
  2338. TE_Woe_Fist: 100
  2339. TE_Woe_Gatling: 100
  2340. TE_Woe_Grenade: 100
  2341. TE_Woe_Guitar: 100
  2342. TE_Woe_Huuma: 100
  2343. TE_Woe_Katar: 100
  2344. TE_Woe_Knife: 100
  2345. TE_Woe_Lance: 100
  2346. TE_Woe_Mace: 100
  2347. TE_Woe_Mage_Coat: 100
  2348. TE_Woe_Magic_Eyes: 100
  2349. TE_Woe_Magic_Guard: 100
  2350. TE_Woe_Magic_Manteau: 100
  2351. TE_Woe_Magic_Sandal: 100
  2352. TE_Woe_Manteau: 100
  2353. TE_Woe_Muffler: 100
  2354. TE_Woe_Pike: 100
  2355. TE_Woe_Pistol: 100
  2356. TE_Woe_Rifle: 100
  2357. TE_Woe_Rope: 100
  2358. TE_Woe_Shield: 100
  2359. TE_Woe_Shoes: 100
  2360. TE_Woe_Shotgun: 100
  2361. TE_Woe_Staff: 100
  2362. TE_Woe_Sword: 100
  2363. TE_Woe_Two_Handed_Axe: 100
  2364. TE_Woe_Two_Hand_Staff: 100
  2365. TE_Woe_Two_Hand_Sword: 100
  2366. Uni_Catalog_Bz: 100
  2367. Vending_Search_Scroll2: 100
  2368. Vending_Search_Scroll: 100
  2369. Maps:
  2370. arug_dun01: true
  2371. gld2_ald: true
  2372. gld2_gef: true
  2373. gld2_pay: true
  2374. gld2_prt: true
  2375. gld_dun01: true
  2376. gld_dun02: true
  2377. gld_dun03: true
  2378. gld_dun04: true
  2379. schg_dun01: true
  2380. teg_dun01: true
  2381. teg_dun02: true
  2382. Mapflags:
  2383. - Flag: GvG_Dungeon
  2384. - Flag: NoCostume
  2385. - Flag: NoMemo
  2386. - Flag: NoSave
  2387. Value: SavePoint
  2388. - Flag: NoWarpTo
  2389. - Flag: PvP_NoParty
  2390. - Id: Dungeon3 # Teleport Disabled
  2391. DisabledSkills:
  2392. - Skill: BD_ETERNALCHAOS
  2393. Pc: 100
  2394. - Skill: BD_ROKISWEIL
  2395. Pc: 100
  2396. - Skill: BA_DISSONANCE
  2397. Pc: 100
  2398. - Skill: DC_UGLYDANCE
  2399. Pc: 100
  2400. - Skill: DC_DONTFORGETME
  2401. Pc: 100
  2402. - Skill: WM_GLOOMYDAY
  2403. Pc: 100
  2404. - Skill: WM_SOUND_OF_DESTRUCTION
  2405. Pc: 100
  2406. - Skill: WM_SATURDAY_NIGHT_FEVER
  2407. Pc: 100
  2408. - Skill: WM_MELODYOFSINK
  2409. Pc: 100
  2410. - Skill: WM_BEYOND_OF_WARCRY
  2411. Pc: 100
  2412. - Skill: SO_ARRULLO
  2413. Pc: 100
  2414. - Skill: SC_MANHOLE
  2415. Pc: 100
  2416. - Skill: SC_BLOODYLUST
  2417. Pc: 100
  2418. - Skill: SC_DIMENSIONDOOR
  2419. Pc: 100
  2420. - Skill: WE_CALLALLFAMILY
  2421. Pc: 100
  2422. - Skill: AB_CONVENIO
  2423. Pc: 100
  2424. - Skill: TR_ROKI_CAPRICCIO
  2425. Pc: 100
  2426. - Skill: TR_NIPELHEIM_REQUIEM
  2427. Pc: 100
  2428. - Skill: EM_ACTIVITY_BURN
  2429. Pc: 100
  2430. DisabledItems:
  2431. Minus_Agi: 100
  2432. Minus_Dex: 100
  2433. Minus_Int: 100
  2434. Minus_Luk: 100
  2435. Minus_Str: 100
  2436. Minus_Vit: 100
  2437. Neuralizer: 100
  2438. N_Fly_Wing: 100
  2439. Runstone_Crush: 100
  2440. Runstone_Millennium: 100
  2441. Runstone_Storm: 100
  2442. Sg_Blue_Potion_Box: 100
  2443. Sg_Violet_Potion_Box: 100
  2444. Sg_White_Potion_Box: 100
  2445. Siege_Arrow_A: 100
  2446. Siege_Arrow_S: 100
  2447. Siege_Boots: 100
  2448. Siege_Greave: 100
  2449. Siege_Manteau: 100
  2450. Siege_Muffler: 100
  2451. Siege_Plate: 100
  2452. Siege_Robe: 100
  2453. Siege_Shoes: 100
  2454. Siege_Suits: 100
  2455. TE_Ring_Of_Defiance: 100
  2456. TE_Ring_Of_Protection: 100
  2457. TE_Ring_Of_Rage: 100
  2458. TE_White_Potion: 100
  2459. TE_White_Slim_Potion: 100
  2460. TE_Woe_Axe: 100
  2461. TE_Woe_Bone_Helm: 100
  2462. TE_Woe_Book: 100
  2463. TE_Woe_Boots: 100
  2464. TE_Woe_Bow: 100
  2465. TE_Woe_Buckler: 100
  2466. TE_Woe_Cap: 100
  2467. TE_Woe_Chain_Mail: 100
  2468. TE_Woe_Coat: 100
  2469. TE_Woe_Fist: 100
  2470. TE_Woe_Gatling: 100
  2471. TE_Woe_Grenade: 100
  2472. TE_Woe_Guitar: 100
  2473. TE_Woe_Huuma: 100
  2474. TE_Woe_Katar: 100
  2475. TE_Woe_Knife: 100
  2476. TE_Woe_Lance: 100
  2477. TE_Woe_Mace: 100
  2478. TE_Woe_Mage_Coat: 100
  2479. TE_Woe_Magic_Eyes: 100
  2480. TE_Woe_Magic_Guard: 100
  2481. TE_Woe_Magic_Manteau: 100
  2482. TE_Woe_Magic_Sandal: 100
  2483. TE_Woe_Manteau: 100
  2484. TE_Woe_Muffler: 100
  2485. TE_Woe_Pike: 100
  2486. TE_Woe_Pistol: 100
  2487. TE_Woe_Rifle: 100
  2488. TE_Woe_Rope: 100
  2489. TE_Woe_Shield: 100
  2490. TE_Woe_Shoes: 100
  2491. TE_Woe_Shotgun: 100
  2492. TE_Woe_Staff: 100
  2493. TE_Woe_Sword: 100
  2494. TE_Woe_Two_Handed_Axe: 100
  2495. TE_Woe_Two_Hand_Staff: 100
  2496. TE_Woe_Two_Hand_Sword: 100
  2497. Uni_Catalog_Bz: 100
  2498. Velum_Arbalest: 100
  2499. Velum_Arc_Wand: 100
  2500. Velum_Bible: 100
  2501. Velum_Buster: 100
  2502. Velum_Claw: 100
  2503. Velum_Claymore: 100
  2504. Velum_CrossBow: 100
  2505. Velum_Damascus: 100
  2506. Velum_Encyclopedia: 100
  2507. Velum_Flail: 100
  2508. Velum_Glaive: 100
  2509. Velum_Guillotine: 100
  2510. Velum_Jamadhar: 100
  2511. Velum_Katzbalger: 100
  2512. Velum_Scare: 100
  2513. Velum_Spear: 100
  2514. Velum_Stunner: 100
  2515. Vending_Search_Scroll2: 100
  2516. Vending_Search_Scroll: 100
  2517. Woe_Blue_Potion: 100
  2518. Woe_Violet_Potion: 100
  2519. Woe_White_Potion: 100
  2520. Maps:
  2521. ama_dun01: true
  2522. kh_dun01: true
  2523. tha_t07: true
  2524. tha_t08: true
  2525. tha_t09: true
  2526. tha_t10: true
  2527. tha_t11: true
  2528. tha_t12: true
  2529. thana_boss: true
  2530. thana_step: true
  2531. Mapflags:
  2532. - Flag: NoMemo
  2533. - Flag: NoTeleport
  2534. - Flag: NoWarpTo
  2535. - Id: PkServer
  2536. # PK Mode zone is only used when the server has pk_mode (battle.conf) enabled
  2537. # This applies to all PvP maps that don't have their own zone
  2538. DisabledSkills:
  2539. - Skill: AB_CONVENIO
  2540. Pc: 100
  2541. DisabledItems:
  2542. Minus_Agi: 100
  2543. Minus_Dex: 100
  2544. Minus_Int: 100
  2545. Minus_Luk: 100
  2546. Minus_Str: 100
  2547. Minus_Vit: 100
  2548. Neuralizer: 100
  2549. Runstone_Crush: 100
  2550. Runstone_Millennium: 100
  2551. Runstone_Storm: 100
  2552. TE_Ring_Of_Defiance: 100
  2553. TE_Ring_Of_Protection: 100
  2554. TE_Ring_Of_Rage: 100
  2555. TE_White_Potion: 100
  2556. TE_White_Slim_Potion: 100
  2557. TE_Woe_Axe: 100
  2558. TE_Woe_Bone_Helm: 100
  2559. TE_Woe_Book: 100
  2560. TE_Woe_Boots: 100
  2561. TE_Woe_Bow: 100
  2562. TE_Woe_Buckler: 100
  2563. TE_Woe_Cap: 100
  2564. TE_Woe_Chain_Mail: 100
  2565. TE_Woe_Coat: 100
  2566. TE_Woe_Fist: 100
  2567. TE_Woe_Gatling: 100
  2568. TE_Woe_Grenade: 100
  2569. TE_Woe_Guitar: 100
  2570. TE_Woe_Huuma: 100
  2571. TE_Woe_Katar: 100
  2572. TE_Woe_Knife: 100
  2573. TE_Woe_Lance: 100
  2574. TE_Woe_Mace: 100
  2575. TE_Woe_Mage_Coat: 100
  2576. TE_Woe_Magic_Eyes: 100
  2577. TE_Woe_Magic_Guard: 100
  2578. TE_Woe_Magic_Manteau: 100
  2579. TE_Woe_Magic_Sandal: 100
  2580. TE_Woe_Manteau: 100
  2581. TE_Woe_Muffler: 100
  2582. TE_Woe_Pike: 100
  2583. TE_Woe_Pistol: 100
  2584. TE_Woe_Rifle: 100
  2585. TE_Woe_Rope: 100
  2586. TE_Woe_Shield: 100
  2587. TE_Woe_Shoes: 100
  2588. TE_Woe_Shotgun: 100
  2589. TE_Woe_Staff: 100
  2590. TE_Woe_Sword: 100
  2591. TE_Woe_Two_Handed_Axe: 100
  2592. TE_Woe_Two_Hand_Staff: 100
  2593. TE_Woe_Two_Hand_Sword: 100
  2594. Uni_Catalog_Bz: 100
  2595. Vending_Search_Scroll2: 100
  2596. Vending_Search_Scroll: 100
  2597. Maps:
  2598. pvp_n_1-2: true
  2599. pvp_n_1-3: true
  2600. pvp_n_1-4: true
  2601. pvp_n_1-5: true
  2602. Mapflags:
  2603. - Flag: Flee_Penalty
  2604. Value: 20
  2605. - Flag: HideMobHpBar
  2606. - Flag: Long_Damage_Rate
  2607. Value: 70
  2608. - Flag: Magic_Damage_Rate
  2609. Value: 60
  2610. - Flag: Misc_Damage_Rate
  2611. Value: 60
  2612. - Flag: NoCostume
  2613. - Flag: PvP
  2614. - Flag: PvP_NoGuild
  2615. - Flag: PvP_NoParty
  2616. - Flag: Short_Damage_Rate
  2617. Value: 80
  2618. - Flag: Weapon_Damage_Rate
  2619. Value: 60
  2620. - Id: PvpServer
  2621. DisabledSkills:
  2622. - Skill: SM_ENDURE
  2623. Pc: 100
  2624. - Skill: AL_WARP
  2625. Pc: 100
  2626. - Skill: AL_CURE
  2627. Pc: 100
  2628. - Skill: TF_HIDING
  2629. Pc: 100
  2630. - Skill: WZ_ICEWALL
  2631. Pc: 100
  2632. - Skill: AS_CLOAKING
  2633. Pc: 100
  2634. - Skill: MO_BODYRELOCATION
  2635. Pc: 100
  2636. - Skill: BD_ETERNALCHAOS
  2637. Pc: 100
  2638. - Skill: BD_ROKISWEIL
  2639. Pc: 100
  2640. - Skill: BA_DISSONANCE
  2641. Pc: 100
  2642. - Skill: DC_UGLYDANCE
  2643. Pc: 100
  2644. - Skill: DC_DONTFORGETME
  2645. Pc: 100
  2646. - Skill: LK_CONCENTRATION
  2647. Pc: 100
  2648. - Skill: LK_BERSERK
  2649. Pc: 100
  2650. - Skill: HP_BASILICA
  2651. Pc: 100
  2652. - Skill: WS_CARTBOOST
  2653. Pc: 100
  2654. - Skill: ST_CHASEWALK
  2655. Pc: 100
  2656. - Skill: CG_MOONLIT
  2657. Pc: 100
  2658. - Skill: SC_DIMENSIONDOOR
  2659. Pc: 100
  2660. - Skill: WM_GLOOMYDAY
  2661. Pc: 100
  2662. - Skill: WM_SOUND_OF_DESTRUCTION
  2663. Pc: 100
  2664. - Skill: WM_SATURDAY_NIGHT_FEVER
  2665. Pc: 100
  2666. - Skill: WM_MELODYOFSINK
  2667. Pc: 100
  2668. - Skill: WM_BEYOND_OF_WARCRY
  2669. Pc: 100
  2670. - Skill: SO_ARRULLO
  2671. Pc: 100
  2672. - Skill: GN_CARTBOOST
  2673. Pc: 100
  2674. - Skill: SC_MANHOLE
  2675. Pc: 100
  2676. - Skill: SC_BLOODYLUST
  2677. Pc: 100
  2678. - Skill: WE_CALLALLFAMILY
  2679. Pc: 100
  2680. - Skill: TR_ROKI_CAPRICCIO
  2681. Pc: 100
  2682. - Skill: TR_NIPELHEIM_REQUIEM
  2683. Pc: 100
  2684. - Skill: EM_ACTIVITY_BURN
  2685. Pc: 100
  2686. DisabledItems:
  2687. Anodyne: 100
  2688. Green_Potion: 100
  2689. Minus_Agi: 100
  2690. Minus_Dex: 100
  2691. Minus_Int: 100
  2692. Minus_Luk: 100
  2693. Minus_Str: 100
  2694. Minus_Vit: 100
  2695. Neuralizer: 100
  2696. N_Fly_Wing: 100
  2697. Panacea: 100
  2698. Runstone_Crush: 100
  2699. Runstone_Millennium: 100
  2700. Runstone_Storm: 100
  2701. Sg_Blue_Potion_Box: 100
  2702. Sg_Violet_Potion_Box: 100
  2703. Sg_White_Potion_Box: 100
  2704. Siege_Arrow_A: 100
  2705. Siege_Arrow_S: 100
  2706. Siege_Boots: 100
  2707. Siege_Greave: 100
  2708. Siege_Manteau: 100
  2709. Siege_Muffler: 100
  2710. Siege_Plate: 100
  2711. Siege_Robe: 100
  2712. Siege_Shoes: 100
  2713. Siege_Suits: 100
  2714. TE_Ring_Of_Defiance: 100
  2715. TE_Ring_Of_Protection: 100
  2716. TE_Ring_Of_Rage: 100
  2717. TE_White_Potion: 100
  2718. TE_White_Slim_Potion: 100
  2719. TE_Woe_Axe: 100
  2720. TE_Woe_Bone_Helm: 100
  2721. TE_Woe_Book: 100
  2722. TE_Woe_Boots: 100
  2723. TE_Woe_Bow: 100
  2724. TE_Woe_Buckler: 100
  2725. TE_Woe_Cap: 100
  2726. TE_Woe_Chain_Mail: 100
  2727. TE_Woe_Coat: 100
  2728. TE_Woe_Fist: 100
  2729. TE_Woe_Gatling: 100
  2730. TE_Woe_Grenade: 100
  2731. TE_Woe_Guitar: 100
  2732. TE_Woe_Huuma: 100
  2733. TE_Woe_Katar: 100
  2734. TE_Woe_Knife: 100
  2735. TE_Woe_Lance: 100
  2736. TE_Woe_Mace: 100
  2737. TE_Woe_Mage_Coat: 100
  2738. TE_Woe_Magic_Eyes: 100
  2739. TE_Woe_Magic_Guard: 100
  2740. TE_Woe_Magic_Manteau: 100
  2741. TE_Woe_Magic_Sandal: 100
  2742. TE_Woe_Manteau: 100
  2743. TE_Woe_Muffler: 100
  2744. TE_Woe_Pike: 100
  2745. TE_Woe_Pistol: 100
  2746. TE_Woe_Rifle: 100
  2747. TE_Woe_Rope: 100
  2748. TE_Woe_Shield: 100
  2749. TE_Woe_Shoes: 100
  2750. TE_Woe_Shotgun: 100
  2751. TE_Woe_Staff: 100
  2752. TE_Woe_Sword: 100
  2753. TE_Woe_Two_Handed_Axe: 100
  2754. TE_Woe_Two_Hand_Staff: 100
  2755. TE_Woe_Two_Hand_Sword: 100
  2756. Treasure_Box_Scroll: 100
  2757. Uni_Catalog_Bz: 100
  2758. Velum_Arbalest: 100
  2759. Velum_Arc_Wand: 100
  2760. Velum_Bible: 100
  2761. Velum_Buster: 100
  2762. Velum_Claw: 100
  2763. Velum_Claymore: 100
  2764. Velum_CrossBow: 100
  2765. Velum_Damascus: 100
  2766. Velum_Encyclopedia: 100
  2767. Velum_Flail: 100
  2768. Velum_Glaive: 100
  2769. Velum_Guillotine: 100
  2770. Velum_Jamadhar: 100
  2771. Velum_Katzbalger: 100
  2772. Velum_Scare: 100
  2773. Velum_Spear: 100
  2774. Velum_Stunner: 100
  2775. Vending_Search_Scroll2: 100
  2776. Vending_Search_Scroll: 100
  2777. Woe_Blue_Potion: 100
  2778. Woe_Violet_Potion: 100
  2779. Woe_White_Potion: 100
  2780. Maps:
  2781. prt_are_in: true
  2782. turbo_n_1: true
  2783. turbo_n_16: true
  2784. turbo_n_4: true
  2785. turbo_n_8: true
  2786. Mapflags:
  2787. - Flag: Flee_Penalty
  2788. Value: 20
  2789. - Flag: HideMobHpBar
  2790. - Flag: Long_Damage_Rate
  2791. Value: 80
  2792. - Flag: Magic_Damage_Rate
  2793. Value: 60
  2794. - Flag: Misc_Damage_Rate
  2795. Value: 60
  2796. - Flag: NoBranch
  2797. - Flag: NoKnockBack
  2798. - Flag: NoMemo
  2799. - Flag: NoPenalty
  2800. - Flag: NoSave
  2801. Value: SavePoint
  2802. - Flag: NoTeleport
  2803. - Flag: NoWarp
  2804. - Flag: NoWarpTo
  2805. - Flag: PvP_NoGuild
  2806. - Flag: PvP_NoParty
  2807. - Flag: Short_Damage_Rate
  2808. Value: 80
  2809. - Flag: Weapon_Damage_Rate
  2810. Value: 60
  2811. - Id: DenySkill # For the Korean quiz event and similar things
  2812. DisabledSkills: # !TODO: Are these skill blocks needed since MF_NOSKILL is active?
  2813. - Skill: WM_GLOOMYDAY
  2814. Pc: 100
  2815. - Skill: WM_SOUND_OF_DESTRUCTION
  2816. Pc: 100
  2817. - Skill: WM_SATURDAY_NIGHT_FEVER
  2818. Pc: 100
  2819. - Skill: WM_MELODYOFSINK
  2820. Pc: 100
  2821. - Skill: WM_BEYOND_OF_WARCRY
  2822. Pc: 100
  2823. - Skill: SC_MANHOLE
  2824. Pc: 100
  2825. - Skill: SC_BLOODYLUST
  2826. Pc: 100
  2827. - Skill: SC_DIMENSIONDOOR
  2828. Pc: 100
  2829. - Skill: WE_CALLALLFAMILY
  2830. Pc: 100
  2831. - Skill: WE_CHEERUP
  2832. Pc: 100
  2833. - Skill: AB_CONVENIO
  2834. Pc: 100
  2835. - Skill: TR_ROKI_CAPRICCIO
  2836. Pc: 100
  2837. - Skill: TR_NIPELHEIM_REQUIEM
  2838. Pc: 100
  2839. - Skill: EM_ACTIVITY_BURN
  2840. Pc: 100
  2841. DisabledItems:
  2842. Minus_Agi: 100
  2843. Minus_Dex: 100
  2844. Minus_Int: 100
  2845. Minus_Luk: 100
  2846. Minus_Str: 100
  2847. Minus_Vit: 100
  2848. Neuralizer: 100
  2849. Runstone_Crush: 100
  2850. Runstone_Millennium: 100
  2851. Runstone_Storm: 100
  2852. Sg_Blue_Potion_Box: 100
  2853. Sg_Violet_Potion_Box: 100
  2854. Sg_White_Potion_Box: 100
  2855. Siege_Arrow_A: 100
  2856. Siege_Arrow_S: 100
  2857. Siege_Boots: 100
  2858. Siege_Greave: 100
  2859. Siege_Manteau: 100
  2860. Siege_Muffler: 100
  2861. Siege_Plate: 100
  2862. Siege_Robe: 100
  2863. Siege_Shoes: 100
  2864. Siege_Suits: 100
  2865. TE_Ring_Of_Defiance: 100
  2866. TE_Ring_Of_Protection: 100
  2867. TE_Ring_Of_Rage: 100
  2868. TE_White_Potion: 100
  2869. TE_White_Slim_Potion: 100
  2870. TE_Woe_Axe: 100
  2871. TE_Woe_Bone_Helm: 100
  2872. TE_Woe_Book: 100
  2873. TE_Woe_Boots: 100
  2874. TE_Woe_Bow: 100
  2875. TE_Woe_Buckler: 100
  2876. TE_Woe_Cap: 100
  2877. TE_Woe_Chain_Mail: 100
  2878. TE_Woe_Coat: 100
  2879. TE_Woe_Fist: 100
  2880. TE_Woe_Gatling: 100
  2881. TE_Woe_Grenade: 100
  2882. TE_Woe_Guitar: 100
  2883. TE_Woe_Huuma: 100
  2884. TE_Woe_Katar: 100
  2885. TE_Woe_Knife: 100
  2886. TE_Woe_Lance: 100
  2887. TE_Woe_Mace: 100
  2888. TE_Woe_Mage_Coat: 100
  2889. TE_Woe_Magic_Eyes: 100
  2890. TE_Woe_Magic_Guard: 100
  2891. TE_Woe_Magic_Manteau: 100
  2892. TE_Woe_Magic_Sandal: 100
  2893. TE_Woe_Manteau: 100
  2894. TE_Woe_Muffler: 100
  2895. TE_Woe_Pike: 100
  2896. TE_Woe_Pistol: 100
  2897. TE_Woe_Rifle: 100
  2898. TE_Woe_Rope: 100
  2899. TE_Woe_Shield: 100
  2900. TE_Woe_Shoes: 100
  2901. TE_Woe_Shotgun: 100
  2902. TE_Woe_Staff: 100
  2903. TE_Woe_Sword: 100
  2904. TE_Woe_Two_Handed_Axe: 100
  2905. TE_Woe_Two_Hand_Staff: 100
  2906. TE_Woe_Two_Hand_Sword: 100
  2907. Treasure_Box_Scroll: 100
  2908. Uni_Catalog_Bz: 100
  2909. Velum_Arbalest: 100
  2910. Velum_Arc_Wand: 100
  2911. Velum_Bible: 100
  2912. Velum_Buster: 100
  2913. Velum_Claw: 100
  2914. Velum_Claymore: 100
  2915. Velum_CrossBow: 100
  2916. Velum_Damascus: 100
  2917. Velum_Encyclopedia: 100
  2918. Velum_Flail: 100
  2919. Velum_Glaive: 100
  2920. Velum_Guillotine: 100
  2921. Velum_Jamadhar: 100
  2922. Velum_Katzbalger: 100
  2923. Velum_Scare: 100
  2924. Velum_Spear: 100
  2925. Velum_Stunner: 100
  2926. Vending_Search_Scroll2: 100
  2927. Vending_Search_Scroll: 100
  2928. Woe_Blue_Potion: 100
  2929. Woe_Violet_Potion: 100
  2930. Woe_White_Potion: 100
  2931. Maps:
  2932. que_bingo: true
  2933. quiz_00: true
  2934. quiz_01: true
  2935. quiz_02: true
  2936. Mapflags:
  2937. - Flag: HideMobHpBar
  2938. - Flag: NoBranch
  2939. - Flag: NoMemo
  2940. - Flag: NoPenalty
  2941. - Flag: NoSave
  2942. Value: SavePoint
  2943. - Flag: NoSkill
  2944. - Flag: NoTeleport
  2945. - Flag: NoWarpTo
  2946. - Flag: PvP_NoGuild
  2947. - Flag: PvP_NoParty
  2948. - Id: TurboTrack # PK Mode
  2949. DisabledSkills:
  2950. - Skill: SM_ENDURE
  2951. Pc: 100
  2952. - Skill: AL_WARP
  2953. Pc: 100
  2954. - Skill: AL_CURE
  2955. Pc: 100
  2956. - Skill: TF_HIDING
  2957. Pc: 100
  2958. - Skill: WZ_ICEWALL
  2959. Pc: 100
  2960. - Skill: AS_CLOAKING
  2961. Pc: 100
  2962. - Skill: MO_BODYRELOCATION
  2963. Pc: 100
  2964. - Skill: LK_CONCENTRATION
  2965. Pc: 100
  2966. - Skill: LK_BERSERK
  2967. Pc: 100
  2968. - Skill: HP_BASILICA
  2969. Pc: 100
  2970. - Skill: WS_CARTBOOST
  2971. Pc: 100
  2972. - Skill: ST_CHASEWALK
  2973. Pc: 100
  2974. - Skill: CG_MOONLIT
  2975. Pc: 100
  2976. - Skill: SC_DIMENSIONDOOR
  2977. Pc: 100
  2978. - Skill: WM_GLOOMYDAY
  2979. Pc: 100
  2980. - Skill: WM_SOUND_OF_DESTRUCTION
  2981. Pc: 100
  2982. - Skill: WM_SATURDAY_NIGHT_FEVER
  2983. Pc: 100
  2984. - Skill: WM_MELODYOFSINK
  2985. Pc: 100
  2986. - Skill: WM_BEYOND_OF_WARCRY
  2987. Pc: 100
  2988. - Skill: GN_CARTBOOST
  2989. Pc: 100
  2990. - Skill: AB_CONVENIO
  2991. Pc: 100
  2992. DisabledItems:
  2993. Anodyne: 100
  2994. Green_Potion: 100
  2995. Minus_Agi: 100
  2996. Minus_Dex: 100
  2997. Minus_Int: 100
  2998. Minus_Luk: 100
  2999. Minus_Str: 100
  3000. Minus_Vit: 100
  3001. Neuralizer: 100
  3002. N_Fly_Wing: 100
  3003. Panacea: 100
  3004. Runstone_Crush: 100
  3005. Runstone_Millennium: 100
  3006. Runstone_Storm: 100
  3007. TE_Ring_Of_Defiance: 100
  3008. TE_Ring_Of_Protection: 100
  3009. TE_Ring_Of_Rage: 100
  3010. TE_White_Potion: 100
  3011. TE_White_Slim_Potion: 100
  3012. TE_Woe_Axe: 100
  3013. TE_Woe_Bone_Helm: 100
  3014. TE_Woe_Book: 100
  3015. TE_Woe_Boots: 100
  3016. TE_Woe_Bow: 100
  3017. TE_Woe_Buckler: 100
  3018. TE_Woe_Cap: 100
  3019. TE_Woe_Chain_Mail: 100
  3020. TE_Woe_Coat: 100
  3021. TE_Woe_Fist: 100
  3022. TE_Woe_Gatling: 100
  3023. TE_Woe_Grenade: 100
  3024. TE_Woe_Guitar: 100
  3025. TE_Woe_Huuma: 100
  3026. TE_Woe_Katar: 100
  3027. TE_Woe_Knife: 100
  3028. TE_Woe_Lance: 100
  3029. TE_Woe_Mace: 100
  3030. TE_Woe_Mage_Coat: 100
  3031. TE_Woe_Magic_Eyes: 100
  3032. TE_Woe_Magic_Guard: 100
  3033. TE_Woe_Magic_Manteau: 100
  3034. TE_Woe_Magic_Sandal: 100
  3035. TE_Woe_Manteau: 100
  3036. TE_Woe_Muffler: 100
  3037. TE_Woe_Pike: 100
  3038. TE_Woe_Pistol: 100
  3039. TE_Woe_Rifle: 100
  3040. TE_Woe_Rope: 100
  3041. TE_Woe_Shield: 100
  3042. TE_Woe_Shoes: 100
  3043. TE_Woe_Shotgun: 100
  3044. TE_Woe_Staff: 100
  3045. TE_Woe_Sword: 100
  3046. TE_Woe_Two_Handed_Axe: 100
  3047. TE_Woe_Two_Hand_Staff: 100
  3048. TE_Woe_Two_Hand_Sword: 100
  3049. Treasure_Box_Scroll: 100
  3050. Uni_Catalog_Bz: 100
  3051. Vending_Search_Scroll2: 100
  3052. Vending_Search_Scroll: 100
  3053. Maps:
  3054. alde_tt02: true
  3055. alde_tt03: true
  3056. turbo_e_4: true
  3057. turbo_e_8: true
  3058. turbo_e_16: true
  3059. Mapflags:
  3060. - Flag: Flee_Penalty
  3061. Value: 20
  3062. - Flag: HideMobHpBar
  3063. - Flag: Long_Damage_Rate
  3064. Value: 80
  3065. - Flag: Magic_Damage_Rate
  3066. Value: 60
  3067. - Flag: Misc_Damage_Rate
  3068. Value: 60
  3069. - Flag: NoBranch
  3070. - Flag: NoCostume
  3071. - Flag: NoKnockBack
  3072. - Flag: NoMemo
  3073. - Flag: NoPenalty
  3074. - Flag: NoSave
  3075. Value: SavePoint
  3076. - Flag: NoTeleport
  3077. - Flag: NoWarp
  3078. - Flag: NoWarpTo
  3079. - Flag: PvP
  3080. - Flag: PvP_NoGuild
  3081. - Flag: PvP_NoParty
  3082. - Flag: Short_Damage_Rate
  3083. Value: 80
  3084. - Flag: Weapon_Damage_Rate
  3085. Value: 60
  3086. - Id: Jail
  3087. DisabledSkills:
  3088. - Skill: BD_ETERNALCHAOS
  3089. Pc: 100
  3090. - Skill: BD_ROKISWEIL
  3091. Pc: 100
  3092. - Skill: BA_DISSONANCE
  3093. Pc: 100
  3094. - Skill: DC_UGLYDANCE
  3095. Pc: 100
  3096. - Skill: DC_DONTFORGETME
  3097. Pc: 100
  3098. #- Skill: TK_JUMPKICK # !TODO: Probably disabled by NoTeleport?
  3099. # Pc: 100
  3100. #- Skill: TK_HIGHJUMP
  3101. # Pc: 100
  3102. - Skill: WM_GLOOMYDAY
  3103. Pc: 100
  3104. - Skill: WM_SOUND_OF_DESTRUCTION
  3105. Pc: 100
  3106. - Skill: WM_SATURDAY_NIGHT_FEVER
  3107. Pc: 100
  3108. - Skill: WM_MELODYOFSINK
  3109. Pc: 100
  3110. - Skill: WM_BEYOND_OF_WARCRY
  3111. Pc: 100
  3112. - Skill: SO_ARRULLO
  3113. Pc: 100
  3114. - Skill: SC_MANHOLE
  3115. Pc: 100
  3116. - Skill: SC_BLOODYLUST
  3117. Pc: 100
  3118. - Skill: SC_DIMENSIONDOOR
  3119. Pc: 100
  3120. - Skill: WE_CALLALLFAMILY
  3121. Pc: 100
  3122. - Skill: AB_CONVENIO
  3123. Pc: 100
  3124. - Skill: TR_ROKI_CAPRICCIO
  3125. Pc: 100
  3126. - Skill: TR_NIPELHEIM_REQUIEM
  3127. Pc: 100
  3128. - Skill: EM_ACTIVITY_BURN
  3129. Pc: 100
  3130. DisabledItems:
  3131. Giant_Fly_Wing: 100
  3132. Minus_Agi: 100
  3133. Minus_Dex: 100
  3134. Minus_Int: 100
  3135. Minus_Luk: 100
  3136. Minus_Str: 100
  3137. Minus_Vit: 100
  3138. Neuralizer: 100
  3139. N_Fly_Wing: 100
  3140. Runstone_Crush: 100
  3141. Runstone_Millennium: 100
  3142. Runstone_Storm: 100
  3143. Sg_Blue_Potion_Box: 100
  3144. Sg_Violet_Potion_Box: 100
  3145. Sg_White_Potion_Box: 100
  3146. Siege_Arrow_A: 100
  3147. Siege_Arrow_S: 100
  3148. Siege_Boots: 100
  3149. Siege_Greave: 100
  3150. Siege_Manteau: 100
  3151. Siege_Muffler: 100
  3152. Siege_Plate: 100
  3153. Siege_Robe: 100
  3154. Siege_Shoes: 100
  3155. Siege_Suits: 100
  3156. TE_Ring_Of_Defiance: 100
  3157. TE_Ring_Of_Protection: 100
  3158. TE_Ring_Of_Rage: 100
  3159. TE_White_Potion: 100
  3160. TE_White_Slim_Potion: 100
  3161. TE_Woe_Axe: 100
  3162. TE_Woe_Bone_Helm: 100
  3163. TE_Woe_Book: 100
  3164. TE_Woe_Boots: 100
  3165. TE_Woe_Bow: 100
  3166. TE_Woe_Buckler: 100
  3167. TE_Woe_Cap: 100
  3168. TE_Woe_Chain_Mail: 100
  3169. TE_Woe_Coat: 100
  3170. TE_Woe_Fist: 100
  3171. TE_Woe_Gatling: 100
  3172. TE_Woe_Grenade: 100
  3173. TE_Woe_Guitar: 100
  3174. TE_Woe_Huuma: 100
  3175. TE_Woe_Katar: 100
  3176. TE_Woe_Knife: 100
  3177. TE_Woe_Lance: 100
  3178. TE_Woe_Mace: 100
  3179. TE_Woe_Mage_Coat: 100
  3180. TE_Woe_Magic_Eyes: 100
  3181. TE_Woe_Magic_Guard: 100
  3182. TE_Woe_Magic_Manteau: 100
  3183. TE_Woe_Magic_Sandal: 100
  3184. TE_Woe_Manteau: 100
  3185. TE_Woe_Muffler: 100
  3186. TE_Woe_Pike: 100
  3187. TE_Woe_Pistol: 100
  3188. TE_Woe_Rifle: 100
  3189. TE_Woe_Rope: 100
  3190. TE_Woe_Shield: 100
  3191. TE_Woe_Shoes: 100
  3192. TE_Woe_Shotgun: 100
  3193. TE_Woe_Staff: 100
  3194. TE_Woe_Sword: 100
  3195. TE_Woe_Two_Handed_Axe: 100
  3196. TE_Woe_Two_Hand_Staff: 100
  3197. TE_Woe_Two_Hand_Sword: 100
  3198. Treasure_Box_Scroll: 100
  3199. Uni_Catalog_Bz: 100
  3200. Velum_Arbalest: 100
  3201. Velum_Arc_Wand: 100
  3202. Velum_Bible: 100
  3203. Velum_Buster: 100
  3204. Velum_Claw: 100
  3205. Velum_Claymore: 100
  3206. Velum_CrossBow: 100
  3207. Velum_Damascus: 100
  3208. Velum_Encyclopedia: 100
  3209. Velum_Flail: 100
  3210. Velum_Glaive: 100
  3211. Velum_Guillotine: 100
  3212. Velum_Jamadhar: 100
  3213. Velum_Katzbalger: 100
  3214. Velum_Scare: 100
  3215. Velum_Spear: 100
  3216. Velum_Stunner: 100
  3217. Vending_Search_Scroll2: 100
  3218. Vending_Search_Scroll: 100
  3219. Wing_Of_Butterfly: 100
  3220. Wing_Of_Fly: 100
  3221. WOB_Local: 100
  3222. WOB_Rachel: 100
  3223. WOB_Rune: 100
  3224. WOB_Schwaltz: 100
  3225. Woe_Blue_Potion: 100
  3226. Woe_Violet_Potion: 100
  3227. Woe_White_Potion: 100
  3228. Maps:
  3229. que_hugel: true
  3230. sec_pri: true
  3231. Mapflags:
  3232. - Flag: HideMobHpBar
  3233. - Flag: NoBranch
  3234. - Flag: NoMemo
  3235. - Flag: NoPenalty
  3236. - Flag: NoReturn
  3237. - Flag: NoTeleport
  3238. - Flag: NoWarp
  3239. - Flag: NoWarpTo
  3240. - Flag: PvP_NoGuild
  3241. - Flag: PvP_NoParty
  3242. - Id: MonsterTrack
  3243. DisabledSkills:
  3244. - Skill: BD_ETERNALCHAOS
  3245. Pc: 100
  3246. - Skill: BD_ROKISWEIL
  3247. Pc: 100
  3248. - Skill: BA_DISSONANCE
  3249. Pc: 100
  3250. - Skill: DC_UGLYDANCE
  3251. Pc: 100
  3252. - Skill: DC_DONTFORGETME
  3253. Pc: 100
  3254. - Skill: WM_GLOOMYDAY
  3255. Pc: 100
  3256. - Skill: WM_SOUND_OF_DESTRUCTION
  3257. Pc: 100
  3258. - Skill: WM_SATURDAY_NIGHT_FEVER
  3259. Pc: 100
  3260. - Skill: WM_MELODYOFSINK
  3261. Pc: 100
  3262. - Skill: WM_BEYOND_OF_WARCRY
  3263. Pc: 100
  3264. - Skill: SO_ARRULLO
  3265. Pc: 100
  3266. - Skill: SC_MANHOLE
  3267. Pc: 100
  3268. - Skill: SC_BLOODYLUST
  3269. Pc: 100
  3270. - Skill: AB_CONVENIO
  3271. Pc: 100
  3272. - Skill: TR_ROKI_CAPRICCIO
  3273. Pc: 100
  3274. - Skill: TR_NIPELHEIM_REQUIEM
  3275. Pc: 100
  3276. - Skill: EM_ACTIVITY_BURN
  3277. Pc: 100
  3278. DisabledItems:
  3279. Minus_Agi: 100
  3280. Minus_Dex: 100
  3281. Minus_Int: 100
  3282. Minus_Luk: 100
  3283. Minus_Str: 100
  3284. Minus_Vit: 100
  3285. Neuralizer: 100
  3286. Runstone_Crush: 100
  3287. Runstone_Millennium: 100
  3288. Runstone_Storm: 100
  3289. Sg_Blue_Potion_Box: 100
  3290. Sg_Violet_Potion_Box: 100
  3291. Sg_White_Potion_Box: 100
  3292. Siege_Arrow_A: 100
  3293. Siege_Arrow_S: 100
  3294. Siege_Boots: 100
  3295. Siege_Greave: 100
  3296. Siege_Manteau: 100
  3297. Siege_Muffler: 100
  3298. Siege_Plate: 100
  3299. Siege_Robe: 100
  3300. Siege_Shoes: 100
  3301. Siege_Suits: 100
  3302. TE_Ring_Of_Defiance: 100
  3303. TE_Ring_Of_Protection: 100
  3304. TE_Ring_Of_Rage: 100
  3305. TE_White_Potion: 100
  3306. TE_White_Slim_Potion: 100
  3307. TE_Woe_Axe: 100
  3308. TE_Woe_Bone_Helm: 100
  3309. TE_Woe_Book: 100
  3310. TE_Woe_Boots: 100
  3311. TE_Woe_Bow: 100
  3312. TE_Woe_Buckler: 100
  3313. TE_Woe_Cap: 100
  3314. TE_Woe_Chain_Mail: 100
  3315. TE_Woe_Coat: 100
  3316. TE_Woe_Fist: 100
  3317. TE_Woe_Gatling: 100
  3318. TE_Woe_Grenade: 100
  3319. TE_Woe_Guitar: 100
  3320. TE_Woe_Huuma: 100
  3321. TE_Woe_Katar: 100
  3322. TE_Woe_Knife: 100
  3323. TE_Woe_Lance: 100
  3324. TE_Woe_Mace: 100
  3325. TE_Woe_Mage_Coat: 100
  3326. TE_Woe_Magic_Eyes: 100
  3327. TE_Woe_Magic_Guard: 100
  3328. TE_Woe_Magic_Manteau: 100
  3329. TE_Woe_Magic_Sandal: 100
  3330. TE_Woe_Manteau: 100
  3331. TE_Woe_Muffler: 100
  3332. TE_Woe_Pike: 100
  3333. TE_Woe_Pistol: 100
  3334. TE_Woe_Rifle: 100
  3335. TE_Woe_Rope: 100
  3336. TE_Woe_Shield: 100
  3337. TE_Woe_Shoes: 100
  3338. TE_Woe_Shotgun: 100
  3339. TE_Woe_Staff: 100
  3340. TE_Woe_Sword: 100
  3341. TE_Woe_Two_Handed_Axe: 100
  3342. TE_Woe_Two_Hand_Staff: 100
  3343. TE_Woe_Two_Hand_Sword: 100
  3344. Treasure_Box_Scroll: 100
  3345. Uni_Catalog_Bz: 100
  3346. Velum_Arbalest: 100
  3347. Velum_Arc_Wand: 100
  3348. Velum_Bible: 100
  3349. Velum_Buster: 100
  3350. Velum_Claw: 100
  3351. Velum_Claymore: 100
  3352. Velum_CrossBow: 100
  3353. Velum_Damascus: 100
  3354. Velum_Encyclopedia: 100
  3355. Velum_Flail: 100
  3356. Velum_Glaive: 100
  3357. Velum_Guillotine: 100
  3358. Velum_Jamadhar: 100
  3359. Velum_Katzbalger: 100
  3360. Velum_Scare: 100
  3361. Velum_Spear: 100
  3362. Velum_Stunner: 100
  3363. Vending_Search_Scroll2: 100
  3364. Vending_Search_Scroll: 100
  3365. Woe_Blue_Potion: 100
  3366. Woe_Violet_Potion: 100
  3367. Woe_White_Potion: 100
  3368. Maps:
  3369. gld_dun01_2: true
  3370. gld_dun02_2: true
  3371. gld_dun04_2: true
  3372. iz_dun05: true
  3373. lasa_dun_q: true
  3374. ra_fild04: true
  3375. Mapflags:
  3376. - Flag: NoMemo
  3377. - Flag: NoSave
  3378. Value: SavePoint
  3379. - Flag: NoWarp
  3380. - Flag: NoWarpTo
  3381. - Flag: PvP_NoGuild
  3382. - Flag: PvP_NoParty
  3383. - Id: PoringBattle
  3384. DisabledSkills:
  3385. - Skill: SM_ENDURE
  3386. Pc: 100
  3387. - Skill: AL_WARP
  3388. Pc: 100
  3389. - Skill: AL_CURE
  3390. Pc: 100
  3391. - Skill: TF_HIDING
  3392. Pc: 100
  3393. - Skill: WZ_ICEWALL
  3394. Pc: 100
  3395. - Skill: AS_CLOAKING
  3396. Pc: 100
  3397. - Skill: MO_BODYRELOCATION
  3398. Pc: 100
  3399. - Skill: LK_CONCENTRATION
  3400. Pc: 100
  3401. - Skill: LK_BERSERK
  3402. Pc: 100
  3403. - Skill: HP_BASILICA
  3404. Pc: 100
  3405. - Skill: ST_CHASEWALK
  3406. Pc: 100
  3407. - Skill: CG_MOONLIT
  3408. Pc: 100
  3409. - Skill: SC_DIMENSIONDOOR
  3410. Pc: 100
  3411. - Skill: WE_CALLALLFAMILY
  3412. Pc: 100
  3413. - Skill: AB_CONVENIO
  3414. Pc: 100
  3415. DisabledItems:
  3416. Anodyne: 100
  3417. Green_Potion: 100
  3418. Minus_Agi: 100
  3419. Minus_Dex: 100
  3420. Minus_Int: 100
  3421. Minus_Luk: 100
  3422. Minus_Str: 100
  3423. Minus_Vit: 100
  3424. Neuralizer: 100
  3425. N_Fly_Wing: 100
  3426. Panacea: 100
  3427. Runstone_Crush: 100
  3428. Runstone_Millennium: 100
  3429. Runstone_Storm: 100
  3430. Sg_Blue_Potion_Box: 100
  3431. TE_Ring_Of_Defiance: 100
  3432. TE_Ring_Of_Protection: 100
  3433. TE_Ring_Of_Rage: 100
  3434. TE_White_Potion: 100
  3435. TE_White_Slim_Potion: 100
  3436. TE_Woe_Axe: 100
  3437. TE_Woe_Bone_Helm: 100
  3438. TE_Woe_Book: 100
  3439. TE_Woe_Boots: 100
  3440. TE_Woe_Bow: 100
  3441. TE_Woe_Buckler: 100
  3442. TE_Woe_Cap: 100
  3443. TE_Woe_Chain_Mail: 100
  3444. TE_Woe_Coat: 100
  3445. TE_Woe_Fist: 100
  3446. TE_Woe_Gatling: 100
  3447. TE_Woe_Grenade: 100
  3448. TE_Woe_Guitar: 100
  3449. TE_Woe_Huuma: 100
  3450. TE_Woe_Katar: 100
  3451. TE_Woe_Knife: 100
  3452. TE_Woe_Lance: 100
  3453. TE_Woe_Mace: 100
  3454. TE_Woe_Mage_Coat: 100
  3455. TE_Woe_Magic_Eyes: 100
  3456. TE_Woe_Magic_Guard: 100
  3457. TE_Woe_Magic_Manteau: 100
  3458. TE_Woe_Magic_Sandal: 100
  3459. TE_Woe_Manteau: 100
  3460. TE_Woe_Muffler: 100
  3461. TE_Woe_Pike: 100
  3462. TE_Woe_Pistol: 100
  3463. TE_Woe_Rifle: 100
  3464. TE_Woe_Rope: 100
  3465. TE_Woe_Shield: 100
  3466. TE_Woe_Shoes: 100
  3467. TE_Woe_Shotgun: 100
  3468. TE_Woe_Staff: 100
  3469. TE_Woe_Sword: 100
  3470. TE_Woe_Two_Handed_Axe: 100
  3471. TE_Woe_Two_Hand_Staff: 100
  3472. TE_Woe_Two_Hand_Sword: 100
  3473. Treasure_Box_Scroll: 100
  3474. Uni_Catalog_Bz: 100
  3475. Vending_Search_Scroll2: 100
  3476. Vending_Search_Scroll: 100
  3477. Wing_Of_Butterfly: 100
  3478. Woe_Blue_Potion: 100
  3479. Woe_Violet_Potion: 100
  3480. Woe_White_Potion: 100
  3481. Maps:
  3482. poring_w02: true
  3483. Mapflags:
  3484. - Flag: Flee_Penalty
  3485. Value: 20
  3486. - Flag: HideMobHpBar
  3487. - Flag: Long_Damage_Rate
  3488. Value: 80
  3489. - Flag: Magic_Damage_Rate
  3490. Value: 60
  3491. - Flag: Misc_Damage_Rate
  3492. Value: 60
  3493. - Flag: NoBranch
  3494. - Flag: NoCostume
  3495. - Flag: NoKnockBack
  3496. - Flag: NoMemo
  3497. - Flag: NoPenalty
  3498. - Flag: NoSave
  3499. Value: SavePoint
  3500. - Flag: NoTeleport
  3501. - Flag: NoWarp
  3502. - Flag: NoWarpTo
  3503. - Flag: PvP
  3504. - Flag: PvP_NoGuild
  3505. - Flag: Short_Damage_Rate
  3506. Value: 80
  3507. - Flag: Weapon_Damage_Rate
  3508. Value: 60
  3509. - Id: Agit_Siegev15 # WoE:SE
  3510. DisabledSkills:
  3511. - Skill: TF_BACKSLIDING
  3512. Pc: 100
  3513. - Skill: AL_WARP
  3514. Pc: 100
  3515. - Skill: WZ_ICEWALL
  3516. Pc: 100
  3517. - Skill: WE_CALLPARTNER
  3518. Pc: 100
  3519. - Skill: WE_CALLBABY
  3520. Pc: 100
  3521. - Skill: WE_CALLPARENT
  3522. Pc: 100
  3523. - Skill: TK_HIGHJUMP
  3524. Pc: 100
  3525. - Skill: SL_KAIZEL
  3526. Pc: 100
  3527. - Skill: HP_ASSUMPTIO
  3528. Pc: 100
  3529. - Skill: HP_BASILICA
  3530. Pc: 100
  3531. - Skill: CR_CULTIVATION
  3532. Pc: 100
  3533. - Skill: CG_MOONLIT
  3534. Pc: 100
  3535. - Skill: NJ_KIRIKAGE
  3536. Pc: 100
  3537. - Skill: SC_DIMENSIONDOOR
  3538. Pc: 100
  3539. - Skill: GN_WALLOFTHORN
  3540. Pc: 100
  3541. - Skill: WE_CALLALLFAMILY
  3542. Pc: 100
  3543. - Skill: WE_CHEERUP
  3544. Pc: 100
  3545. - Skill: AB_CONVENIO
  3546. Pc: 100
  3547. DisabledItems:
  3548. Anodyne: 100
  3549. Assumptio_5_Scroll: 100
  3550. Blood_Butterfly_Card: 100
  3551. Minus_Agi: 100
  3552. Minus_Dex: 100
  3553. Minus_Int: 100
  3554. Minus_Luk: 100
  3555. Minus_Str: 100
  3556. Minus_Vit: 100
  3557. Neuralizer: 100
  3558. N_Fly_Wing: 100
  3559. Orleans_Gown: 100
  3560. Phen_Card: 100
  3561. Pty_Assumptio_Scroll: 100
  3562. Runstone_Crush: 100
  3563. Runstone_Millennium: 100
  3564. Runstone_Storm: 100
  3565. TE_Ring_Of_Defiance: 100
  3566. TE_Ring_Of_Protection: 100
  3567. TE_Ring_Of_Rage: 100
  3568. TE_White_Potion: 100
  3569. TE_White_Slim_Potion: 100
  3570. TE_Woe_Axe: 100
  3571. TE_Woe_Bone_Helm: 100
  3572. TE_Woe_Book: 100
  3573. TE_Woe_Boots: 100
  3574. TE_Woe_Bow: 100
  3575. TE_Woe_Buckler: 100
  3576. TE_Woe_Cap: 100
  3577. TE_Woe_Chain_Mail: 100
  3578. TE_Woe_Coat: 100
  3579. TE_Woe_Fist: 100
  3580. TE_Woe_Gatling: 100
  3581. TE_Woe_Grenade: 100
  3582. TE_Woe_Guitar: 100
  3583. TE_Woe_Huuma: 100
  3584. TE_Woe_Katar: 100
  3585. TE_Woe_Knife: 100
  3586. TE_Woe_Lance: 100
  3587. TE_Woe_Mace: 100
  3588. TE_Woe_Mage_Coat: 100
  3589. TE_Woe_Magic_Eyes: 100
  3590. TE_Woe_Magic_Guard: 100
  3591. TE_Woe_Magic_Manteau: 100
  3592. TE_Woe_Magic_Sandal: 100
  3593. TE_Woe_Manteau: 100
  3594. TE_Woe_Muffler: 100
  3595. TE_Woe_Pike: 100
  3596. TE_Woe_Pistol: 100
  3597. TE_Woe_Rifle: 100
  3598. TE_Woe_Rope: 100
  3599. TE_Woe_Shield: 100
  3600. TE_Woe_Shoes: 100
  3601. TE_Woe_Shotgun: 100
  3602. TE_Woe_Staff: 100
  3603. TE_Woe_Sword: 100
  3604. TE_Woe_Two_Handed_Axe: 100
  3605. TE_Woe_Two_Hand_Staff: 100
  3606. TE_Woe_Two_Hand_Sword: 100
  3607. Treasure_Box_Scroll: 100
  3608. Uni_Catalog_Bz: 100
  3609. Vending_Search_Scroll2: 100
  3610. Vending_Search_Scroll: 100
  3611. DisabledStatuses:
  3612. Endure: 100
  3613. Cheerup: 100
  3614. Maps:
  3615. arug_cas01: true
  3616. arug_cas02: true
  3617. arug_cas03: true
  3618. arug_cas04: true
  3619. arug_cas05: true
  3620. schg_cas01: true
  3621. schg_cas02: true
  3622. schg_cas03: true
  3623. schg_cas04: true
  3624. schg_cas05: true
  3625. Mapflags:
  3626. - Flag: Flee_Penalty
  3627. Value: 20
  3628. - Flag: GuildLock
  3629. - Flag: GvG_Castle
  3630. - Flag: HideDamage
  3631. - Flag: HideMobHpBar
  3632. - Flag: Invincible_Time
  3633. Value: 10000
  3634. - Flag: Long_Damage_Rate
  3635. Value: 80
  3636. - Flag: Magic_Damage_Rate
  3637. Value: 60
  3638. - Flag: Misc_Damage_Rate
  3639. Value: 60
  3640. - Flag: Monster_NoTeleport
  3641. - Flag: NoBranch
  3642. - Flag: NoCostume
  3643. - Flag: NoLockOn
  3644. - Flag: NoMemo
  3645. - Flag: NoPenalty
  3646. - Flag: NoSave
  3647. Value: SavePoint
  3648. - Flag: NoTeleport
  3649. - Flag: NoWarp
  3650. - Flag: NoWarpTo
  3651. - Flag: PvP_NoParty
  3652. - Flag: Short_Damage_Rate
  3653. Value: 80
  3654. - Flag: Skill_Duration
  3655. Value: HT_SKIDTRAP,400
  3656. - Flag: Skill_Duration
  3657. Value: HT_LANDMINE,400
  3658. - Flag: Skill_Duration
  3659. Value: HT_ANKLESNARE,400
  3660. - Flag: Skill_Duration
  3661. Value: HT_SHOCKWAVE,400
  3662. - Flag: Skill_Duration
  3663. Value: HT_SANDMAN,400
  3664. - Flag: Skill_Duration
  3665. Value: HT_FLASHER,400
  3666. - Flag: Skill_Duration
  3667. Value: HT_FREEZINGTRAP,400
  3668. - Flag: Skill_Duration
  3669. Value: HT_BLASTMINE,400
  3670. - Flag: Skill_Duration
  3671. Value: HT_CLAYMORETRAP,400
  3672. - Flag: Skill_Duration
  3673. Value: HT_TALKIEBOX,400
  3674. - Flag: Weapon_Damage_Rate
  3675. Value: 60
  3676. - Id: Battlefield
  3677. DisabledSkills:
  3678. - Skill: TF_BACKSLIDING
  3679. Pc: 100
  3680. - Skill: AL_WARP
  3681. Pc: 100
  3682. - Skill: WZ_ICEWALL
  3683. Pc: 100
  3684. - Skill: WE_CALLPARTNER
  3685. Pc: 100
  3686. - Skill: WE_CALLBABY
  3687. Pc: 100
  3688. - Skill: WE_CALLPARENT
  3689. Pc: 100
  3690. - Skill: SL_KAIZEL
  3691. Pc: 100
  3692. - Skill: HP_ASSUMPTIO
  3693. Pc: 100
  3694. - Skill: HP_BASILICA
  3695. Pc: 100
  3696. - Skill: CR_CULTIVATION
  3697. Pc: 100
  3698. - Skill: CG_MOONLIT
  3699. Pc: 100
  3700. - Skill: NJ_KIRIKAGE
  3701. Pc: 100
  3702. - Skill: MO_BODYRELOCATION
  3703. Pc: 100
  3704. - Skill: SG_FEEL
  3705. Pc: 100
  3706. - Skill: TK_RUN
  3707. Pc: 100
  3708. - Skill: TK_HIGHJUMP
  3709. Pc: 100
  3710. - Skill: WE_CALLALLFAMILY
  3711. Pc: 100
  3712. - Skill: WE_CHEERUP
  3713. Pc: 100
  3714. - Skill: SC_DIMENSIONDOOR
  3715. Pc: 100
  3716. - Skill: AB_CONVENIO
  3717. Pc: 100
  3718. DisabledItems:
  3719. Anodyne: 100
  3720. Assumptio_5_Scroll: 100
  3721. Blood_Butterfly_Card: 100
  3722. Minus_Agi: 100
  3723. Minus_Dex: 100
  3724. Minus_Int: 100
  3725. Minus_Luk: 100
  3726. Minus_Str: 100
  3727. Minus_Vit: 100
  3728. Neuralizer: 100
  3729. N_Fly_Wing: 100
  3730. Orleans_Gown: 100
  3731. Phen_Card: 100
  3732. Pty_Assumptio_Scroll: 100
  3733. Runstone_Crush: 100
  3734. Runstone_Millennium: 100
  3735. Runstone_Storm: 100
  3736. TE_Ring_Of_Defiance: 100
  3737. TE_Ring_Of_Protection: 100
  3738. TE_Ring_Of_Rage: 100
  3739. TE_White_Potion: 100
  3740. TE_White_Slim_Potion: 100
  3741. TE_Woe_Axe: 100
  3742. TE_Woe_Bone_Helm: 100
  3743. TE_Woe_Book: 100
  3744. TE_Woe_Boots: 100
  3745. TE_Woe_Bow: 100
  3746. TE_Woe_Buckler: 100
  3747. TE_Woe_Cap: 100
  3748. TE_Woe_Chain_Mail: 100
  3749. TE_Woe_Coat: 100
  3750. TE_Woe_Fist: 100
  3751. TE_Woe_Gatling: 100
  3752. TE_Woe_Grenade: 100
  3753. TE_Woe_Guitar: 100
  3754. TE_Woe_Huuma: 100
  3755. TE_Woe_Katar: 100
  3756. TE_Woe_Knife: 100
  3757. TE_Woe_Lance: 100
  3758. TE_Woe_Mace: 100
  3759. TE_Woe_Mage_Coat: 100
  3760. TE_Woe_Magic_Eyes: 100
  3761. TE_Woe_Magic_Guard: 100
  3762. TE_Woe_Magic_Manteau: 100
  3763. TE_Woe_Magic_Sandal: 100
  3764. TE_Woe_Manteau: 100
  3765. TE_Woe_Muffler: 100
  3766. TE_Woe_Pike: 100
  3767. TE_Woe_Pistol: 100
  3768. TE_Woe_Rifle: 100
  3769. TE_Woe_Rope: 100
  3770. TE_Woe_Shield: 100
  3771. TE_Woe_Shoes: 100
  3772. TE_Woe_Shotgun: 100
  3773. TE_Woe_Staff: 100
  3774. TE_Woe_Sword: 100
  3775. TE_Woe_Two_Handed_Axe: 100
  3776. TE_Woe_Two_Hand_Staff: 100
  3777. TE_Woe_Two_Hand_Sword: 100
  3778. Treasure_Box_Scroll: 100
  3779. Uni_Catalog_Bz: 100
  3780. Vending_Search_Scroll2: 100
  3781. Vending_Search_Scroll: 100
  3782. DisabledStatuses:
  3783. Endure: 100
  3784. Cheerup: 100
  3785. Maps:
  3786. bat_a01: true
  3787. bat_a02: true
  3788. bat_b01: true
  3789. bat_b02: true
  3790. bat_c01: true
  3791. bat_c02: true
  3792. bat_c03: true
  3793. Mapflags:
  3794. - Flag: Flee_Penalty
  3795. Value: 20
  3796. - Flag: HideMobHpBar
  3797. - Flag: Long_Damage_Rate
  3798. Value: 75
  3799. - Flag: Magic_Damage_Rate
  3800. Value: 70
  3801. - Flag: Misc_Damage_Rate
  3802. Value: 70
  3803. - Flag: NoBranch
  3804. - Flag: NoCostume
  3805. - Flag: NoLockOn
  3806. - Flag: NoMemo
  3807. - Flag: NoPenalty
  3808. - Flag: NoSave
  3809. Value: SavePoint
  3810. - Flag: NoTeleport
  3811. - Flag: NoWarp
  3812. - Flag: NoWarpTo
  3813. - Flag: PvP_NoGuild
  3814. - Flag: PvP_NoParty
  3815. - Flag: Short_Damage_Rate
  3816. Value: 75
  3817. - Flag: Skill_Duration
  3818. Value: HT_SKIDTRAP,400
  3819. - Flag: Skill_Duration
  3820. Value: HT_LANDMINE,400
  3821. - Flag: Skill_Duration
  3822. Value: HT_ANKLESNARE,400
  3823. - Flag: Skill_Duration
  3824. Value: HT_SHOCKWAVE,400
  3825. - Flag: Skill_Duration
  3826. Value: HT_SANDMAN,400
  3827. - Flag: Skill_Duration
  3828. Value: HT_FLASHER,400
  3829. - Flag: Skill_Duration
  3830. Value: HT_FREEZINGTRAP,400
  3831. - Flag: Skill_Duration
  3832. Value: HT_BLASTMINE,400
  3833. - Flag: Skill_Duration
  3834. Value: HT_CLAYMORETRAP,400
  3835. - Flag: Skill_Duration
  3836. Value: HT_TALKIEBOX,400
  3837. - Flag: Weapon_Damage_Rate
  3838. Value: 70
  3839. - Id: PvP_Tournament # Instances
  3840. DisabledSkills:
  3841. - Skill: AL_TELEPORT
  3842. Mob: 100
  3843. Hom: 100
  3844. Mer: 100
  3845. - Skill: WZ_ICEWALL
  3846. Pc: 100
  3847. Mob: 100
  3848. - Skill: PF_SPIDERWEB
  3849. Pc: 100
  3850. - Skill: BD_ETERNALCHAOS
  3851. Pc: 100
  3852. - Skill: BD_ROKISWEIL
  3853. Pc: 100
  3854. - Skill: BA_DISSONANCE
  3855. Pc: 100
  3856. - Skill: DC_UGLYDANCE
  3857. Pc: 100
  3858. - Skill: DC_DONTFORGETME
  3859. Pc: 100
  3860. - Skill: NPC_EXPULSION
  3861. Mob: 100
  3862. - Skill: WM_GLOOMYDAY
  3863. Pc: 100
  3864. - Skill: WM_SOUND_OF_DESTRUCTION
  3865. Pc: 100
  3866. - Skill: WM_SATURDAY_NIGHT_FEVER
  3867. Pc: 100
  3868. - Skill: WM_MELODYOFSINK
  3869. Pc: 100
  3870. - Skill: WM_BEYOND_OF_WARCRY
  3871. Pc: 100
  3872. - Skill: SO_ARRULLO
  3873. Pc: 100
  3874. - Skill: SC_MANHOLE
  3875. Pc: 100
  3876. - Skill: SC_BLOODYLUST
  3877. Pc: 100
  3878. - Skill: SC_DIMENSIONDOOR
  3879. Pc: 100
  3880. - Skill: TR_ROKI_CAPRICCIO
  3881. Pc: 100
  3882. - Skill: TR_NIPELHEIM_REQUIEM
  3883. Pc: 100
  3884. - Skill: EM_ACTIVITY_BURN
  3885. Pc: 100
  3886. DisabledItems:
  3887. Minus_Agi: 100
  3888. Minus_Dex: 100
  3889. Minus_Int: 100
  3890. Minus_Luk: 100
  3891. Minus_Str: 100
  3892. Minus_Vit: 100
  3893. N_Fly_Wing: 100
  3894. Runstone_Crush: 100
  3895. Runstone_Millennium: 100
  3896. Runstone_Storm: 100
  3897. Sg_Blue_Potion_Box: 100
  3898. Sg_Violet_Potion_Box: 100
  3899. Sg_White_Potion_Box: 100
  3900. Siege_Arrow_A: 100
  3901. Siege_Arrow_S: 100
  3902. Siege_Boots: 100
  3903. Siege_Greave: 100
  3904. Siege_Manteau: 100
  3905. Siege_Muffler: 100
  3906. Siege_Plate: 100
  3907. Siege_Robe: 100
  3908. Siege_Shoes: 100
  3909. Siege_Suits: 100
  3910. TE_Ring_Of_Defiance: 100
  3911. TE_Ring_Of_Protection: 100
  3912. TE_Ring_Of_Rage: 100
  3913. TE_White_Potion: 100
  3914. TE_White_Slim_Potion: 100
  3915. TE_Woe_Axe: 100
  3916. TE_Woe_Bone_Helm: 100
  3917. TE_Woe_Book: 100
  3918. TE_Woe_Boots: 100
  3919. TE_Woe_Bow: 100
  3920. TE_Woe_Buckler: 100
  3921. TE_Woe_Cap: 100
  3922. TE_Woe_Chain_Mail: 100
  3923. TE_Woe_Coat: 100
  3924. TE_Woe_Fist: 100
  3925. TE_Woe_Gatling: 100
  3926. TE_Woe_Grenade: 100
  3927. TE_Woe_Guitar: 100
  3928. TE_Woe_Huuma: 100
  3929. TE_Woe_Katar: 100
  3930. TE_Woe_Knife: 100
  3931. TE_Woe_Lance: 100
  3932. TE_Woe_Mace: 100
  3933. TE_Woe_Mage_Coat: 100
  3934. TE_Woe_Magic_Eyes: 100
  3935. TE_Woe_Magic_Guard: 100
  3936. TE_Woe_Magic_Manteau: 100
  3937. TE_Woe_Magic_Sandal: 100
  3938. TE_Woe_Manteau: 100
  3939. TE_Woe_Muffler: 100
  3940. TE_Woe_Pike: 100
  3941. TE_Woe_Pistol: 100
  3942. TE_Woe_Rifle: 100
  3943. TE_Woe_Rope: 100
  3944. TE_Woe_Shield: 100
  3945. TE_Woe_Shoes: 100
  3946. TE_Woe_Shotgun: 100
  3947. TE_Woe_Staff: 100
  3948. TE_Woe_Sword: 100
  3949. TE_Woe_Two_Handed_Axe: 100
  3950. TE_Woe_Two_Hand_Staff: 100
  3951. TE_Woe_Two_Hand_Sword: 100
  3952. Treasure_Box_Scroll: 100
  3953. Uni_Catalog_Bz: 100
  3954. Velum_Arbalest: 100
  3955. Velum_Arc_Wand: 100
  3956. Velum_Bible: 100
  3957. Velum_Buster: 100
  3958. Velum_Claw: 100
  3959. Velum_Claymore: 100
  3960. Velum_CrossBow: 100
  3961. Velum_Damascus: 100
  3962. Velum_Encyclopedia: 100
  3963. Velum_Flail: 100
  3964. Velum_Glaive: 100
  3965. Velum_Guillotine: 100
  3966. Velum_Jamadhar: 100
  3967. Velum_Katzbalger: 100
  3968. Velum_Scare: 100
  3969. Velum_Spear: 100
  3970. Velum_Stunner: 100
  3971. Vending_Search_Scroll2: 100
  3972. Vending_Search_Scroll: 100
  3973. Woe_Blue_Potion: 100
  3974. Woe_Violet_Potion: 100
  3975. Woe_White_Potion: 100
  3976. Maps:
  3977. 1@20cn1: true
  3978. 1@20cn2: true
  3979. 1@4cdn: true
  3980. 1@4drk: true
  3981. 1@4igd: true
  3982. 1@4inq: true
  3983. 1@4mag: true
  3984. 1@4mst: true
  3985. 1@4sac: true
  3986. 1@4tro: true
  3987. 1@4win: true
  3988. 1@adv: true
  3989. 1@advs: true
  3990. 1@air1: true
  3991. 1@air2: true
  3992. 1@ba_go: true
  3993. 1@bamn: true
  3994. 1@bamq: true
  3995. 1@begi: true
  3996. 1@cash: true
  3997. 1@cata: true
  3998. 1@ch_t: true
  3999. 1@ch_u: true
  4000. 1@cor: true
  4001. 1@crd: true
  4002. 1@dime: true
  4003. 1@drdo: true
  4004. 1@dth1: true
  4005. 1@dth2: true
  4006. 1@dth3: true
  4007. 1@ecl: true
  4008. 1@eom: true
  4009. 1@exds: true
  4010. 1@exhn: true
  4011. 1@exnw: true
  4012. 1@exse: true
  4013. 1@exsh: true
  4014. 1@exsr: true
  4015. 1@f_lake: true
  4016. 1@face: true
  4017. 1@ffp: true
  4018. 1@ge_sn: true
  4019. 1@ge_st: true
  4020. 1@gef: true
  4021. 1@gef_in: true
  4022. 1@ghg: true
  4023. #1@gl_K2: true
  4024. 1@gl_he2: true
  4025. 1@gl_he: true
  4026. 1@gl_k: true
  4027. 1@gl_kh: true
  4028. 1@gl_prq: true
  4029. 1@glast: true
  4030. 1@gol1: true
  4031. 1@gol2: true
  4032. 1@halo: true
  4033. 1@herbs: true
  4034. 1@infi: true
  4035. 1@iwp: true
  4036. 1@jorchs: true
  4037. 1@jorlab: true
  4038. 1@jtb: true
  4039. 1@lab: true
  4040. 1@lhz: true
  4041. 1@lost: true
  4042. 1@ma_b: true
  4043. 1@ma_c: true
  4044. 1@ma_h: true
  4045. 1@mcd: true
  4046. 1@md_gef: true
  4047. 1@md_pay: true
  4048. 1@mir: true
  4049. 1@mist: true
  4050. 1@mjo1: true
  4051. 1@mjo2: true
  4052. 1@nyd: true
  4053. 1@nyr: true
  4054. 1@odin: true
  4055. 1@orcs: true
  4056. 1@os_a: true
  4057. 1@os_b: true
  4058. 1@oz: true
  4059. 1@pdb: true
  4060. 1@pop1: true
  4061. 1@pop2: true
  4062. 1@pop3: true
  4063. 1@pump: true
  4064. 1@rev: true
  4065. 1@rgsr: true
  4066. 1@sara: true
  4067. 1@slug: true
  4068. 1@slw: true
  4069. 1@soul: true
  4070. 1@spa2: true
  4071. 1@spa: true
  4072. 1@sthb: true
  4073. 1@sthc: true
  4074. 1@sthd: true
  4075. 1@swat: true
  4076. 1@tcamp: true
  4077. 1@thts: true
  4078. 1@tnm1: true
  4079. 1@tnm2: true
  4080. 1@tnm3: true
  4081. 1@tower: true
  4082. 1@tre: true
  4083. 1@twas: true
  4084. 1@twbs: true
  4085. 1@twig: true
  4086. 1@twsd: true
  4087. 1@uns: true
  4088. 1@vrac1: true
  4089. 1@vrac2: true
  4090. 1@vrcas: true
  4091. 1@vrclo: true
  4092. 1@vrev: true
  4093. 1@vrgen: true
  4094. 1@vrhha: true
  4095. 1@vrpo: true
  4096. 1@vrpop: true
  4097. 1@whl: true
  4098. 1@xm_d2: true
  4099. 1@xm_d: true
  4100. 2@cata: true
  4101. 2@ch_t: true
  4102. 2@exds: true
  4103. #2@gl_K2: true
  4104. 2@gl_k: true
  4105. 2@gl_kh: true
  4106. 2@mir: true
  4107. 2@nyd: true
  4108. 2@nyr: true
  4109. 2@orcs: true
  4110. 2@pump: true
  4111. 2@thts: true
  4112. 2@tower: true
  4113. 2@vrclo: true
  4114. 2@vrpop: true
  4115. 3@ch_t: true
  4116. 3@thts: true
  4117. 3@tower: true
  4118. 3@vrpop: true
  4119. 4@thts: true
  4120. 4@tower: true
  4121. 5@thts: true
  4122. 5@tower: true
  4123. 6@thts: true
  4124. 6@tower: true
  4125. 7@thts: true
  4126. 8@thts: true
  4127. que_god01: true
  4128. Mapflags:
  4129. - Flag: Monster_NoTeleport
  4130. - Flag: NoBranch
  4131. - Flag: NoDynamicNpc
  4132. - Flag: NoMemo
  4133. - Flag: NoTeleport
  4134. - Flag: NoWarpTo
  4135. - Flag: PartyLock
  4136. - Id: Unknown_Sealed_Shrine # Sealed Shrine
  4137. DisabledSkills:
  4138. - Skill: AL_TELEPORT
  4139. Hom: 100
  4140. Mer: 100
  4141. - Skill: WZ_ICEWALL
  4142. Pc: 100
  4143. Mob: 100
  4144. - Skill: PF_SPIDERWEB
  4145. Pc: 100
  4146. - Skill: BD_ETERNALCHAOS
  4147. Pc: 100
  4148. - Skill: BD_ROKISWEIL
  4149. Pc: 100
  4150. - Skill: BA_DISSONANCE
  4151. Pc: 100
  4152. - Skill: DC_UGLYDANCE
  4153. Pc: 100
  4154. - Skill: DC_DONTFORGETME
  4155. Pc: 100
  4156. - Skill: HP_ASSUMPTIO
  4157. Pc: 100
  4158. - Skill: WM_GLOOMYDAY
  4159. Pc: 100
  4160. - Skill: WM_SOUND_OF_DESTRUCTION
  4161. Pc: 100
  4162. - Skill: WM_SATURDAY_NIGHT_FEVER
  4163. Pc: 100
  4164. - Skill: WM_MELODYOFSINK
  4165. Pc: 100
  4166. - Skill: WM_BEYOND_OF_WARCRY
  4167. Pc: 100
  4168. - Skill: SO_ARRULLO
  4169. Pc: 100
  4170. - Skill: SC_MANHOLE
  4171. Pc: 100
  4172. - Skill: SC_BLOODYLUST
  4173. Pc: 100
  4174. - Skill: SC_DIMENSIONDOOR
  4175. Pc: 100
  4176. - Skill: WE_CALLALLFAMILY
  4177. Pc: 100
  4178. - Skill: TR_ROKI_CAPRICCIO
  4179. Pc: 100
  4180. - Skill: TR_NIPELHEIM_REQUIEM
  4181. Pc: 100
  4182. - Skill: EM_ACTIVITY_BURN
  4183. Pc: 100
  4184. DisabledItems:
  4185. Censor_Bar_: 100
  4186. #Cps_Fly_Wing: 100
  4187. C_Wing_Of_Fly: 100
  4188. Emergency_Scroll1: 100
  4189. Emergency_Scroll2: 100
  4190. Emergency_Scroll3: 100
  4191. Minus_Agi: 100
  4192. Minus_Dex: 100
  4193. Minus_Int: 100
  4194. Minus_Luk: 100
  4195. Minus_Str: 100
  4196. Minus_Vit: 100
  4197. N_Fly_Wing: 100
  4198. #N_Fly_Wing2: 100
  4199. Pieces_Of_Sentiment: 100
  4200. Runstone_Crush: 100
  4201. Runstone_Millennium: 100
  4202. Runstone_Storm: 100
  4203. Treasure_Box_Scroll: 100
  4204. Uni_Catalog_Bz: 100
  4205. Vending_Search_Scroll2: 100
  4206. Vending_Search_Scroll: 100
  4207. Wing_Of_Fly: 100
  4208. #Wing_Of_Fly_TW: 100
  4209. Mapflags:
  4210. - Flag: Monster_NoTeleport
  4211. - Flag: NoBranch
  4212. - Flag: NoMemo
  4213. - Flag: NoPenalty
  4214. #- Flag: NoSave # Disabled in update
  4215. # Value: SavePoint
  4216. - Flag: NoTeleport
  4217. - Flag: NoWarpTo
  4218. - Flag: PartyLock
  4219. - Id: Unknown_FrancePvP # France PvP
  4220. DisabledSkills:
  4221. - Skill: TF_BACKSLIDING
  4222. Pc: 100
  4223. - Skill: AL_WARP
  4224. Pc: 100
  4225. - Skill: WZ_ICEWALL
  4226. Pc: 100
  4227. - Skill: SM_ENDURE
  4228. Pc: 100
  4229. - Skill: WE_CALLPARTNER
  4230. Pc: 100
  4231. - Skill: WE_CALLBABY
  4232. Pc: 100
  4233. - Skill: WE_CALLPARENT
  4234. Pc: 100
  4235. - Skill: HP_ASSUMPTIO
  4236. Pc: 100
  4237. - Skill: HP_BASILICA
  4238. Pc: 100
  4239. - Skill: CR_CULTIVATION
  4240. Pc: 100
  4241. - Skill: CG_MOONLIT
  4242. Pc: 100
  4243. - Skill: NJ_KIRIKAGE
  4244. Pc: 100
  4245. - Skill: LK_BERSERK
  4246. Pc: 100
  4247. - Skill: ST_CHASEWALK
  4248. Pc: 100
  4249. - Skill: CG_MARIONETTE
  4250. Pc: 100
  4251. - Skill: AB_CONVENIO
  4252. Pc: 100
  4253. DisabledItems:
  4254. Anodyne: 100
  4255. Minus_Agi: 100
  4256. Minus_Dex: 100
  4257. Minus_Int: 100
  4258. Minus_Luk: 100
  4259. Minus_Str: 100
  4260. Minus_Vit: 100
  4261. Neuralizer: 100
  4262. Phen_Card: 100
  4263. Pty_Assumptio_Scroll: 100
  4264. Runstone_Crush: 100
  4265. Runstone_Millennium: 100
  4266. Runstone_Storm: 100
  4267. TE_Ring_Of_Defiance: 100
  4268. TE_Ring_Of_Protection: 100
  4269. TE_Ring_Of_Rage: 100
  4270. TE_White_Potion: 100
  4271. TE_White_Slim_Potion: 100
  4272. TE_Woe_Axe: 100
  4273. TE_Woe_Bone_Helm: 100
  4274. TE_Woe_Book: 100
  4275. TE_Woe_Boots: 100
  4276. TE_Woe_Bow: 100
  4277. TE_Woe_Buckler: 100
  4278. TE_Woe_Cap: 100
  4279. TE_Woe_Chain_Mail: 100
  4280. TE_Woe_Coat: 100
  4281. TE_Woe_Fist: 100
  4282. TE_Woe_Gatling: 100
  4283. TE_Woe_Grenade: 100
  4284. TE_Woe_Guitar: 100
  4285. TE_Woe_Huuma: 100
  4286. TE_Woe_Katar: 100
  4287. TE_Woe_Knife: 100
  4288. TE_Woe_Lance: 100
  4289. TE_Woe_Mace: 100
  4290. TE_Woe_Mage_Coat: 100
  4291. TE_Woe_Magic_Eyes: 100
  4292. TE_Woe_Magic_Guard: 100
  4293. TE_Woe_Magic_Manteau: 100
  4294. TE_Woe_Magic_Sandal: 100
  4295. TE_Woe_Manteau: 100
  4296. TE_Woe_Muffler: 100
  4297. TE_Woe_Pike: 100
  4298. TE_Woe_Pistol: 100
  4299. TE_Woe_Rifle: 100
  4300. TE_Woe_Rope: 100
  4301. TE_Woe_Shield: 100
  4302. TE_Woe_Shoes: 100
  4303. TE_Woe_Shotgun: 100
  4304. TE_Woe_Staff: 100
  4305. TE_Woe_Sword: 100
  4306. TE_Woe_Two_Handed_Axe: 100
  4307. TE_Woe_Two_Hand_Staff: 100
  4308. TE_Woe_Two_Hand_Sword: 100
  4309. Treasure_Box_Scroll: 100
  4310. Uni_Catalog_Bz: 100
  4311. Vending_Search_Scroll2: 100
  4312. Vending_Search_Scroll: 100
  4313. DisabledStatuses:
  4314. Endure: 100
  4315. Mapflags:
  4316. - Flag: Flee_Penalty
  4317. Value: 20
  4318. # !TODO: Block party formation; PartyLock is too restrictive
  4319. - Flag: HideDamage
  4320. - Flag: Long_Damage_Rate
  4321. Value: 60
  4322. - Flag: Magic_Damage_Rate
  4323. Value: 60
  4324. - Flag: Misc_Damage_Rate
  4325. Value: 60
  4326. - Flag: NoBranch
  4327. - Flag: NoCostume
  4328. - Flag: NoKnockBack
  4329. - Flag: NoLockOn
  4330. - Flag: NoMemo
  4331. - Flag: NoPenalty
  4332. - Flag: NoSave
  4333. Value: SavePoint
  4334. - Flag: NoTeleport
  4335. - Flag: NoWarpTo
  4336. - Flag: PvP
  4337. - Flag: PvP_NoGuild
  4338. - Flag: PvP_NoParty
  4339. - Flag: Short_Damage_Rate
  4340. Value: 60
  4341. - Flag: Weapon_Damage_Rate
  4342. Value: 60
  4343. - Id: Unknown_Town2 # Town 2
  4344. DisabledSkills:
  4345. - Skill: BS_GREED
  4346. Pc: 100
  4347. - Skill: BD_ETERNALCHAOS
  4348. Pc: 100
  4349. - Skill: BD_ROKISWEIL
  4350. Pc: 100
  4351. - Skill: BA_DISSONANCE
  4352. Pc: 100
  4353. - Skill: DC_UGLYDANCE
  4354. Pc: 100
  4355. - Skill: DC_DONTFORGETME
  4356. Pc: 100
  4357. - Skill: WM_GLOOMYDAY
  4358. Pc: 100
  4359. - Skill: WM_SOUND_OF_DESTRUCTION
  4360. Pc: 100
  4361. - Skill: WM_SATURDAY_NIGHT_FEVER
  4362. Pc: 100
  4363. - Skill: WM_MELODYOFSINK
  4364. Pc: 100
  4365. - Skill: WM_BEYOND_OF_WARCRY
  4366. Pc: 100
  4367. - Skill: SO_ARRULLO
  4368. Pc: 100
  4369. - Skill: SC_MANHOLE
  4370. Pc: 100
  4371. - Skill: SC_BLOODYLUST
  4372. Pc: 100
  4373. - Skill: SC_CHAOSPANIC
  4374. Pc: 100
  4375. - Skill: TR_ROKI_CAPRICCIO
  4376. Pc: 100
  4377. - Skill: TR_NIPELHEIM_REQUIEM
  4378. Pc: 100
  4379. - Skill: EM_ACTIVITY_BURN
  4380. Pc: 100
  4381. DisabledItems:
  4382. Minus_Agi: 100
  4383. Minus_Dex: 100
  4384. Minus_Int: 100
  4385. Minus_Luk: 100
  4386. Minus_Str: 100
  4387. Minus_Vit: 100
  4388. Runstone_Crush: 100
  4389. Runstone_Millennium: 100
  4390. Runstone_Storm: 100
  4391. Sg_Blue_Potion_Box: 100
  4392. Siege_Arrow_A: 100
  4393. Siege_Arrow_S: 100
  4394. Siege_Boots: 100
  4395. Siege_Greave: 100
  4396. Siege_Manteau: 100
  4397. Siege_Muffler: 100
  4398. Siege_Plate: 100
  4399. Siege_Robe: 100
  4400. Siege_Shoes: 100
  4401. Siege_Suits: 100
  4402. TE_Ring_Of_Defiance: 100
  4403. TE_Ring_Of_Protection: 100
  4404. TE_Ring_Of_Rage: 100
  4405. TE_White_Potion: 100
  4406. TE_White_Slim_Potion: 100
  4407. TE_Woe_Axe: 100
  4408. TE_Woe_Bone_Helm: 100
  4409. TE_Woe_Book: 100
  4410. TE_Woe_Boots: 100
  4411. TE_Woe_Bow: 100
  4412. TE_Woe_Buckler: 100
  4413. TE_Woe_Cap: 100
  4414. TE_Woe_Chain_Mail: 100
  4415. TE_Woe_Coat: 100
  4416. TE_Woe_Fist: 100
  4417. TE_Woe_Gatling: 100
  4418. TE_Woe_Grenade: 100
  4419. TE_Woe_Guitar: 100
  4420. TE_Woe_Huuma: 100
  4421. TE_Woe_Katar: 100
  4422. TE_Woe_Knife: 100
  4423. TE_Woe_Lance: 100
  4424. TE_Woe_Mace: 100
  4425. TE_Woe_Mage_Coat: 100
  4426. TE_Woe_Magic_Eyes: 100
  4427. TE_Woe_Magic_Guard: 100
  4428. TE_Woe_Magic_Manteau: 100
  4429. TE_Woe_Magic_Sandal: 100
  4430. TE_Woe_Manteau: 100
  4431. TE_Woe_Muffler: 100
  4432. TE_Woe_Pike: 100
  4433. TE_Woe_Pistol: 100
  4434. TE_Woe_Rifle: 100
  4435. TE_Woe_Rope: 100
  4436. TE_Woe_Shield: 100
  4437. TE_Woe_Shoes: 100
  4438. TE_Woe_Shotgun: 100
  4439. TE_Woe_Staff: 100
  4440. TE_Woe_Sword: 100
  4441. TE_Woe_Two_Handed_Axe: 100
  4442. TE_Woe_Two_Hand_Staff: 100
  4443. TE_Woe_Two_Hand_Sword: 100
  4444. Treasure_Box_Scroll: 100
  4445. Uni_Catalog_Bz: 100
  4446. Velum_Arbalest: 100
  4447. Velum_Arc_Wand: 100
  4448. Velum_Bible: 100
  4449. Velum_Buster: 100
  4450. Velum_Claw: 100
  4451. Velum_Claymore: 100
  4452. Velum_CrossBow: 100
  4453. Velum_Damascus: 100
  4454. Velum_Encyclopedia: 100
  4455. Velum_Flail: 100
  4456. Velum_Glaive: 100
  4457. Velum_Guillotine: 100
  4458. Velum_Jamadhar: 100
  4459. Velum_Katzbalger: 100
  4460. Velum_Scare: 100
  4461. Velum_Spear: 100
  4462. Velum_Stunner: 100
  4463. Vending_Search_Scroll2: 100
  4464. Vending_Search_Scroll: 100
  4465. Woe_Blue_Potion: 100
  4466. Woe_Violet_Potion: 100
  4467. Woe_White_Potion: 100
  4468. Maps:
  4469. dicastes01: true
  4470. dicastes02: true
  4471. manuk: true
  4472. splendide: true
  4473. Mapflags:
  4474. - Flag: NightEnabled
  4475. - Flag: NoBranch
  4476. - Flag: NoMemo
  4477. - Flag: NoPenalty
  4478. - Flag: NoWarpTo
  4479. - Flag: PrivateAirship_Destination
  4480. - Flag: PrivateAirship_Source
  4481. - Flag: PvP_NoGuild
  4482. - Flag: PvP_NoParty
  4483. - Id: Unknown_Training_Grounds # Novice Training Grounds
  4484. DisabledSkills:
  4485. - Skill: AM_CANNIBALIZE
  4486. Pc: 100
  4487. - Skill: AM_SPHEREMINE
  4488. Pc: 100
  4489. - Skill: CR_CULTIVATION
  4490. Pc: 100
  4491. - Skill: WZ_ICEWALL
  4492. Pc: 100
  4493. - Skill: BD_ETERNALCHAOS
  4494. Pc: 100
  4495. - Skill: BD_ROKISWEIL
  4496. Pc: 100
  4497. - Skill: BA_DISSONANCE
  4498. Pc: 100
  4499. - Skill: DC_UGLYDANCE
  4500. Pc: 100
  4501. - Skill: DC_DONTFORGETME
  4502. Pc: 100
  4503. - Skill: CG_MOONLIT
  4504. Pc: 100
  4505. - Skill: WM_GLOOMYDAY
  4506. Pc: 100
  4507. - Skill: WM_SOUND_OF_DESTRUCTION
  4508. Pc: 100
  4509. - Skill: WM_SATURDAY_NIGHT_FEVER
  4510. Pc: 100
  4511. - Skill: WM_MELODYOFSINK
  4512. Pc: 100
  4513. - Skill: WM_BEYOND_OF_WARCRY
  4514. Pc: 100
  4515. - Skill: WM_POEMOFNETHERWORLD
  4516. Pc: 100
  4517. - Skill: SO_ARRULLO
  4518. Pc: 100
  4519. - Skill: SC_MANHOLE
  4520. Pc: 100
  4521. - Skill: AB_CONVENIO
  4522. Pc: 100
  4523. - Skill: TR_ROKI_CAPRICCIO
  4524. Pc: 100
  4525. - Skill: TR_NIPELHEIM_REQUIEM
  4526. Pc: 100
  4527. - Skill: EM_ACTIVITY_BURN
  4528. Pc: 100
  4529. DisabledItems:
  4530. Greed_Scroll: 100
  4531. Minus_Agi: 100
  4532. Minus_Dex: 100
  4533. Minus_Int: 100
  4534. Minus_Luk: 100
  4535. Minus_Str: 100
  4536. Minus_Vit: 100
  4537. Runstone_Crush: 100
  4538. Runstone_Millennium: 100
  4539. Runstone_Storm: 100
  4540. Sg_Blue_Potion_Box: 100
  4541. Siege_Arrow_A: 100
  4542. Siege_Arrow_S: 100
  4543. Siege_Boots: 100
  4544. Siege_Greave: 100
  4545. Siege_Manteau: 100
  4546. Siege_Muffler: 100
  4547. Siege_Plate: 100
  4548. Siege_Robe: 100
  4549. Siege_Shoes: 100
  4550. Siege_Suits: 100
  4551. TE_Ring_Of_Defiance: 100
  4552. TE_Ring_Of_Protection: 100
  4553. TE_Ring_Of_Rage: 100
  4554. TE_White_Potion: 100
  4555. TE_White_Slim_Potion: 100
  4556. TE_Woe_Axe: 100
  4557. TE_Woe_Bone_Helm: 100
  4558. TE_Woe_Book: 100
  4559. TE_Woe_Boots: 100
  4560. TE_Woe_Bow: 100
  4561. TE_Woe_Buckler: 100
  4562. TE_Woe_Cap: 100
  4563. TE_Woe_Chain_Mail: 100
  4564. TE_Woe_Coat: 100
  4565. TE_Woe_Fist: 100
  4566. TE_Woe_Gatling: 100
  4567. TE_Woe_Grenade: 100
  4568. TE_Woe_Guitar: 100
  4569. TE_Woe_Huuma: 100
  4570. TE_Woe_Katar: 100
  4571. TE_Woe_Knife: 100
  4572. TE_Woe_Lance: 100
  4573. TE_Woe_Mace: 100
  4574. TE_Woe_Mage_Coat: 100
  4575. TE_Woe_Magic_Eyes: 100
  4576. TE_Woe_Magic_Guard: 100
  4577. TE_Woe_Magic_Manteau: 100
  4578. TE_Woe_Magic_Sandal: 100
  4579. TE_Woe_Manteau: 100
  4580. TE_Woe_Muffler: 100
  4581. TE_Woe_Pike: 100
  4582. TE_Woe_Pistol: 100
  4583. TE_Woe_Rifle: 100
  4584. TE_Woe_Rope: 100
  4585. TE_Woe_Shield: 100
  4586. TE_Woe_Shoes: 100
  4587. TE_Woe_Shotgun: 100
  4588. TE_Woe_Staff: 100
  4589. TE_Woe_Sword: 100
  4590. TE_Woe_Two_Handed_Axe: 100
  4591. TE_Woe_Two_Hand_Staff: 100
  4592. TE_Woe_Two_Hand_Sword: 100
  4593. Treasure_Box_Scroll: 100
  4594. Uni_Catalog_Bz: 100
  4595. Velum_Arbalest: 100
  4596. Velum_Arc_Wand: 100
  4597. Velum_Bible: 100
  4598. Velum_Buster: 100
  4599. Velum_Claw: 100
  4600. Velum_Claymore: 100
  4601. Velum_CrossBow: 100
  4602. Velum_Damascus: 100
  4603. Velum_Encyclopedia: 100
  4604. Velum_Flail: 100
  4605. Velum_Glaive: 100
  4606. Velum_Guillotine: 100
  4607. Velum_Jamadhar: 100
  4608. Velum_Katzbalger: 100
  4609. Velum_Scare: 100
  4610. Velum_Spear: 100
  4611. Velum_Stunner: 100
  4612. Vending_Search_Scroll2: 100
  4613. Vending_Search_Scroll: 100
  4614. Woe_Blue_Potion: 100
  4615. Woe_Violet_Potion: 100
  4616. Woe_White_Potion: 100
  4617. Maps:
  4618. iz_int: true
  4619. iz_int01: true
  4620. iz_int02: true
  4621. iz_int03: true
  4622. iz_int04: true
  4623. new_1-1: true
  4624. new_1-2: true
  4625. new_1-4: true
  4626. new_2-1: true
  4627. new_2-2: true
  4628. new_2-4: true
  4629. new_3-1: true
  4630. new_3-2: true
  4631. new_3-4: true
  4632. new_4-1: true
  4633. new_4-2: true
  4634. new_4-4: true
  4635. new_5-1: true
  4636. new_5-2: true
  4637. new_5-4: true
  4638. new_zone01: true
  4639. new_zone02: true
  4640. new_zone03: true
  4641. new_zone04: true
  4642. pay_gld: true
  4643. Mapflags:
  4644. - Flag: NoBranch
  4645. - Flag: NoMemo
  4646. - Flag: NoPenalty
  4647. - Flag: NoWarpTo
  4648. - Flag: PvP_NoGuild
  4649. - Flag: PvP_NoParty
  4650. - Id: Siege_LowLevel # WoE:TE
  4651. DisabledSkills:
  4652. - Skill: TF_BACKSLIDING
  4653. Pc: 100
  4654. - Skill: AL_TELEPORT
  4655. Mob: 100
  4656. - Skill: AL_WARP
  4657. Pc: 100
  4658. - Skill: SM_ENDURE
  4659. Pc: 100
  4660. - Skill: WZ_ICEWALL
  4661. Pc: 100
  4662. - Skill: WE_CALLPARTNER
  4663. Pc: 100
  4664. - Skill: WE_CALLBABY
  4665. Pc: 100
  4666. - Skill: WE_CALLPARENT
  4667. Pc: 100
  4668. - Skill: TK_HIGHJUMP
  4669. Pc: 100
  4670. - Skill: SL_KAIZEL
  4671. Pc: 100
  4672. - Skill: LK_BERSERK
  4673. Pc: 100
  4674. - Skill: ST_CHASEWALK
  4675. Pc: 100
  4676. - Skill: HP_ASSUMPTIO
  4677. Pc: 100
  4678. - Skill: HP_BASILICA
  4679. Pc: 100
  4680. - Skill: CR_CULTIVATION
  4681. Pc: 100
  4682. - Skill: CG_MOONLIT
  4683. Pc: 100
  4684. - Skill: NJ_KIRIKAGE
  4685. Pc: 100
  4686. - Skill: SC_DIMENSIONDOOR
  4687. Pc: 100
  4688. - Skill: KO_MUCHANAGE
  4689. Pc: 100
  4690. - Skill: WE_CALLALLFAMILY
  4691. Pc: 100
  4692. - Skill: WE_CHEERUP
  4693. Pc: 100
  4694. - Skill: AB_CONVENIO
  4695. Pc: 100
  4696. DisabledItems:
  4697. Anodyne: 100
  4698. Asprika: 100
  4699. Assumptio_5_Scroll: 100
  4700. Blood_Butterfly_Card: 100
  4701. Box_Of_Sunlight: 100
  4702. Brynhild: 100
  4703. Brysinggamen: 100
  4704. Brysinggamen_C: 100
  4705. Ganbantein: 100
  4706. God_Material_Box: 100
  4707. Golden_Bug_Card: 100
  4708. Half_Asprika: 100
  4709. Half_Brynhild: 100
  4710. Hervor: 100
  4711. Hervor_Alvitr: 100
  4712. Jormungand: 100
  4713. Krieger_Book1: 100
  4714. Krieger_Book2: 100
  4715. Krieger_Bow1: 100
  4716. Krieger_Dagger1: 100
  4717. Krieger_Gatling1: 100
  4718. Krieger_Huuma_Shuriken1: 100
  4719. Krieger_Instrument1: 100
  4720. Krieger_Katar1: 100
  4721. Krieger_Katar2: 100
  4722. Krieger_Knuckle1: 100
  4723. Krieger_Knuckle2: 100
  4724. Krieger_Launcher1: 100
  4725. Krieger_Muffler1: 100
  4726. Krieger_Onehand_Axe1: 100
  4727. Krieger_Onehand_Mace1: 100
  4728. Krieger_Onehand_Spear1: 100
  4729. Krieger_Onehand_Staff1: 100
  4730. Krieger_Onehand_Staff2: 100
  4731. Krieger_Onehand_Sword1: 100
  4732. Krieger_Onehand_Sword2: 100
  4733. Krieger_Onehand_Sword3: 100
  4734. Krieger_Pistol1: 100
  4735. Krieger_Rifle1: 100
  4736. Krieger_Ring1: 100
  4737. Krieger_Ring2: 100
  4738. Krieger_Ring3: 100
  4739. Krieger_Shoes1: 100
  4740. Krieger_Shoes2: 100
  4741. Krieger_Shoes3: 100
  4742. Krieger_Shotgun1: 100
  4743. Krieger_Suit1: 100
  4744. Krieger_Suit2: 100
  4745. Krieger_Suit3: 100
  4746. Krieger_Twohand_Axe1: 100
  4747. Krieger_Twohand_Spear1: 100
  4748. Krieger_Twohand_Staff1: 100
  4749. Krieger_Twohand_Sword1: 100
  4750. Krieger_Whip1: 100
  4751. Magingiorde: 100
  4752. Magingiorde_C: 100
  4753. Maya_Puple_Card: 100
  4754. Minus_Agi: 100
  4755. Minus_Dex: 100
  4756. Minus_Int: 100
  4757. Minus_Luk: 100
  4758. Minus_Str: 100
  4759. Minus_Vit: 100
  4760. Mjolnir: 100
  4761. Mjolnir_C: 100
  4762. Neuralizer: 100
  4763. N_Fly_Wing: 100
  4764. Orleans_Gown: 100
  4765. Phen_Card: 100
  4766. Pty_Assumptio_Scroll: 100
  4767. Runstone_Crush: 100
  4768. Runstone_Millennium: 100
  4769. Runstone_Storm: 100
  4770. Siege_Arrow_A: 100
  4771. Siege_Arrow_S: 100
  4772. Siege_Boots: 100
  4773. Siege_Greave: 100
  4774. Siege_Manteau: 100
  4775. Siege_Muffler: 100
  4776. Siege_Plate: 100
  4777. Siege_Robe: 100
  4778. Siege_Shoes: 100
  4779. Siege_Suits: 100
  4780. Sleipnir: 100
  4781. Sleipnir_C: 100
  4782. Treasure_Box_Scroll: 100
  4783. Uni_Catalog_Bz: 100
  4784. Upd_Maya_Puple_Card: 100
  4785. Velum_Arbalest: 100
  4786. Velum_Arc_Wand: 100
  4787. Velum_Bible: 100
  4788. Velum_Buster: 100
  4789. Velum_Claw: 100
  4790. Velum_Claymore: 100
  4791. Velum_CrossBow: 100
  4792. Velum_Damascus: 100
  4793. Velum_Encyclopedia: 100
  4794. Velum_Flail: 100
  4795. Velum_Glaive: 100
  4796. Velum_Guillotine: 100
  4797. Velum_Jamadhar: 100
  4798. Velum_Katzbalger: 100
  4799. Velum_Scare: 100
  4800. Velum_Spear: 100
  4801. Velum_Stunner: 100
  4802. Vending_Search_Scroll2: 100
  4803. Vending_Search_Scroll: 100
  4804. Woe_Blue_Potion: 100
  4805. Woe_Violet_Potion: 100
  4806. Woe_White_Potion: 100
  4807. DisabledStatuses:
  4808. Assumptio: 100
  4809. Berserk: 100
  4810. Cheerup: 100
  4811. Endure: 100
  4812. # RUNE_KNIGHT
  4813. Abundance: 100
  4814. Crushstrike: 100
  4815. Deathbound: 100
  4816. Enchantblade: 100
  4817. Fightingspirit: 100
  4818. Giantgrowth: 100
  4819. Millenniumshield: 100
  4820. Refresh: 100
  4821. Reuse_Refresh: 100
  4822. Stonehardskin: 100
  4823. Stormblast: 100
  4824. Vitalityactivation: 100
  4825. # ARCH_BISHOP
  4826. Adoramus: 100
  4827. Duplelight: 100
  4828. Epiclesis: 100
  4829. Expiatio: 100
  4830. Laudaagnus: 100
  4831. Laudaramus: 100
  4832. Oratio: 100
  4833. Renovatio: 100
  4834. Secrament: 100
  4835. # WARLOCK
  4836. Freeze_Sp: 100
  4837. Marshofabyss: 100
  4838. Maxspellbook: 100
  4839. Reading_Sb: 100
  4840. Recognizedspell: 100
  4841. Spellbook1: 100
  4842. Spellbook2: 100
  4843. Spellbook3: 100
  4844. Spellbook4: 100
  4845. Spellbook5: 100
  4846. Spellbook6: 100
  4847. Sphere_1: 100
  4848. Sphere_2: 100
  4849. Sphere_3: 100
  4850. Sphere_4: 100
  4851. Sphere_5: 100
  4852. Stasis: 100
  4853. Whiteimprison: 100
  4854. # RANGER
  4855. Bite: 100
  4856. Camouflage: 100
  4857. Electricshocker: 100
  4858. Fearbreeze: 100
  4859. Wugdash: 100
  4860. # MECHANIC
  4861. Acceleration: 100
  4862. Analyze: 100
  4863. Hovering: 100
  4864. Infraredscan: 100
  4865. Magneticfield: 100
  4866. Neutralbarrier: 100
  4867. Neutralbarrier_Master: 100
  4868. Overheat: 100
  4869. Overheat_Limitpoint: 100
  4870. Shapeshift: 100
  4871. Stealthfield: 100
  4872. Stealthfield_Master: 100
  4873. # GUILLOTINE_CROSS
  4874. Cloakingexceed: 100
  4875. Deathhurt: 100
  4876. Hallucinationwalk: 100
  4877. Hallucinationwalk_Postdelay: 100
  4878. Leechesend: 100
  4879. Magicmushroom: 100
  4880. Oblivioncurse: 100
  4881. Paralyse: 100
  4882. Poisoningweapon: 100
  4883. Pyrexia: 100
  4884. Rollingcutter: 100
  4885. Toxin: 100
  4886. Venombleed: 100
  4887. Venomimpress: 100
  4888. Weaponblocking: 100
  4889. # ROYAL_GUARD
  4890. Banding: 100
  4891. Banding_Defence: 100
  4892. Earthdrive: 100
  4893. Exeedbreak: 100
  4894. Forceofvanguard: 100
  4895. Inspiration: 100
  4896. Prestige: 100
  4897. Reflectdamage: 100
  4898. Shieldspell_Atk: 100
  4899. Shieldspell_Hp: 100
  4900. Shieldspell_Sp: 100
  4901. # SORCERER
  4902. Crystalize: 100
  4903. Propertywalk: 100
  4904. Spellfist: 100
  4905. Striking: 100
  4906. Vacuum_Extreme: 100
  4907. Vacuum_Extreme_Postdelay: 100
  4908. Warmer: 100
  4909. # MINSTREL
  4910. Echosong: 100
  4911. Harmonize: 100
  4912. Moonlitserenade: 100
  4913. Rushwindmill: 100
  4914. Swingdance: 100
  4915. Symphonyoflover: 100
  4916. # WANDERER
  4917. Deepsleep: 100
  4918. Gloomyday: 100
  4919. Gloomyday_Sk: 100
  4920. Sircleofnature: 100
  4921. Voiceofsiren: 100
  4922. # MINSTREL & WANDERER
  4923. Beyondofwarcry: 100
  4924. Dancewithwug: 100
  4925. Leradsdew: 100
  4926. Melodyofsink: 100
  4927. Saturdaynightfever: 100
  4928. Songofmana: 100
  4929. Unlimitedhummingvoice: 100
  4930. # SURA
  4931. Crescentelbow: 100
  4932. Cursedcircle_Atker: 100
  4933. Cursedcircle_Target: 100
  4934. Gn_Cartboost: 100
  4935. Gt_Change: 100
  4936. Gt_Energygain: 100
  4937. Gt_Revitalize: 100
  4938. Lightningwalk: 100
  4939. Netherworld: 100
  4940. Raisingdragon: 100
  4941. Sitdown_Force: 100
  4942. # GENETIC
  4943. Banana_Bomb: 100
  4944. Banana_Bomb_Sitdown: 100
  4945. Bloodsucker: 100
  4946. Boost500: 100
  4947. Cocktail_Warg_Blood: 100
  4948. Drocera_Herb_Steamed: 100
  4949. Extract_Salamine_Juice: 100
  4950. Extract_White_Potion_Z: 100
  4951. Full_Swing_K: 100
  4952. Life_Force_F: 100
  4953. Mana_Plus: 100
  4954. Mandragora: 100
  4955. Melon_Bomb: 100
  4956. Minor_Bbq: 100
  4957. Mustle_M: 100
  4958. Mysterious_Powder: 100
  4959. Putti_Tails_Noodles: 100
  4960. Savage_Steak: 100
  4961. Siroma_Ice_Tea: 100
  4962. Smokepowder: 100
  4963. Stomachache: 100
  4964. Teargas: 100
  4965. Thornstrap: 100
  4966. Vitata_500: 100
  4967. # Homunculus
  4968. Angriffs_Modus: 100
  4969. Ash: 100
  4970. Cbc: 100
  4971. Eqc: 100
  4972. Goldene_Ferse: 100
  4973. Granitic_Armor: 100
  4974. Light_Of_Regene: 100
  4975. Magma_Flow: 100
  4976. Overed_Boost: 100
  4977. Pain_Killer: 100
  4978. Paralysis: 100
  4979. Pyroclastic: 100
  4980. Style_Change: 100
  4981. Tinder_Breaker2: 100
  4982. Tinder_Breaker: 100
  4983. # SHADOW_CHASER
  4984. _Autoshadowspell: 100
  4985. _Bloodylust: 100
  4986. _Bodypaint: 100
  4987. _Deadlyinfect: 100
  4988. _Enervation: 100
  4989. _Groomy: 100
  4990. _Ignorance: 100
  4991. _Invisibility: 100
  4992. _Laziness: 100
  4993. _Manhole: 100
  4994. _Reproduce: 100
  4995. _Shadowform: 100
  4996. _Stripaccessory: 100
  4997. _Unlucky: 100
  4998. _Weakness: 100
  4999. # Elemental SORCERER
  5000. Aquaplay: 100
  5001. Aquaplay_Option: 100
  5002. Blast: 100
  5003. Blast_Option: 100
  5004. Chilly_Air: 100
  5005. Chilly_Air_Option: 100
  5006. Circle_Of_Fire: 100
  5007. Circle_Of_Fire_Option: 100
  5008. Cooler: 100
  5009. Cooler_Option: 100
  5010. Cursed_Soil: 100
  5011. Cursed_Soil_Option: 100
  5012. Earth_Insignia: 100
  5013. Fire_Cloak: 100
  5014. Fire_Cloak_Option: 100
  5015. Fire_Insignia: 100
  5016. Gust: 100
  5017. Gust_Option: 100
  5018. Heater: 100
  5019. Heater_Option: 100
  5020. Petrology: 100
  5021. Petrology_Option: 100
  5022. Power_Of_Gaia: 100
  5023. Pyrotechnic: 100
  5024. Pyrotechnic_Option: 100
  5025. Rock_Crusher: 100
  5026. Rock_Crusher_Atk: 100
  5027. Solid_Skin: 100
  5028. Solid_Skin_Option: 100
  5029. Stone_Shield: 100
  5030. Stone_Shield_Option: 100
  5031. Tidal_Weapon: 100
  5032. Tidal_Weapon_Option: 100
  5033. Tropic: 100
  5034. Tropic_Option: 100
  5035. Upheaval: 100
  5036. Upheaval_Option: 100
  5037. Water_Barrier: 100
  5038. Water_Drop: 100
  5039. Water_Drop_Option: 100
  5040. Water_Insignia: 100
  5041. Water_Screen: 100
  5042. Water_Screen_Option: 100
  5043. Wild_Storm: 100
  5044. Wild_Storm_Option: 100
  5045. Wind_Curtain: 100
  5046. Wind_Curtain_Option: 100
  5047. Wind_Insignia: 100
  5048. Wind_Step: 100
  5049. Wind_Step_Option: 100
  5050. Zephyr: 100
  5051. # KAGEROU / OBORO
  5052. Akaitsuki: 100
  5053. Gensou: 100
  5054. Izayoi: 100
  5055. Jyumonjikiri: 100
  5056. Kagehumi: 100
  5057. Kagemusya: 100
  5058. Kyomu: 100
  5059. Kyougaku: 100
  5060. Meikyousisui: 100
  5061. Zangetsu: 100
  5062. Zenkai: 100
  5063. # Summoner
  5064. Arclousedash: 100
  5065. Bitescar: 100
  5066. Catnippowder: 100
  5067. Freshshrimp: 100
  5068. Shrimp: 100
  5069. Spritemable: 100
  5070. Suhide: 100
  5071. Su_Stoop: 100
  5072. Sv_Roottwist: 100
  5073. Tunaparty: 100
  5074. # Rebellion
  5075. Anti_M_Blast: 100
  5076. B_Trap: 100
  5077. C_Marker: 100
  5078. E_Chain: 100
  5079. Heat_Barrel: 100
  5080. H_Mine: 100
  5081. Magicalbullet: 100
  5082. P_Alter: 100
  5083. Qd_Shot_Ready: 100
  5084. # Star Emperor
  5085. Creatingstar: 100
  5086. Dimension1: 100
  5087. Dimension2: 100
  5088. Dimension: 100
  5089. Fallingstar: 100
  5090. Flashkick: 100
  5091. Gravitycontrol: 100
  5092. Lightofmoon: 100
  5093. Lightofstar: 100
  5094. Lightofsun: 100
  5095. Lunarstance: 100
  5096. Newmoon: 100
  5097. Novaexplosing: 100
  5098. Starstance: 100
  5099. Sunstance: 100
  5100. Universestance: 100
  5101. # Soul Reaper
  5102. Soulcollect: 100
  5103. Soulcurse: 100
  5104. Souldivision: 100
  5105. Soulenergy: 100
  5106. Soulfairy: 100
  5107. Soulfalcon: 100
  5108. Soulgolem: 100
  5109. Soulreaper: 100
  5110. Soulshadow: 100
  5111. Soulunity: 100
  5112. Sp_Sha: 100
  5113. Use_Skill_Sp_Sha: 100
  5114. Use_Skill_Sp_Spa: 100
  5115. # Others
  5116. Burning: 100
  5117. Fear: 100
  5118. Freezing: 100
  5119. Teargas_Sob: 100
  5120. _Chaos: 100
  5121. _Feintbomb: 100
  5122. # 4th Job Common Status
  5123. Handicapstate_Conflagration: 100
  5124. Handicapstate_Crystallization: 100
  5125. Handicapstate_Deadlypoison: 100
  5126. Handicapstate_Deepblind: 100
  5127. Handicapstate_Deepsilence: 100
  5128. Handicapstate_Depression: 100
  5129. Handicapstate_Frostbite: 100
  5130. Handicapstate_Holyflame: 100
  5131. Handicapstate_Lassitude: 100
  5132. Handicapstate_Lightningstrike: 100
  5133. Handicapstate_Misfortune: 100
  5134. Handicapstate_Swooning: 100
  5135. # Dragon Knight
  5136. Chargingpierce: 100
  5137. Chargingpierce_Count: 100
  5138. Dragonic_Aura: 100
  5139. Servantweapon: 100
  5140. Servant_Sign: 100
  5141. Vigor: 100
  5142. # Arch Mage
  5143. Climax: 100
  5144. Climax_Bloom: 100
  5145. Climax_Cryimp: 100
  5146. Climax_Des_Hu: 100
  5147. Climax_Earth: 100
  5148. Deadly_Defeasance: 100
  5149. # Windhawk
  5150. Calamitygale: 100
  5151. Crescivebolt: 100
  5152. Windsign: 100
  5153. # Cardinal
  5154. A_Telum: 100
  5155. A_Vita: 100
  5156. Benedictum: 100
  5157. Competentia: 100
  5158. Mediale: 100
  5159. Pre_Acies: 100
  5160. Religio: 100
  5161. # Meister
  5162. Abr_Battle_Warior: 100
  5163. Abr_Dual_Cannon: 100
  5164. Abr_Infinity: 100
  5165. Abr_Mother_Net: 100
  5166. Axe_Stomp: 100
  5167. A_Machine: 100
  5168. D_Machine: 100
  5169. # Shadow Cross
  5170. Dancing_Knife: 100
  5171. E_Slash_Count: 100
  5172. Potent_Venom: 100
  5173. Shadow_Exceed: 100
  5174. Shadow_Scar: 100
  5175. Shadow_Weapon: 100
  5176. # Imperial Guard
  5177. Attack_Stance: 100
  5178. Guardian_S: 100
  5179. Guard_Stance: 100
  5180. Holy_S: 100
  5181. Rebound_S: 100
  5182. Shield_Power: 100
  5183. Spear_Scar: 100
  5184. Ultimate_S: 100
  5185. # Elemental Master
  5186. Elemental_Veil: 100
  5187. Spell_Enchanting: 100
  5188. Summon_Elemental_Ardor: 100
  5189. Summon_Elemental_Diluvio: 100
  5190. Summon_Elemental_Procella: 100
  5191. Summon_Elemental_Serpens: 100
  5192. Summon_Elemental_Terremotus: 100
  5193. # Troubadour/Trouvere
  5194. Ain_Rhapsody: 100
  5195. Gef_Nocturn: 100
  5196. Jawaii_Serenade: 100
  5197. Kvasir_Sonata: 100
  5198. Musical_Interlude: 100
  5199. Mystic_Symphony: 100
  5200. Pron_March: 100
  5201. Roseblossom: 100
  5202. Soundblend: 100
  5203. # Inquisitor
  5204. Firm_Faith: 100
  5205. First_Brand: 100
  5206. First_Faith_Power: 100
  5207. Holy_Oil: 100
  5208. Massive_F_Blaster: 100
  5209. Powerful_Faith: 100
  5210. Second_Brand: 100
  5211. Second_Judge: 100
  5212. Sincere_Faith: 100
  5213. Third_Exor_Flame: 100
  5214. # Biolo
  5215. Bionic_Creeper: 100
  5216. Bionic_Helltree: 100
  5217. Bionic_Woodenwarrior: 100
  5218. Bionic_Wooden_Fairy: 100
  5219. Bo_Hell_Dusty: 100
  5220. Protectshadowequip: 100
  5221. Researchreport: 100
  5222. # Abyss Chaser
  5223. Abyssforceweapon: 100
  5224. Abyss_Dagger: 100
  5225. Abyss_Slayer: 100
  5226. Shadow_Strip: 100
  5227. # Super Elementals
  5228. Cold_Force: 100
  5229. Cold_Force_Option: 100
  5230. Crystal_Armor: 100
  5231. Crystal_Armor_Option: 100
  5232. Deep_Poisoning: 100
  5233. Deep_Poisoning_Option: 100
  5234. Earth_Care: 100
  5235. Earth_Care_Option: 100
  5236. Eyes_Of_Storm: 100
  5237. Eyes_Of_Storm_Option: 100
  5238. Flamearmor: 100
  5239. Flamearmor_Option: 100
  5240. Flametechnic: 100
  5241. Flametechnic_Option: 100
  5242. Grace_Breeze: 100
  5243. Grace_Breeze_Option: 100
  5244. Poison_Shield: 100
  5245. Poison_Shield_Option: 100
  5246. Strong_Protection: 100
  5247. Strong_Protection_Option: 100
  5248. RestrictedJobs:
  5249. Abyss_Chaser: 100
  5250. Arch_Bishop: 100
  5251. Arch_Bishop_T: 100
  5252. Arch_Mage: 100
  5253. Baby_Arch_Bishop: 100
  5254. Baby_Genetic: 100
  5255. Baby_Guillotine_Cross: 100
  5256. Baby_Kagerou: 100
  5257. Baby_Mechanic2: 100
  5258. Baby_Mechanic: 100
  5259. Baby_Minstrel: 100
  5260. Baby_Oboro: 100
  5261. Baby_Ranger2: 100
  5262. Baby_Ranger: 100
  5263. Baby_Rebellion: 100
  5264. Baby_Royal_Guard2: 100
  5265. Baby_Royal_Guard: 100
  5266. Baby_Rune_Knight2: 100
  5267. Baby_Rune_Knight: 100
  5268. Baby_Shadow_Chaser: 100
  5269. Baby_Sorcerer: 100
  5270. Baby_Soul_Reaper: 100
  5271. Baby_Star_Emperor2: 100
  5272. Baby_Star_Emperor: 100
  5273. Baby_Summoner: 100
  5274. Baby_Sura: 100
  5275. Baby_Wanderer: 100
  5276. Baby_Warlock: 100
  5277. Biolo: 100
  5278. Cardinal: 100
  5279. Dragon_Knight2: 100
  5280. Dragon_Knight: 100
  5281. Elemental_Master: 100
  5282. Genetic: 100
  5283. Genetic_T: 100
  5284. Guillotine_Cross: 100
  5285. Guillotine_Cross_T: 100
  5286. Hyper_Novice: 100
  5287. Imperial_Guard2: 100
  5288. Imperial_Guard: 100
  5289. Inquisitor: 100
  5290. Kagerou: 100
  5291. Mechanic2: 100
  5292. Mechanic: 100
  5293. Mechanic_T2: 100
  5294. Mechanic_T: 100
  5295. Meister2: 100
  5296. Meister: 100
  5297. Minstrel: 100
  5298. Minstrel_T: 100
  5299. Night_Watch: 100
  5300. Oboro: 100
  5301. Ranger2: 100
  5302. Ranger: 100
  5303. Ranger_T2: 100
  5304. Ranger_T: 100
  5305. Rebellion: 100
  5306. Royal_Guard2: 100
  5307. Royal_Guard: 100
  5308. Royal_Guard_T2: 100
  5309. Royal_Guard_T: 100
  5310. Rune_Knight2: 100
  5311. Rune_Knight: 100
  5312. Rune_Knight_T2: 100
  5313. Rune_Knight_T: 100
  5314. Shadow_Chaser: 100
  5315. Shadow_Chaser_T: 100
  5316. Shadow_Cross: 100
  5317. Shinkiro: 100
  5318. Shiranui: 100
  5319. Sky_Emperor2: 100
  5320. Sky_Emperor: 100
  5321. Sorcerer: 100
  5322. Sorcerer_T: 100
  5323. Soul_Ascetic: 100
  5324. Soul_Reaper: 100
  5325. Spirit_Handler: 100
  5326. Star_Emperor2: 100
  5327. Star_Emperor: 100
  5328. Summoner: 100
  5329. Super_Baby_E: 100
  5330. Super_Novice_E: 100
  5331. Sura: 100
  5332. Sura_T: 100
  5333. Troubadour: 100
  5334. Trouvere: 100
  5335. Wanderer: 100
  5336. Wanderer_T: 100
  5337. Warlock: 100
  5338. Warlock_T: 100
  5339. Windhawk2: 100
  5340. Windhawk: 100
  5341. Maps:
  5342. gld_dun03_2: true
  5343. te_aldecas1: true
  5344. te_aldecas2: true
  5345. te_aldecas3: true
  5346. te_aldecas4: true
  5347. te_aldecas5: true
  5348. te_prtcas01: true
  5349. te_prtcas02: true
  5350. te_prtcas03: true
  5351. te_prtcas04: true
  5352. te_prtcas05: true
  5353. Mapflags:
  5354. - Flag: Flee_Penalty
  5355. Value: 20
  5356. - Flag: GuildLock
  5357. - Flag: GvG_Te
  5358. - Flag: GvG_Te_Castle
  5359. - Flag: HideDamage
  5360. - Flag: HideMobHpBar
  5361. - Flag: Invincible_Time
  5362. Value: 10000
  5363. - Flag: Long_Damage_Rate
  5364. Value: 80
  5365. - Flag: Magic_Damage_Rate
  5366. Value: 60
  5367. - Flag: Misc_Damage_Rate
  5368. Value: 60
  5369. - Flag: Monster_NoTeleport
  5370. - Flag: NoBranch
  5371. - Flag: NoCostume
  5372. - Flag: NoKnockBack
  5373. - Flag: NoLockOn
  5374. - Flag: NoMemo
  5375. - Flag: NoPenalty
  5376. - Flag: NoSave
  5377. Value: SavePoint
  5378. - Flag: NoTeleport
  5379. - Flag: NoWarp
  5380. - Flag: NoWarpTo
  5381. - Flag: PvP_NoParty
  5382. - Flag: Short_Damage_Rate
  5383. Value: 80
  5384. - Flag: Skill_Duration
  5385. Value: HT_SKIDTRAP,400
  5386. - Flag: Skill_Duration
  5387. Value: HT_LANDMINE,400
  5388. - Flag: Skill_Duration
  5389. Value: HT_ANKLESNARE,400
  5390. - Flag: Skill_Duration
  5391. Value: HT_SHOCKWAVE,400
  5392. - Flag: Skill_Duration
  5393. Value: HT_SANDMAN,400
  5394. - Flag: Skill_Duration
  5395. Value: HT_FLASHER,400
  5396. - Flag: Skill_Duration
  5397. Value: HT_FREEZINGTRAP,400
  5398. - Flag: Skill_Duration
  5399. Value: HT_BLASTMINE,400
  5400. - Flag: Skill_Duration
  5401. Value: HT_CLAYMORETRAP,400
  5402. - Flag: Skill_Duration
  5403. Value: HT_TALKIEBOX,400
  5404. - Flag: Weapon_Damage_Rate
  5405. Value: 60
  5406. - Id: 2012_Rwc_Battle_Field
  5407. DisabledSkills:
  5408. - Skill: WZ_ICEWALL
  5409. Pc: 100
  5410. - Skill: BD_ETERNALCHAOS
  5411. Pc: 100
  5412. - Skill: BD_ROKISWEIL
  5413. Pc: 100
  5414. - Skill: BA_DISSONANCE
  5415. Pc: 100
  5416. - Skill: DC_UGLYDANCE
  5417. Pc: 100
  5418. - Skill: DC_DONTFORGETME
  5419. Pc: 100
  5420. - Skill: WM_GLOOMYDAY
  5421. Pc: 100
  5422. - Skill: WM_SOUND_OF_DESTRUCTION
  5423. Pc: 100
  5424. - Skill: WM_SATURDAY_NIGHT_FEVER
  5425. Pc: 100
  5426. - Skill: WM_MELODYOFSINK
  5427. Pc: 100
  5428. - Skill: WM_BEYOND_OF_WARCRY
  5429. Pc: 100
  5430. - Skill: SO_ARRULLO
  5431. Pc: 100
  5432. - Skill: AB_CONVENIO
  5433. Pc: 100
  5434. DisabledItems:
  5435. Minus_Agi: 100
  5436. Minus_Dex: 100
  5437. Minus_Int: 100
  5438. Minus_Luk: 100
  5439. Minus_Str: 100
  5440. Minus_Vit: 100
  5441. Neuralizer: 100
  5442. Runstone_Crush: 100
  5443. Runstone_Millennium: 100
  5444. Runstone_Storm: 100
  5445. Siege_Arrow_A: 100
  5446. Siege_Arrow_S: 100
  5447. Siege_Boots: 100
  5448. Siege_Greave: 100
  5449. Siege_Manteau: 100
  5450. Siege_Muffler: 100
  5451. Siege_Plate: 100
  5452. Siege_Robe: 100
  5453. Siege_Shoes: 100
  5454. Siege_Suits: 100
  5455. TE_Ring_Of_Defiance: 100
  5456. TE_Ring_Of_Protection: 100
  5457. TE_Ring_Of_Rage: 100
  5458. TE_White_Potion: 100
  5459. TE_White_Slim_Potion: 100
  5460. TE_Woe_Axe: 100
  5461. TE_Woe_Bone_Helm: 100
  5462. TE_Woe_Book: 100
  5463. TE_Woe_Boots: 100
  5464. TE_Woe_Bow: 100
  5465. TE_Woe_Buckler: 100
  5466. TE_Woe_Cap: 100
  5467. TE_Woe_Chain_Mail: 100
  5468. TE_Woe_Coat: 100
  5469. TE_Woe_Fist: 100
  5470. TE_Woe_Gatling: 100
  5471. TE_Woe_Grenade: 100
  5472. TE_Woe_Guitar: 100
  5473. TE_Woe_Huuma: 100
  5474. TE_Woe_Katar: 100
  5475. TE_Woe_Knife: 100
  5476. TE_Woe_Lance: 100
  5477. TE_Woe_Mace: 100
  5478. TE_Woe_Mage_Coat: 100
  5479. TE_Woe_Magic_Eyes: 100
  5480. TE_Woe_Magic_Guard: 100
  5481. TE_Woe_Magic_Manteau: 100
  5482. TE_Woe_Magic_Sandal: 100
  5483. TE_Woe_Manteau: 100
  5484. TE_Woe_Muffler: 100
  5485. TE_Woe_Pike: 100
  5486. TE_Woe_Pistol: 100
  5487. TE_Woe_Rifle: 100
  5488. TE_Woe_Rope: 100
  5489. TE_Woe_Shield: 100
  5490. TE_Woe_Shoes: 100
  5491. TE_Woe_Shotgun: 100
  5492. TE_Woe_Staff: 100
  5493. TE_Woe_Sword: 100
  5494. TE_Woe_Two_Handed_Axe: 100
  5495. TE_Woe_Two_Hand_Staff: 100
  5496. TE_Woe_Two_Hand_Sword: 100
  5497. Treasure_Box_Scroll: 100
  5498. Uni_Catalog_Bz: 100
  5499. Velum_Arbalest: 100
  5500. Velum_Arc_Wand: 100
  5501. Velum_Bible: 100
  5502. Velum_Buster: 100
  5503. Velum_Claw: 100
  5504. Velum_Claymore: 100
  5505. Velum_CrossBow: 100
  5506. Velum_Damascus: 100
  5507. Velum_Encyclopedia: 100
  5508. Velum_Flail: 100
  5509. Velum_Glaive: 100
  5510. Velum_Guillotine: 100
  5511. Velum_Jamadhar: 100
  5512. Velum_Katzbalger: 100
  5513. Velum_Scare: 100
  5514. Velum_Spear: 100
  5515. Velum_Stunner: 100
  5516. Vending_Search_Scroll2: 100
  5517. Vending_Search_Scroll: 100
  5518. Woe_Blue_Potion: 100
  5519. Woe_Violet_Potion: 100
  5520. Woe_White_Potion: 100
  5521. Maps:
  5522. 1@def01: true
  5523. 1@def02: true
  5524. 1@def03: true
  5525. 2009rwc_01: true
  5526. 2009rwc_02: true
  5527. 2009rwc_03: true
  5528. 2009rwc_04: true
  5529. 2009rwc_05: true
  5530. 2009rwc_06: true
  5531. 2009rwc_07: true
  5532. 2009rwc_08: true
  5533. 2009rwc_f01: true
  5534. 2012rwc_01: true
  5535. 2012rwc_02: true
  5536. 2012rwc_03: true
  5537. 2012rwc_04: true
  5538. 2012rwc_05: true
  5539. 2012rwc_06: true
  5540. 2012rwc_07: true
  5541. 2012rwc_08: true
  5542. ice_dun03: true
  5543. Mapflags:
  5544. - Flag: GvG
  5545. - Flag: GvG_NoParty
  5546. - Flag: NoBranch
  5547. - Flag: PvP_NoGuild
  5548. - Flag: PvP_NoParty
  5549. - Id: Unknown_Bossnia # Bossnia Event
  5550. DisabledSkills:
  5551. - Skill: BD_ETERNALCHAOS
  5552. Pc: 100
  5553. - Skill: BD_ROKISWEIL
  5554. Pc: 100
  5555. - Skill: BA_DISSONANCE
  5556. Pc: 100
  5557. - Skill: DC_UGLYDANCE
  5558. Pc: 100
  5559. - Skill: DC_DONTFORGETME
  5560. Pc: 100
  5561. - Skill: WM_GLOOMYDAY
  5562. Pc: 100
  5563. - Skill: WM_SOUND_OF_DESTRUCTION
  5564. Pc: 100
  5565. - Skill: WM_SATURDAY_NIGHT_FEVER
  5566. Pc: 100
  5567. - Skill: WM_MELODYOFSINK
  5568. Pc: 100
  5569. - Skill: WM_BEYOND_OF_WARCRY
  5570. Pc: 100
  5571. - Skill: SC_MANHOLE
  5572. Pc: 100
  5573. - Skill: SC_BLOODYLUST
  5574. Pc: 100
  5575. - Skill: SC_DIMENSIONDOOR
  5576. Pc: 100
  5577. - Skill: SO_ARRULLO
  5578. Pc: 100
  5579. - Skill: WE_CALLALLFAMILY
  5580. Pc: 100
  5581. - Skill: AB_CONVENIO
  5582. Pc: 100
  5583. - Skill: TR_ROKI_CAPRICCIO
  5584. Pc: 100
  5585. - Skill: TR_NIPELHEIM_REQUIEM
  5586. Pc: 100
  5587. - Skill: EM_ACTIVITY_BURN
  5588. Pc: 100
  5589. DisabledItems:
  5590. Minus_Agi: 100
  5591. Minus_Dex: 100
  5592. Minus_Int: 100
  5593. Minus_Luk: 100
  5594. Minus_Str: 100
  5595. Minus_Vit: 100
  5596. Neuralizer: 100
  5597. N_Fly_Wing: 100
  5598. Runstone_Crush: 100
  5599. Runstone_Millennium: 100
  5600. Runstone_Storm: 100
  5601. Sg_Blue_Potion_Box: 100
  5602. Sg_Violet_Potion_Box: 100
  5603. Sg_White_Potion_Box: 100
  5604. Siege_Arrow_A: 100
  5605. Siege_Arrow_S: 100
  5606. Siege_Boots: 100
  5607. Siege_Greave: 100
  5608. Siege_Manteau: 100
  5609. Siege_Muffler: 100
  5610. Siege_Plate: 100
  5611. Siege_Robe: 100
  5612. Siege_Shoes: 100
  5613. Siege_Suits: 100
  5614. TE_Ring_Of_Defiance: 100
  5615. TE_Ring_Of_Protection: 100
  5616. TE_Ring_Of_Rage: 100
  5617. TE_White_Potion: 100
  5618. TE_White_Slim_Potion: 100
  5619. TE_Woe_Axe: 100
  5620. TE_Woe_Bone_Helm: 100
  5621. TE_Woe_Book: 100
  5622. TE_Woe_Boots: 100
  5623. TE_Woe_Bow: 100
  5624. TE_Woe_Buckler: 100
  5625. TE_Woe_Cap: 100
  5626. TE_Woe_Chain_Mail: 100
  5627. TE_Woe_Coat: 100
  5628. TE_Woe_Fist: 100
  5629. TE_Woe_Gatling: 100
  5630. TE_Woe_Grenade: 100
  5631. TE_Woe_Guitar: 100
  5632. TE_Woe_Huuma: 100
  5633. TE_Woe_Katar: 100
  5634. TE_Woe_Knife: 100
  5635. TE_Woe_Lance: 100
  5636. TE_Woe_Mace: 100
  5637. TE_Woe_Mage_Coat: 100
  5638. TE_Woe_Magic_Eyes: 100
  5639. TE_Woe_Magic_Guard: 100
  5640. TE_Woe_Magic_Manteau: 100
  5641. TE_Woe_Magic_Sandal: 100
  5642. TE_Woe_Manteau: 100
  5643. TE_Woe_Muffler: 100
  5644. TE_Woe_Pike: 100
  5645. TE_Woe_Pistol: 100
  5646. TE_Woe_Rifle: 100
  5647. TE_Woe_Rope: 100
  5648. TE_Woe_Shield: 100
  5649. TE_Woe_Shoes: 100
  5650. TE_Woe_Shotgun: 100
  5651. TE_Woe_Staff: 100
  5652. TE_Woe_Sword: 100
  5653. TE_Woe_Two_Handed_Axe: 100
  5654. TE_Woe_Two_Hand_Staff: 100
  5655. TE_Woe_Two_Hand_Sword: 100
  5656. Uni_Catalog_Bz: 100
  5657. Velum_Arbalest: 100
  5658. Velum_Arc_Wand: 100
  5659. Velum_Bible: 100
  5660. Velum_Buster: 100
  5661. Velum_Claw: 100
  5662. Velum_Claymore: 100
  5663. Velum_CrossBow: 100
  5664. Velum_Damascus: 100
  5665. Velum_Encyclopedia: 100
  5666. Velum_Flail: 100
  5667. Velum_Glaive: 100
  5668. Velum_Guillotine: 100
  5669. Velum_Jamadhar: 100
  5670. Velum_Katzbalger: 100
  5671. Velum_Scare: 100
  5672. Velum_Spear: 100
  5673. Velum_Stunner: 100
  5674. Vending_Search_Scroll2: 100
  5675. Vending_Search_Scroll: 100
  5676. Woe_Blue_Potion: 100
  5677. Woe_Violet_Potion: 100
  5678. Woe_White_Potion: 100
  5679. Mapflags:
  5680. - Flag: NoBranch
  5681. - Flag: NoMemo
  5682. - Flag: NoSave
  5683. Value: SavePoint
  5684. - Flag: NoTeleport
  5685. - Flag: NoWarpTo
  5686. - Id: Unknown_Bloody_Branch # Bloody Dead Branch
  5687. DisabledSkills:
  5688. - Skill: BD_ETERNALCHAOS
  5689. Pc: 100
  5690. - Skill: BD_ROKISWEIL
  5691. Pc: 100
  5692. - Skill: BA_DISSONANCE
  5693. Pc: 100
  5694. - Skill: DC_UGLYDANCE
  5695. Pc: 100
  5696. - Skill: DC_DONTFORGETME
  5697. Pc: 100
  5698. - Skill: WM_GLOOMYDAY
  5699. Pc: 100
  5700. - Skill: WM_SOUND_OF_DESTRUCTION
  5701. Pc: 100
  5702. - Skill: WM_SATURDAY_NIGHT_FEVER
  5703. Pc: 100
  5704. - Skill: WM_MELODYOFSINK
  5705. Pc: 100
  5706. - Skill: WM_BEYOND_OF_WARCRY
  5707. Pc: 100
  5708. - Skill: SO_ARRULLO
  5709. Pc: 100
  5710. - Skill: SC_MANHOLE
  5711. Pc: 100
  5712. - Skill: SC_BLOODYLUST
  5713. Pc: 100
  5714. - Skill: TR_ROKI_CAPRICCIO
  5715. Pc: 100
  5716. - Skill: TR_NIPELHEIM_REQUIEM
  5717. Pc: 100
  5718. - Skill: EM_ACTIVITY_BURN
  5719. Pc: 100
  5720. DisabledItems:
  5721. Minus_Agi: 100
  5722. Minus_Dex: 100
  5723. Minus_Int: 100
  5724. Minus_Luk: 100
  5725. Minus_Str: 100
  5726. Minus_Vit: 100
  5727. Neuralizer: 100
  5728. Runstone_Crush: 100
  5729. Runstone_Millennium: 100
  5730. Runstone_Storm: 100
  5731. Sg_Blue_Potion_Box: 100
  5732. Sg_Violet_Potion_Box: 100
  5733. Sg_White_Potion_Box: 100
  5734. Siege_Arrow_A: 100
  5735. Siege_Arrow_S: 100
  5736. Siege_Boots: 100
  5737. Siege_Greave: 100
  5738. Siege_Manteau: 100
  5739. Siege_Muffler: 100
  5740. Siege_Plate: 100
  5741. Siege_Robe: 100
  5742. Siege_Shoes: 100
  5743. Siege_Suits: 100
  5744. TE_Ring_Of_Defiance: 100
  5745. TE_Ring_Of_Protection: 100
  5746. TE_Ring_Of_Rage: 100
  5747. TE_White_Potion: 100
  5748. TE_White_Slim_Potion: 100
  5749. TE_Woe_Axe: 100
  5750. TE_Woe_Bone_Helm: 100
  5751. TE_Woe_Book: 100
  5752. TE_Woe_Boots: 100
  5753. TE_Woe_Bow: 100
  5754. TE_Woe_Buckler: 100
  5755. TE_Woe_Cap: 100
  5756. TE_Woe_Chain_Mail: 100
  5757. TE_Woe_Coat: 100
  5758. TE_Woe_Fist: 100
  5759. TE_Woe_Gatling: 100
  5760. TE_Woe_Grenade: 100
  5761. TE_Woe_Guitar: 100
  5762. TE_Woe_Huuma: 100
  5763. TE_Woe_Katar: 100
  5764. TE_Woe_Knife: 100
  5765. TE_Woe_Lance: 100
  5766. TE_Woe_Mace: 100
  5767. TE_Woe_Mage_Coat: 100
  5768. TE_Woe_Magic_Eyes: 100
  5769. TE_Woe_Magic_Guard: 100
  5770. TE_Woe_Magic_Manteau: 100
  5771. TE_Woe_Magic_Sandal: 100
  5772. TE_Woe_Manteau: 100
  5773. TE_Woe_Muffler: 100
  5774. TE_Woe_Pike: 100
  5775. TE_Woe_Pistol: 100
  5776. TE_Woe_Rifle: 100
  5777. TE_Woe_Rope: 100
  5778. TE_Woe_Shield: 100
  5779. TE_Woe_Shoes: 100
  5780. TE_Woe_Shotgun: 100
  5781. TE_Woe_Staff: 100
  5782. TE_Woe_Sword: 100
  5783. TE_Woe_Two_Handed_Axe: 100
  5784. TE_Woe_Two_Hand_Staff: 100
  5785. TE_Woe_Two_Hand_Sword: 100
  5786. Uni_Catalog_Bz: 100
  5787. Velum_Arbalest: 100
  5788. Velum_Arc_Wand: 100
  5789. Velum_Bible: 100
  5790. Velum_Buster: 100
  5791. Velum_Claw: 100
  5792. Velum_Claymore: 100
  5793. Velum_CrossBow: 100
  5794. Velum_Damascus: 100
  5795. Velum_Encyclopedia: 100
  5796. Velum_Flail: 100
  5797. Velum_Glaive: 100
  5798. Velum_Guillotine: 100
  5799. Velum_Jamadhar: 100
  5800. Velum_Katzbalger: 100
  5801. Velum_Scare: 100
  5802. Velum_Spear: 100
  5803. Velum_Stunner: 100
  5804. Vending_Search_Scroll2: 100
  5805. Vending_Search_Scroll: 100
  5806. Woe_Blue_Potion: 100
  5807. Woe_Violet_Potion: 100
  5808. Woe_White_Potion: 100
  5809. Mapflags:
  5810. - Flag: NoMemo
  5811. - Flag: NoPenalty
  5812. - Flag: NoSave
  5813. Value: SavePoint
  5814. - Flag: NoWarpTo
  5815. - Id: Unknown_RWC # RWC Mode
  5816. DisabledSkills:
  5817. - Skill: MC_VENDING
  5818. Pc: 100
  5819. - Skill: AC_MAKINGARROW
  5820. Pc: 100
  5821. - Skill: RG_STEALCOIN
  5822. Pc: 100
  5823. - Skill: TF_BACKSLIDING
  5824. Pc: 100
  5825. - Skill: AL_WARP
  5826. Pc: 100
  5827. - Skill: WZ_ICEWALL
  5828. Pc: 100
  5829. - Skill: WE_CALLPARTNER
  5830. Pc: 100
  5831. - Skill: WE_CALLBABY
  5832. Pc: 100
  5833. - Skill: WE_CALLPARENT
  5834. Pc: 100
  5835. - Skill: TK_HIGHJUMP
  5836. Pc: 100
  5837. - Skill: LK_BERSERK
  5838. Pc: 100
  5839. - Skill: ST_CHASEWALK
  5840. Pc: 100
  5841. - Skill: HP_BASILICA
  5842. Pc: 100
  5843. - Skill: CR_CULTIVATION
  5844. Pc: 100
  5845. - Skill: CG_MOONLIT
  5846. Pc: 100
  5847. - Skill: NJ_KIRIKAGE
  5848. Pc: 100
  5849. - Skill: SC_MANHOLE
  5850. Pc: 100
  5851. - Skill: SC_GROOMY
  5852. Pc: 100
  5853. - Skill: SC_UNLUCKY
  5854. Pc: 100
  5855. - Skill: GN_CHANGEMATERIAL
  5856. Pc: 100
  5857. - Skill: SO_EL_ANALYSIS
  5858. Pc: 100
  5859. - Skill: SC_DIMENSIONDOOR
  5860. Pc: 100
  5861. - Skill: TR_ROKI_CAPRICCIO
  5862. Pc: 100
  5863. - Skill: TR_NIPELHEIM_REQUIEM
  5864. Pc: 100
  5865. - Skill: EM_ACTIVITY_BURN
  5866. Pc: 100
  5867. DisabledItems:
  5868. Anodyne: 100
  5869. Assumptio_5_Scroll: 100
  5870. Neuralizer: 100
  5871. N_Fly_Wing: 100
  5872. Pty_Assumptio_Scroll: 100
  5873. Runstone_Crush: 100
  5874. Runstone_Millennium: 100
  5875. Runstone_Storm: 100
  5876. Uni_Catalog_Bz: 100
  5877. Vending_Search_Scroll2: 100
  5878. Vending_Search_Scroll: 100
  5879. DisabledStatuses:
  5880. Endure: 100
  5881. Mapflags:
  5882. - Flag: Battleground
  5883. - Flag: HideDamage
  5884. - Flag: HideMobHpBar
  5885. - Flag: NoBranch
  5886. - Flag: NoCostume
  5887. - Flag: NoLockOn
  5888. - Flag: NoMemo
  5889. - Flag: NoPenalty
  5890. - Flag: NoSave
  5891. Value: SavePoint
  5892. - Flag: NoTeleport
  5893. - Flag: NoWarpTo
  5894. - Flag: PvP_NoParty