Changelog-Trunk.txt 343 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187
  1. Date Added
  2. AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO INTO TRUNK.
  3. IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK.
  4. 2007/10/27
  5. * Fixed a typo in r11505 messing up the 'npcmove' command
  6. * Removed 'petid', a command from r284 to look up pet ids by name
  7. * Fixed TXT charserver doing periodic random-sized alloc (bugreport:312)
  8. * Set 'Create Converter's produce success rate to 100% (bugreport:302)
  9. * Added check that verifies weapon/ammo/state requirements also when
  10. casting finishes (might have unwanted side-effects!) (bugreport:228)
  11. * Fixed Firewall knocking back undead/fire element mobs (bug in r11578)
  12. * Added dummy 'openmail' to txt server to fix a script error message
  13. * Improvements/fixes to the mail system improvements :) [ultramage]
  14. * Improvements to the mail system. Need Testing, [Zephyrus]
  15. 2007/10/26
  16. * Moved the new novending cell check from the internal code to the
  17. client-server interface (allows server to force-open shop if needed)
  18. * Removed confusing map_nick2sd_nocase(), let the charserver handle it
  19. * Added correct packet for attachment retrieval failure when overweight
  20. * Fixed one more mistake in r11571 (Sql->SqlStmt) [ultramage]
  21. * Removed the config setting firewall_hits_on_undead setting, Firewall and
  22. kaensin now automatically calculate the number of hits they should do per
  23. iteration based on the skill trigger frequency (you may want to raise that
  24. delay of 1ms in the db, though). [Skotlex]
  25. 2007/10/24
  26. * Corrected a fex misshaps from r11571:
  27. - disabling the memory manager
  28. - using the wrong length for the title and body in mail_savemessage
  29. * Removed the quick-fix in the npc duplicate check and the impossible condition
  30. that is generating the warning. [FlavioJS]
  31. * @/#jobchange no longer strips your equipment since pc_jobchange removes
  32. any unequippables already.
  33. * Removed the wasteful define MAX_PC_CLASS and replaced it by the
  34. CLASS_COUNT define + pc_class2idx function. This should save a bunch of
  35. memory from the map server.
  36. * Merged the CELL_NOVENDING code (see topic #129209) [Skotlex]
  37. * Increased the max. send buffer size to 5M since 1M is not enough
  38. * Updated vs7 and vs6 project files
  39. * Added upgrade_svn11548.sql to convert the mail table to new format
  40. * Cleaned up the mail code, no more pointless dynamic allocation
  41. * Cleaned up some messy guild code (more to come) [ultramage]
  42. 2007/10/23
  43. * Fixed a compilation bug on linux (FALSE -> false) [Zephyrus]
  44. 2007/10/22
  45. * Heat isn't supposed to consume SP when used against players [Playtester]
  46. - please report if it still consumes SP in pvp
  47. * Added the new mail system implementation (Requires more test and
  48. optimizations) [Zephyrus]
  49. - Updated the mail DB structure.
  50. * Removed some mail config settings and atcommands not required anymore.
  51. - Added documentation for script commands: openmail and homshuffle.
  52. 2007/10/21
  53. * Fixed a small mistake in r11503 causing a fatal error&exit on unix
  54. when you try to do a graceful exit (by ctrl+c for example) [ultramage]
  55. * Removed SC_INCAGIRATE/SC_INCDEXRATE as they are not used anymore.
  56. * Added SC_INCASPDRATE, SC_INCFLEE2, SC_INCCRI, SC_INCDEF, SC_INCBASEATK
  57. and SC_FASTCAST as these are required by the newer items. [Skotlex]
  58. 2007/10/20
  59. * Fixed 'unequip' removing items in the wrong position (bugreport:252)
  60. * Fixed #refine unequpping the caller's item by mistake (bugreport:265)
  61. * Fixed a nasty bug from r11410 which let people create chars with
  62. already taken char names, and (in TXT's case) even cause a crash.
  63. - Bug was a variable name collision between the total number of chars
  64. and a char's slot number (both were called 'char_num'). [ultramage]
  65. * Some more updates to the skill unit code [Playtester]
  66. - renamed SKILLUNITTIMER_INVERVAL to SKILLUNITTIMER_INTERVAL
  67. - Heat now depends on the interval settings rather than firewall_hits_on_undead
  68. - Icewall doesn't break anymore when the SKILLUNITTIMER_INTERVAL gets changed
  69. 2007/10/19
  70. * Added bonusautoscript and bonusautoscript2. These are used to attach a
  71. script to a player which gets executed on attack (or when attacked). This
  72. is very similar to the autospell bonuses, except that a script is executed
  73. instead of a spell. See doc/script_commands for indepth description and
  74. usage. NOTE that I am unable to test ingame, and even though I proofread
  75. the code it could have bugs. Feel free to test and report. [Skotlex]
  76. * Applied some cleanups that should correct "Infinite Endure" ending
  77. sometimes. [Skotlex]
  78. 2007/10/18
  79. * Rev. 11516 Uncommented the showwarning and showdebug from 11508. [L0ne_W0lf]
  80. * Fixed the incorrect map names on the debug messages (mapid->mapindex
  81. mishap from r11508).
  82. * Fixed the incorrect reporting of npc names being too long when the the
  83. length is 24 (from r11508). [FlavioJS]
  84. * Rev. 11511 Commented out ShowWarning and ShowDebug messages added [L0ne_W0lf]
  85. in revision 11508. Aside from the ShowDebug being faulty, they
  86. are both fare too annoying for public use for the time being.
  87. If/when I get the NPC names fixed, we can add it back.
  88. * Further optimization of the skill unit code [Playtester]
  89. - removed code for Crimson Fire Formation it now uses the same code as Fire Wall
  90. - added same knockback behavior as Fire Wall for Fire Formation
  91. - Heat now does 50 hits a second in pvp too
  92. - please let me know of any bugs that might appear
  93. * Optimized the skill unit code [Playtester]
  94. - reverted the unit timer interval to 100ms to save CPU usage
  95. - rewrote the unit code of Fire Wall, Fire Formation and Heat so that they hit
  96. every 20ms if the target wasn't knocked back despite of the unit timer interval
  97. - Heat now does 15 SP damage to players instead of 60 per hit
  98. - optimized memory usage
  99. - TODO: Renaming or removing firewall_hits_on_undead config
  100. * Clarified how npc names work in script_commands.txt.
  101. * Fixed a forgotten "return 0;" that stopped the parsing of the file
  102. after the first "script" of the file is parsed sucessfully (caused by r11502).
  103. * Applied the same parsing and restrictions of npc names to warps, duplicates
  104. and shops (other code expects unique names for them too). [FlavioJS]
  105. * Applied the new checking function to clif code, this fixes various
  106. length mismatches caused by incomplete code in r11386
  107. * Added clif_process_message(), an unified way to validate all four
  108. types of player message packets and retrieve their components
  109. * Removed the requirement to provide a character name in the message
  110. string when calling is_atcommand() (needed for the previous fix)
  111. - currently both ways work, but old will be removed in the upcoming
  112. command cleanup so please adjust your custom code if you use this!
  113. * Merged improved/cleaned up (WiP) code for clif_parse_WisMessage
  114. * Removed commented-out code for check_fake_id() [ultramage]
  115. 2007/10/17
  116. * Removed outdated copyright and version number from startup logo
  117. * Removed socket code that attempts to cope with code bugs at runtime
  118. * client_addr will now be properly set to 0 for server connections
  119. * Fixed subnet check message displaying incorrect ip addresses
  120. * Merged do_sendrecv() and do_parse() into do_sockets() [ultramage]
  121. * Reworked the parsing at npc.c.
  122. - Fixes npc.c discarding the '}' at the end of file, when there is no
  123. newline. (uncovered as a side-effect of r11487)
  124. * Empty script functions always have code now (won't report as missing
  125. when you try to call them).
  126. * Changed userfunc_db to not limit the name to 50 characters. [FlavioJS]
  127. * Ground skill now can trigger every 20ms [Playtester]
  128. - Firewall, Fire Formation and Heat now can do 50 hits a second
  129. - this was proven to be official behavior, but it will raise CPU usage
  130. * small timer.c cleaning
  131. - removed "with less than 4 values, it's speedier to use a simple loop"
  132. as this case will never occur (premature optimization from r1284)
  133. 2007/10/16
  134. * Venom Splasher fixes according to bugreport:230
  135. - added passive skillv*30% bonus from Poison React
  136. - added official splash damage calculation - damage gets split by the
  137. number of targets at range 1, then applied to all targets in range 2
  138. - reverted some very old code - clif_calc_delay() - that was preventing
  139. skills from displaying properly, by erroneously assuming that
  140. if the target has ddelay 0, it has endure effect activated
  141. * Fixed displaying of several splash skills (see bugreport:238)
  142. - added flag SD_PREAMBLE for skills that need the 'magic' packet
  143. (fixes Grimtooth / Cart Revolution displaying out of sync)
  144. - hacked together Venom Splasher's "no animation for central mob"
  145. - hacked in a custom packet to make Dragonfear display semi-correctly
  146. * Made Venom Splasher a splash attack that distributes damage
  147. * Commented out clif_skill_damage2() as it is not used anymore
  148. * Fixed a copy-paste mistake in disguise code (from r5833) [ultramage]
  149. * Tweaked the loop in parse_script to better handle when the outer
  150. brackets aren't checked.
  151. * Fixed a typo in skip_space that stopped skipping characters when it
  152. encountered a '*' or '/' in a block comment. [FlavioJS]
  153. 2007/10/15
  154. * Fixed NPC_CRITICALWOUND to reduce heal by 20% per level [Playtester]
  155. * Fixing TK Mission asigning non spawning mobs. [Zephyrus]
  156. * Updated the item price/sell reading code to enable 'null' values. The
  157. difference between a blank value and 0 is that when the value is blank, it
  158. should automatically take half/double the other value. The previous
  159. behaviour did this automatically and didn't let you specify, for example,
  160. if you wanted a given item to sell for 0.
  161. * Also added a warning when an item in the db has an exploitable price
  162. (through overcharge/discount). [Skotlex]
  163. 2007/10/14
  164. * Rev. 11476 Implemented new skill "Enlarge Weight Limit R", [L0ne_W0lf]
  165. and increased MAX_SKILL_TREE by 1.
  166. * Fixed charsrever crashes, caused by r11410 [ultramage]
  167. 2007/10/13
  168. * Fixed up NPC_POWERUP and NPC_AGIUP [Playtester]
  169. - NPC_POWERUP: 3x ATK and 2x HIT for 10+5*level seconds
  170. - NPC_AGIUP: 2x MOVE and 2x FLEE for 10+5*level seconds
  171. * Some further changes to the delayfix function [Playtester]
  172. - aftercast delay is at least amotion no matter what skill
  173. (this includes skills with cast time AND skills with skill delay!)
  174. - aftercast delay reductions can NEVER reduce the aftercast delay below amotion
  175. (this includes Bragi and Soul Links)
  176. * Again modified the delayfix function to reflect the current skill delay
  177. knowledge. Skills with 0 delay use amotion always (regardless of cast
  178. times) [Skotlex]
  179. 2007/10/12
  180. * Further updates to skill_delayfix function [Playtester]
  181. - aftercast delay can never be lower than amotion
  182. - please report if this broke any skills
  183. * Fixed wrong index calculation in TXT char creation code (ref: r11410)
  184. * Fixed SQL itemdb loading crash on NULL column (ref: 11398) [ultramage]
  185. * Updated the skill_delayfix function to behave as recently discovered by
  186. Tharis: Skills with no delay set will use amotion ONLY if the skill was
  187. instant-casted. [Skotlex]
  188. * Fixed Bragi's aftercast delay reduction [Playtester]
  189. 2007/10/10
  190. * Fixed itemdb_read_sqldb blowing up the server with segmentation faults.
  191. * Added an option for parse_script to ignore the checks for the set of
  192. brackets around the script. [FlavioJS]
  193. * Implemented more official Warp Portal behavior
  194. - the transition from active to waiting mode is now done as a simple
  195. appearance change instead of deleting one and creating the other
  196. - due to the above, an opening warp is now properly accompanied by
  197. the log-in like sound effect
  198. - Removed the check that prevented Warp Portal from opening after you
  199. picked the destination, if there was someone blocking the cell
  200. * Re-enabled packet 0x1ac to be sent when something gets ankle-snared
  201. * Partially removed the usage of 'flags' to direct the execution path
  202. in skill unit code (some people seem to really like flags >_>)
  203. - wiped out r8478 and its multiple levels of useless flag propagation
  204. - skill_unit_onlimit (expiration) no longer executes in skill_delunit
  205. - added skill_unit_ondelete for proper handling of this event
  206. * Removed 'into_abyss' effect on traps; tests show that it works ONLY
  207. for Gemstones (tho' iRO website claims otherwise) - bugreport:171
  208. - corrected code that was exploiting the flag as an 'expired' trap flag
  209. (replaced it with a more jAthena-ish approach)
  210. * Fixed a messup in r11347 causing skill units to expire, trigger
  211. or not trigger, completely randomly
  212. 2007/10/09
  213. * Added upgrade_svn11388.sql to correct some log column widths
  214. * Corrected string lengths according to bugreport:198 [ultramage]
  215. - CHATBOX_SIZE: 70 -> 70+1
  216. - removed some too aggressive checks in clif_parse_globalmessage()
  217. - removed CHAT_SIZE define as it actually doesn't apply anywhere
  218. - added CHAT_SIZE_MAX to serve as a custom limit to input string lengths
  219. 2007/10/08
  220. * Delayed the check for required items when a skill is cast to when they
  221. are consumed. Now skills only fail due to lack of items after being cast.
  222. - Please make a bug report if you know of any skill that doesn't work
  223. like this in official.
  224. * Fixed hp of other party members not being sent when you join a party.
  225. * Removed unused global array names_id and renamed some structures that
  226. are used with variables of the same name. [FlavioJS]
  227. 2007/10/07
  228. * Fixed a bug on sql char server not checking the namelength of a new
  229. character. Bug ID #184: Char Creation With An Empty Name [Zephyrus]
  230. 2007/10/06
  231. * the mapserver won't exit when no mapcache is found, with use_grf: yes
  232. * Fixed some \r uses, now looks better; /thx to Ai4rei (topic:165952)
  233. * Removed that ridiculous spinner that displays during map/npc loading
  234. - and added a more informative progress indicator (idea from jA/eapp)
  235. * Removed loads of code that supported these functions
  236. - -230b per npc => -3MB of wasted memory
  237. * Fixed related npcs that erroneously used 'stoptimer'
  238. * Checked/fixed/removed some old script and npc commands
  239. + cmdothernpc
  240. - a specialized 'donpcevent' with the event specified as two arguments
  241. + enablearena/disablearena
  242. - completely equivalent to enablewaitingroomevent & co.
  243. - do we need these 'synonyms' ?
  244. + inittimer/stoptimer
  245. - removed since its logic was incompatible with the code it depended on
  246. 2007/10/05
  247. * REALLY fixed emblem not displaying when a char logs in
  248. (compromise between r10624 and r11033 that hopefully works)
  249. * Fixed 'Wink of Charm' - shouldn't work on boss mobs (topic:166115)
  250. * Removed a broken remnant of code from old gospel code (r4349) that's
  251. _supposed_ to clear the gospel status (no item use?) when you step
  252. out of its zone; 1) the constant UNT_GOSPEL was used in a switch()
  253. instead of PA_GOSPEL (thus actually ending 'NPC_STUNATTACK' status),
  254. and 2) this code path is never taken, because Gospel is not recorded
  255. in skill_unit_temp[] (it has a periodic timer and is not DUALMODE)
  256. * Now the first empty spot in the 'skill_unit_temp' array will be used
  257. when tracking movement between land skills; reduced its length to 20
  258. * Fixed the skill unit mechanism that is supposed to track whether
  259. you're still standing in a certain land skill's AoE or not, which
  260. was not working correctly since the time it was added (r3133)
  261. - solves the nasty problem of Loki, Quagmire, ... status not ending
  262. even after stepping out of it in some cases, if there was another
  263. song overlapping the skill's area (fixes bugreport:34) [ultramage]
  264. 2007/10/04
  265. * Completed the SC_LIFEINSURANCE status and it's status icon. [Zephyrus]
  266. - Updated Item_db.txt.
  267. * Added SC_EXPBOOST (Field Manual), SC_ITEMBOOST (Bubble Gum) to const.txt.
  268. Allready working [Zephyrus]
  269. - Added SC_LIFEINSURANCE and SC_BOSSMAPINFO (not implemented)
  270. - Updated Field Manual and Bubble Gum in the itemdb.txt file.
  271. - As L0ne Wolf reported to me and based on Doddler information, the Bubble Gum
  272. only do a second try of the item drop, and it don't increase the drop rates.
  273. * Fixed a mistake in r10919 messing up logged values (bugreport:167)
  274. * Added code that compacts the vending list after a purchase; fixes
  275. the problem with empty positions appearing in the list (bugreport:168)
  276. * Corrected Icewall skill to be closer to official behavior
  277. - now works on occupied squares (previously it disappeared)
  278. - now you can walk out of an icewall square (removed code that blocked
  279. pathfinding if the origin cell was of a nonwalkable type)
  280. - added back the hack where mapcell changes are broadcast to whole map
  281. (prevents client from leaving the cells non-walkable if you warp away)
  282. * Removed integer mob skill state/target definition support (unused)
  283. * Added script source error reporting to countitem() (topic:167165)
  284. * Fixed a compile problem when hotkey saving is disabled (topic:167265)
  285. * Added MAX_HOTKEYS to supplement the HOTKEY_SAVING define [ultramage]
  286. 2007/10/03
  287. * Added the code for Bubble Gum (SC_BONUSDROP) and Field Manual
  288. (SC_BONUSEXP). items updated as it supose to work. [zephyrus]
  289. * Cleaned up parts of skill.c related to skill units [ultramage]
  290. - removed some nonsense code in skill_dance_switch() (from r8876)
  291. - removed 'security system to prevent forgetting timer removal' (r1213)
  292. - renamed some skill-related data structs (had same name as variables)
  293. - commented out custom Venom Splasher countdown messaging code
  294. * Bosses now can use teleport on Land Protector [Playtester]
  295. - Moved the homunculus shuffle code to mercenary.c, fixing the bug in the
  296. atcommand not using the bonus evolution stats for homunculus.
  297. - Adding a new script command "homshuffle" to fix homunculus using NPCs.
  298. 2007/10/01
  299. * Fixed various trading/vending glitches [ultramage]
  300. - fixed vending_tax not working at all (integer division in r10182)
  301. - undid change from r8273 where pc_getzeny() treated zeny overflow as
  302. an error condition; officially, the value is just bounded to MAX_ZENY
  303. (this fixes stuff like shops that you can't buy items from).
  304. - fixed stupid code that, instead of properly checking and filtering
  305. invalid items during shop setup, opted to 'hide' these items from
  306. the vending list instead...
  307. - removed some custom error message packets related to vending
  308. - fixed a glitch where the server would open a shop with no items
  309. when all entered items were tagged as invalid
  310. - split zeny handling from trade_tradeadditem() into a separate func
  311. - removed loads of redundant code from vending.c
  312. 2007/09/30
  313. * Removed redundant 'subnet' s_subnet structure variable. [ultramage]
  314. 2007/09/28
  315. * Changed back the query to get the friends of a character to a LEFT JOIN.
  316. * Setting the item script variables to NULL when they are freed. (bugreport:142 ?)
  317. (a double @reloaditemdb might result in a double free) [FlavioJS]
  318. * Rev. 11325 Corrected Summer Outfit not included as a PC class. (Zephyrus_CR) [L0ne_W0lf]
  319. * Rev. 11321 Implemented Summer Outfit care of Zephyrus_CR. [L0ne_W0lf]
  320. - Increased MAX_GUILDCASTLE in mmo.h to 29 for future implementation
  321. of the 12.1 Guild Castles.
  322. * Fixed sql target not including the save target in the Makefile, needed
  323. by the map server for save/mapreg.txt. (bugreport:131) [FlavioJS]
  324. 2007/09/27
  325. * Loot code using charid's instead of id's in pick priority.
  326. * configure script using svn:eol-style LF and require mysql/pcre when
  327. --with-mysql/pcre is used.
  328. * Reimplemented mmo_char_fromsql using sql statements. (fixes bugreport:93)
  329. * Fixed buildin_gethominfo not being included in the script engine. (bugreport:124)
  330. * homunculus_evolution -> homevolution in script_commands.txt.
  331. * Deleted item DEFAULT from item_db.txt and regenerated item_db.sql. (bugreport:103)
  332. * Skip empty lines and give more feedback (for invalid lines) when reading
  333. item_db.txt/item_db2.txt. [FlavioJS]
  334. 2007/09/26
  335. * Rev. 11307 Implemented Token of Siegfried effect care of Zephyrus_CR. [L0ne_W0lf]
  336. 2007/09/25
  337. * Modified a bit the hard/lazy ai triggers to match aegis (you can alter
  338. these changing the defines near the beginning of mob.c):
  339. - Mobs go into active AI when they are 2 cells from entering a player's
  340. view (ACTIVE_AI_RANGE)
  341. - Mobs in passive AI no longer use skills.
  342. - Mobs in passive AI do not random walk UNLESS they have entered active AI
  343. before (random walk frequency is not lost during passive AI).
  344. * Added an additional check to prevent support skills from being blocked if
  345. the target has an armor element that blocks it. [Skotlex]
  346. * Fixed the double free's caused by r11290 (wrong option in the database
  347. constructors). [FlavioJS]
  348. * Corrected being able to cast multiple Gravitation Fields before the
  349. previous one is cancelled. [Skotlex]
  350. * Disabled tick cache (to enable it: define TICK_CACHE to the number of
  351. calls that should be cached).
  352. * Added a charid2sd database for fast charid searches.
  353. * Reworked the nick cache to only contain offline characters. [FlavioJS]
  354. 2007/09/24
  355. * Ignore %MDef bonuses now only reduce target's base MDEF, not MDEF2.
  356. * Updated the 'skills that cause no damage are blocked now if the skill
  357. element is blocked by the target' to only apply if the skill has a status
  358. change associated (fixes Resurrection/Heal being blocked).
  359. * Added a warning to prevent loading mobs with IDs that belong to the clone
  360. range. [Skotlex]
  361. * Limited manual detection of data truncation to string/enum/blob columns.
  362. * Renamed conf-tmpl to conf. [FlavioJS]
  363. 2007/09/23
  364. * Added flag svn:executable to the configure script.
  365. * Added code for MySQL versions (below 5.0) that don't have
  366. MYSQL_DATA_TRUNCATED.
  367. * map_addflooritem and struct item_drop_list using id's instead of
  368. struct map_session_data's (fixes bugreport:36).
  369. * Fixed buildin_escape_sql not properly escaping in sql servers. [FlavioJS]
  370. 2007/09/22
  371. * Fixed a severe bug in inventory saving code (caused by r11192)
  372. * Applied changes to clif_parse_globalmessage() from my WiP code
  373. - clearer processing of the individual packet components
  374. - proper code ordering, some more integrity checks
  375. - fixes to some poorly chosen ShowWarning() format strings
  376. - global chat logging no longer logs the entire string (w/ player name)
  377. * Fixed global chat logging always crashing on a null pointer
  378. * Added 'safestrnlen' to prevent null pointer crashes [ultramage]
  379. * Updated sql files [Playtester]
  380. * Added a sanity check for MAX_ZENY (doesn't compile if too big).
  381. * Redid the buildin_query_sql function. (fixes bugreport:81). [FlavioJS]
  382. 2007/09/21
  383. * itemdb.c/h using a static array of 32k struct item_data* entries (faster
  384. itemdb loockup and a first step to remove map_session_data->inventory_data).
  385. * Fixed a typo in the configure script that replaced CFLAGS with CPPFLAGS
  386. when -Wno-pointer-sign is supported by the compiler. [FlavioJS]
  387. * Fixed a typo in the status-change saving code (wrong variable used)
  388. * Fixed a case of bad sql code conversion breaking homun skill loading
  389. * Corrected skill Charge Attack as described in bugreport:67 [ultramage]
  390. - cast time is between 100% and 300% (+ infinite waiting fixed)
  391. - damage is also between 100% and 300% (doesn't increase past range 9)
  392. - added knockback that's equal to the distance to target
  393. - no longer causes teleportation on WoE grounds
  394. - if target runs behind an obstacle, the skill will still teleport you,
  395. but will not perform the attack or do knockback
  396. - this should be official behavior, so enjoy the weirdness!
  397. * Makefile deleting .svn in save folder.
  398. * Limited the number of packets parsed per cycle to 3.
  399. * Fixed sql login throwing an out-of-place debug message and escaping too
  400. much of the name string when creating a new login with _M/F.
  401. * Configure script detects 64bit distributions of MySQL.
  402. * Generated the configure script with cygwin's autoconf. [FlavioJS]
  403. 2007/09/20
  404. * Merged the tmpsql branch: [FlavioJS]
  405. - Abstraction for the sql code (sql.c/h).
  406. - New configure script and makefiles.
  407. - Restored txt zeny logging code. (r10814)
  408. - Rewrote mapserver's sql code - itemdb, mobdb, mapreg, logs. (r10814)
  409. - Fixed a precedence issue (&& and ) in char_sql/char.c. (r10833)
  410. - Improved db reading code a bit for consistency. (r11077)
  411. - Added separate atcommand for mail deletion. (r11077)
  412. - Corrected a few messages that said "new" instead of "unread". (r11077)
  413. - Broadcast (*) messages now use "*" as the target's name (not ""). (r11077)
  414. - Moved StringBuf code from utils.c/h to strlib.c/h. (r11084 r11117)
  415. - Some misc login server cleanups (reformatting etc). (r11136)
  416. - Corrected/modified some header entries. (r11141 r11147 11148)
  417. - Adjusted VS project files. (r11147)
  418. - Adjusted the way the sql charserver does item saving. (r11192)
  419. - Corrected usage of reserved keyword 'friend' in mmo.h. (r11192)
  420. 2007/09/17
  421. * Several skills with a splash area (except ground based ones) will now hit
  422. Ice-walls when casted by mobs.
  423. * Cleaned up and fixed monster_ai&0x40 (chase through warps). It works
  424. correctly now regardless of the number of players on the source/destination
  425. maps.
  426. * Updated sql files [Playtester]
  427. * Applied various crash-protections to script commands that deal with the
  428. equip-position array.
  429. * Corrected and simplified the skill_magic_reflect function. Fixed damage
  430. reflection being based on the caster rather than the target.
  431. * Potions are now usable inside Gospel by the casting Paladin (as per Aegis
  432. tests done by AuronX)
  433. 2007/09/14
  434. * Some changes brought up by AuronX (see topics 160295 and 149176):
  435. * Gravitional Field is now a MISC type of attack.
  436. * Magic reflection now effectively switches the caster/target (after damage
  437. has been calculated). Moved magic return and Magic Mirror code together
  438. with Kaite.
  439. * Now when GTB completely blocks a spell, the spell animation will still
  440. come off, but with a single bolt and MISS damage.
  441. * Removed hom_setting&0x2 since Homunculus can be hit by land spells.
  442. * Monster Property now gives a Skill Failed message when attempted on
  443. players.
  444. 2007/09/13
  445. * Corrected SG Miracle to trigger per attack, not per walked tile. Trigger
  446. rate is now 0.02%
  447. * Corrected the warmth skills not clearing up correctly the previous field
  448. when you place another one down.
  449. * Corrected vit not affecting the HP bonus that Super Novices, Ninjas and
  450. Gunslingers get. [Skotlex]
  451. 2007/09/12
  452. * Fixed a typo in r11179 causing party invitation to fail
  453. * Added SI_STEELBODY properly (value from packet capture) [ultramage]
  454. 2007/09/10
  455. * Corrected /invite letting you invite people even if you are not the party
  456. leader.
  457. * Added some reply messages when you try /invite and a. the character is
  458. not found or b. you are not the party leader.
  459. * Added a check so that the 'save on crash' routine won't get stuck if it
  460. happens to crash while attempting to save characters.
  461. * People in chat-rooms no longer receive @main messages. [Skotlex]
  462. 2007/09/10
  463. * Added a safeguard to skill_get_unit_layout() against incorrectly
  464. defined layout ids (will give weird results but won't crash at least)
  465. * Fixed Firewall/Icewall being oriented backwards (no real difference..)
  466. * Removed some junk Landprotector/Graffiti code
  467. - Graffiti doesn't get placed randomly anymore
  468. * Icewall can now be cast on yourself
  469. - TODO: for some reason, the cell on yourself immediately expires...
  470. * Merged together functions clif_set0192() and clif_changemapcell()
  471. - also removed its "send to whole map" mode which is just plain wrong
  472. (although aegis actually does use it to 'inform' caster about changes)
  473. * Added config option to adjust exp gained by 'getexp' [ultramage]
  474. 2007/09/09
  475. * Removed bonus bAddEffWhenHitShort as it is unneeded and unused.
  476. * Corrected getpetinfo so it actually returns "null" when there's no pet
  477. and you request the name (the docs state it so).
  478. * Added gethominfo (which behaves in the same way as getpetinfo).
  479. * Corrected bonus3 bAutoSpell(WhenHit) to select target enemy (rather than
  480. self) for skills with inf self and inf2 'don't target self' (aka:
  481. auto-select target skills).
  482. * Corrected map_foreachinpath to do a wall check for targets beyond the
  483. initially selected tile.
  484. 2007/09/09
  485. * Modified bonus3 bAddEff/bAddEffWhenHit so that the last parameter is now
  486. passed directly as "trigger" flag. The possible trigger values are
  487. ATF_LONG, ATF_SHORT, ATF_TARGET, ATF_SELF. Explanation added to
  488. doc/item_bonus.txt [Skotlex]
  489. * Updated sql files [Playtester]
  490. 2007/09/08
  491. * Adjusted a spot that still blocked GL's skills on login [ultramage]
  492. 2007/09/07
  493. * Added support for the new party invite/reply packets from the latest
  494. client version.
  495. * Added auto-rejecting party/guild invites when the target is disconnected
  496. from the server.
  497. * Changed the default @Main format to prevent crashes in the newer
  498. clients.
  499. 2007/09/04
  500. * bonus3 autospell (and autospell when hit) will now select for spell
  501. target self when the skill is tagged a support skill.
  502. * Increased the amount of autospells that can be held at a time from 10 to
  503. 15
  504. * Changed the "autocasted strip skills don't have a duration" to apply only
  505. to Full Strip.
  506. * Magic Mirror's duration now is reduced /15 when used on players.
  507. * Removed bonus bAddDamageByClass since it is not needed, and implemented
  508. bAddDefClass which can be used for the same purpose (but previously was
  509. doing nothing).
  510. 2007/09/03
  511. * Added bonuses bSPRegenRate, bHPRegenRate. They behave like the opposite
  512. of bHPLossRate/bSPLossRate, making you gain x Hp/Sp every y ms.
  513. * Added bonus bIgnoreMdefRate, used to ignore a % of the target's mdef when
  514. using magic attacks (bonus2 will ignore part of the mdef of all targets,
  515. bonus3 receives a race argument)
  516. * You can now use bonus2 bCastRate to adjust the cast rate of a single
  517. skill.
  518. * Cleaned the code for bleeding (hp-loss) and extended it to handle regen
  519. as well.
  520. * Some small cleanups in the pc_bonus functions.
  521. * Removed bonus3 bHpLossRate since it was doing nothing and is not used.
  522. * Corrected bGetZeny bonus to be like in Aegis. The amount received is from
  523. 1 to the given amount, you can use negative zeny values to use an amount
  524. dependant on mob's level (amount*lv).
  525. * Updated doc/item_bonus.txt with all these changes.
  526. * Anti-Magic/Stone-Skin now increase/decrease def/mdef only and in an
  527. absolute mode (+20*lv rather than +20%*lv). Also the duration is greatly
  528. decreased (x/15) when used on players.
  529. * Now when a player uses a strip skill without having it in the skill tree
  530. (auto-casted) the duration will be 0, the equipment will be stripped
  531. without causing the status change that blocks reequipping.
  532. 2007/09/02
  533. * Added @whereis command (displays normal spawn maps for given mobs).
  534. Defaults to a lv10 command. [Skotlex]
  535. * Updated Refined Sakkat Box to give only 1 Sakkat instead of 10. [Paradox924X]
  536. 2007/08/31
  537. * Added some comments to clif_changechatowner()
  538. - totally broken, see the code + topic:163829
  539. * Implemented the chatroom display packet properly
  540. - now has 4 types: public, private, npc and non-clickable npc chatroom
  541. * Implemented the chatroom leave packet properly
  542. - now utilizes the 'kicked' flag when the user was forced to leave
  543. - TODO: banlist support to prevent re-entry, see jAthena code
  544. * Documented/cleaned up chatroom code and packetry [ultramage]
  545. 2007/08/30
  546. * Updated sql files [Playtester]
  547. 2007/08/29
  548. * Added bonus bSkillHeal to distinguish offensive skill damage increases
  549. from healing power boosts.
  550. * Moved battle_skillatk_bonus to pc.c, cleaned up the related skillatk
  551. bonus code to consider the skillheal bonus option. [Skotlex]
  552. 2007/08/23
  553. * Updated athena-start & start to Shazeya's hack. Please test them! [DracoRPG]
  554. - Simplest way is to run ./start that is equivalent to Windows runserver_sql.bat
  555. - To run TXT instead, edit the beginning of athena-start with proper filenames
  556. 2007/08/22
  557. * Fixed Dragon Fear's status change selection and duration.
  558. * Fixed Metamorphosis not displaying a speed-change update on the client.
  559. * Status changes that were blocked by element are no longer blocked,
  560. instead, now no-damage skills are blocked if they have an element which is
  561. absorbed by the target (This is the behaviour that Tharis believes is
  562. correct). [Skotlex]
  563. 2007/08/19
  564. * Set proper limits to drop rates, prevents int overflow during calc
  565. * Cleaned/clarified some #include relationships between headers
  566. - TODO: pc_read_gm_account() still accessses the RFIFO directly!
  567. * Again removed the IG_ list from itemdb.h (see r10100 and r10113)
  568. 2007/08/18
  569. * Fixed a deallocation mistake and some buffer overflows in npc_chat.c
  570. after doing rtfm@pcre.txt (all caused by incorrect usage of pcre api)
  571. * Removed underscores in npc_chat.c's variable names (easier to read)
  572. * Moved npc pcre-data deallocation from npc_remove_map to npc_unload
  573. 2007/08/17
  574. * Implemented the official dual-wield aspd equation [ultramage]
  575. - using 0.7 instead of 0.66 as modifier (so aspd will be lower now)
  576. - see topic:151132 for details
  577. 2007/08/16
  578. * Fixed eAthena's wrong interpretation of the respawn times [Playtester]
  579. * Added icons for NPC_CRITICALWOUND and NPC_SLOWCAST [Playtester]
  580. * Fixed npc chatrooms not being deleted on npc unload/reload (crash)
  581. * Modified chat code a bit for more clarity [ultramage]
  582. - replaced double-indirection on 'owner' with a normal pointer
  583. - separated some common functionality to 'chat_createchat()'
  584. 2007/08/15
  585. * Merged and completed Latio's work on server-side hot-key saving
  586. (http://www.eathena.ws/board/index.php?s=&showtopic=159388&view=findpost&p=884453):
  587. Now hotkeys are stored server-side (table hotkey in SQL servers, file
  588. save/hotkeys.txt for TXT servers). You can disable this behaviour by
  589. commenting out the 'HOTKEY_SAVING' define in mmo.h
  590. * Apply upgrade_svn11018.sql to create the hotkey table. [Skotlex]
  591. * Some serious code cleanups
  592. - adjusted @reloadbattleconf to not depend on variable ordering
  593. - changed all battle vars to 'int' (removes pointless duplicit coding)
  594. - added min, max and default columns to battle config data structure
  595. - added properly bounded values for these columns (or at least tried to)
  596. - battle-conf loading will now complain if it finds unknown settings,
  597. and will reject values that are outside of the allowed range
  598. - added CHATROOM_TITLE_SIZE and CHATROOM_PASS_SIZE
  599. - partially cleaned up chatroom manipulation code
  600. 2007/08/13
  601. * Modified map_foreachinrange so that you can also specify the max length
  602. of the path to use. The max_count field in the skill_db is used to specify
  603. this range for path-type skills (Sharpshooting, Kamaitachi and the NPC
  604. Breath skills.
  605. * Implemented the 'new' NPC skills described here:
  606. http://ro.doddlercon.com/wiki/index.php?title=Monster_Skills . It is mostly
  607. complete, but the new status changes (slow cast, critical wounds, etc)
  608. don't have any visual effects yet (icon or opt changes? I don't know if
  609. they should have). Also I could not find the unit_id for Evil Land, so it
  610. looks just like Sanctuary for now. Apart from those, the only skills which
  611. I couldn't get to display properly are the Breath skills (with the
  612. exception of Fire Breath).
  613. * Corrected gtb_sc_immunity setting not taking effect if your block value was
  614. the same (that is, if the config said 30%, then you would only get status
  615. change immunity at 31%, nor 30%) [Skotlex]
  616. * Fixed a small error in the script_commands documentation about getpartyleader. [Paradox924X]
  617. * Corrected skill-based hp/sp regen, expect slight increase [ultramage]
  618. 2007/08/10
  619. * Updated item_db.sql [Playtester]
  620. 2007/08/09
  621. * The new functions now clear junk from the output buffer [ultramage]
  622. 2007/08/08
  623. * Moved damage logging to mob_log_damage, now non-damage targetted (or
  624. splash) skills also get logged into the monster's 'damage history' which
  625. affects the exp-bonus per attacker setting.
  626. * Implemented the evolution stat growth bonuses for homunculus.
  627. * Updated the @homstats command to show evolution bonuses
  628. * Corrected initial intimacy of a newly created homunculus (should be
  629. 21/1000) [Skotlex]
  630. * Cleaned up junk left in the code by the mapcache/mapindex update
  631. - Added mapindex_getmapname(_ext) to help with ".gat" adding/removing
  632. - Moved related processing to the interface (prevents duplicity)
  633. 2007/08/07
  634. * Expanded isloggedin script command to support an optional argument (char id)
  635. * Expanded warpparty command to accept target "Leader", this will warp the
  636. party to the leader.
  637. * Added a summon structure to handle non-dead-branch mob-groups since the
  638. current implementation totally fails for mob groups that don't have MANY
  639. integrants.
  640. * Fixed mobs not attempting an IDLE skill right before unlocking a target.
  641. [Skotlex]
  642. 2007/08/06
  643. * Slightly deobfuscated the max-hp calculation functionality
  644. - fixed hp/sp calc code adding extra few points from item bonuses
  645. * Added a null-pointer check to skill_initunit() to prevent a crash
  646. * Added a while() loop to the client packet processor (for performance)
  647. * Added support for kRO 2007-05-14aSakexe langtype 0 login packet 0x2b0
  648. 2007/08/04
  649. * Removed weird mvp reward item drop behavior (see topic:160077)
  650. * Fixed Cart Revolution not transferring status effects on attack,
  651. and Cart Termination doing it when it shouldn't (see topic:156745)
  652. * Fixed #refine not accepting names with spaces in them
  653. * Fixed disguises not doing sit-down properly (missing self packet)
  654. broken since r6299 stable / r5833 trunk [ultramage]
  655. 2007/07/30
  656. * Updated sql files [Playtester]
  657. * Corrected pet taming code; items are consumed immediately and only 1x
  658. - TODO: add proper code for people who want delayed consumption
  659. 2007/07/28
  660. * Removed ridiculous refine_posword config switch
  661. - TODO: remove getequipname() func, it can be fully replaced by editing
  662. a few scripts, plus it doesn't do what the docs say it should do
  663. * Fixed a silly mistake in the main script engine loop ('pos' variable)
  664. * Fixed monter -> monster typos
  665. * Compacted some script function code (fewer LoC -> faster trac ^^)
  666. 2007/07/27
  667. * Simplified exp gain equations (now more FPU-friendly and precise)
  668. - also fixes the uninitialized variable problem... sorry 'bout that >.>
  669. * Changed the way hit bonus is applied.
  670. http://www.eathena.ws/board/index.php?showtopic=157438 [Vicious]
  671. * Cleaned up mob drop code, crashfix is still needed though...
  672. * Reduced ignore-list length to 20, added proper reply packet
  673. * Cleaned up some very poorly written pm-ignore code (see r141)
  674. * Fixed a typo in Warp Portal code displaying an incorrect map name
  675. 2007/07/25
  676. * Fixed a missing homunculus info packet when doing @refresh
  677. * Added support for character rename packet (only dummy code for now)
  678. * Added support for langtype-12 char deletion packet (tested, works)
  679. * Synchronized txt/sql charserver code a bit
  680. * Adjusted motd.txt to not crash new clients
  681. * Removed some dead code from the charserver (see r352)
  682. 2007/07/24
  683. * Fixes on Venom Splasher and the like (see topic:152975) [DracoRPG]
  684. - VS / Envenom / Throw Venom Knife poison chance raised to 10+4*lv %
  685. - Removed chance to be poisoned when hit if you're a VS time-bomb
  686. - Adjusted bomb timer to correct values (5.5+0.5*lv sec)
  687. - Removed damage boost from Poison React
  688. - Now ignores EDP damage boost
  689. - Prevented use on bosses
  690. - Fixes still needed for recast restriction and splash damage
  691. * Removed Emperium-damaging ability from Gloria Domini [DracoRPG]
  692. 2007/07/23
  693. * Changed the restricting mapflag for @jump from nowarp/nowarpto
  694. to noteleport. Adjust your scripts if you were using it this way.
  695. 2007/07/20
  696. * Corrected packet_db.txt. See topic:158382 for details.
  697. As a side-effect, the latest packet version is now 22 instead of 21.
  698. * Added a charserver config option for the character renaming flag,
  699. along with a detailed comment on what it's supposed to be. This
  700. eliminates all that "change PACKETVER to 8 and recompile" mess.
  701. * Moved PACKETVER back to clif.h, cleaned the related code a bit.
  702. 2007/07/18
  703. * Added delay_dependon_agi since people actually use and need it...
  704. * Small update to the effects list (new exe's effects by Au{R}oN)
  705. * No sending of the pet_equip packet when pet has no equip (thx2Skotlex)
  706. * Added back exp gain limiting for old formula to stop exploits (see r8177)
  707. * Now a message is printed when the packet_ver filter rejects someone
  708. * Renamed two structs using same name as variables (MSVC debugger issue)
  709. 2007/07/13
  710. * Fixed yet another script engine typo, this time in 'copyarray' [ultramage]
  711. 2007/07/09
  712. * Rev. 10872 Removed a comment I had placed on line 6879 in Skill.c. [L0ne_W0lf]
  713. * Rev. 10870 Alchemist skill "AM_CANNIBALIZE" ("Summon_Flora") now [L0ne_W0lf]
  714. summons the proper monsters.
  715. 2007/07/07
  716. * Fixed typo in 'deletearray' messing up the script engine
  717. * Added a check to pc_skill() to prevent crashes on unknown skill ids
  718. 2007/07/06
  719. * Cleaned up some nasty code related to skill_blown
  720. - split 'direction' value from flags
  721. - moved (almost) entire direction calculating code to the outside
  722. - bowling bash now has the 'suck-in' effect (knockback is now done
  723. in the direction you were last facing, not in your-target direction)
  724. 2007/07/05
  725. * Fixed pet equip and pet hairstyle packet sends [ultramage]
  726. * Fixed NPC_STOP's visual effect not clearing when the status ends
  727. * Corrected @homshuffle making the skill tree be lost.
  728. * Corrected homunculus skills being unusable if the master was sitting or
  729. inflicted by a disabling status (eg: petrify, stun)
  730. * Some fixes to the cell no stacking mod (mainly mobs would just get stuck
  731. behind each other and not properly surround you). [Skotlex]
  732. 2007/07/04
  733. * Fixed a copy-paste typo messing up script variables pretty bad D:
  734. 2007/07/03
  735. * Fixed a typo in script engine erroring when working with char params
  736. * Made Homun Resurrection only fail on cast-end (see topic:155223)
  737. * Re-coded 'soundeffectall'; removed the third parameter ('coverage')
  738. - adjust your scripts if you use this command [ultramage]
  739. * Defined out a problematic piece code in conv_num.
  740. * Added reporting of constant and param script data.
  741. * Fixed an incorrect check in menu script command. [FlavioJS]
  742. 2007/07/02
  743. * Undid the change from r10298, frozen status again modifies def/mdef
  744. 2007/07/01
  745. * TXT->SQL converter fixup [ultramage]
  746. - Added missing char_id insert which totally messed up the conversion
  747. - Fixed login converter ignoring many columns (although it had the data)
  748. - Pointed out that Login-stored account variable conversion is MISSING!
  749. - Pointed out that Status, Homunculus and Mapreg conversion is MISSING!
  750. - Blocked the config functions from exiting server when file not found
  751. - Finally added VS8 project files for this thing
  752. 2007/06/28
  753. * Added a missing line to enable @displayskill atcommand [DracoRPG]
  754. 2007/06/26
  755. * Changed the string hash of the script engine to SDBM.
  756. * Reporting information about script data when an error occurs.
  757. * More work on ticket #41 (array functions). [FlavioJS]
  758. 2007/06/22
  759. * Changed behavior of some guild-related code (according to X.4 tests):
  760. - removed code that prevented Homunculus Resurrection during WoE
  761. - logging in doesn't activate the 5 minute guild skill block anymore
  762. - non-Urgent guild skills can now only be cast on WoE grounds during WoE
  763. - all guild skills now have no cast delay (previously was 1 second)
  764. - casting guild skills will now block FreeCast sages from walking
  765. - Battle Orders and Regeneration are now instacast
  766. - Restoration now has a 10 second cast time, reducible only by dex
  767. - Urgent Call's cast cannot be reduced anymore (not even by items)
  768. 2007/06/15
  769. * Fixed script command sc_end not supporting the extra argument as stated
  770. in script_commands.txt.
  771. * Script command getarg supports an extra argument with a default value
  772. that is returned if the requested argument doesn't exist. [FlavioJS]
  773. 2007/06/11
  774. * Fixed NPC_PROVOCATION (now the casting mob doesn't keep attacking)
  775. * accumulated clif.c fixes [ultramage]
  776. - Fixed pet equip not displaying correctly at all
  777. - Removed old fixpos packet (the 'new' one is way smaller)
  778. - Fixed some major logical typos in the code, cleaned up many places
  779. 2007/06/10
  780. * Rev. 10745 Updated itemdb.h with the two new item group values.
  781. (38 and 39) Why are they static anyway? [L0ne_W0lf]
  782. 2007/06/09
  783. * Added 'nosave' mapflag to que_bingo for Bingo system purposes. [SinSloth]
  784. 2007/06/04
  785. * Fixed the compilation problem from r10668
  786. 2007/06/03
  787. * Fixed a bad copy-paste from r10028 letting players escape jail
  788. (char was dead on login, so statuses (SC_JAILED) couln't be applied)
  789. * Fixed missing client update when 'return to savepoint' fails [ultramage]
  790. 2007/06/02
  791. * Displaying op names instead of numbers in script engine errors.
  792. * Fixed a bug introduced in the last rework of the fame ranking.
  793. * Created safestrncpy that ensures the string is nul-terminated. [FlavioJS]
  794. 2007/06/01
  795. * Updated sql files [Playtester]
  796. * Fixed ircbot not processing new users
  797. 2007/05/29
  798. * Hopefully fixed the vsnprintf incompatibility
  799. 2007/05/28
  800. * Fixed an infinite char-server loop on the map connection [ultramage]
  801. * RFIFOREST returns 0 when the session is eof (input data is implicitly
  802. discarted).
  803. * Reworked the player fame update: [FlavioJS]
  804. - would crash if an invalid pos was received
  805. - the wrong player could be updated on certain conditions
  806. 2007/05/26
  807. * Identified several more glitches, too tired to fix these...
  808. * Fixed server not removing member minimap dot when you leave a guild
  809. * Fixed server not sending party/guild info when you enter a map
  810. * Fixed guild emblem not showing when you log in (caused by r5359)
  811. 2007/05/25
  812. * Fixed @statall giving you +99 stats instead of setting them to 99
  813. * Fixed npctalk and @npctalk displaying the # part of the name
  814. (client filters these when you request the name of the npc, btw...)
  815. 2007/05/23
  816. * Added new flag to skill_castnodex.txt, to allow per-skill tweaking
  817. of cast time and delay reducibility by item scripts (cards and such)
  818. * Fixed Martyr's Reckoning never triggering for gms with all skills
  819. * Added MO_TRIPLEATTACK and RG_SNATCHER to @skillall's skill filter
  820. * Made gm_skill_unconditional bypass skill blocking (guild timer, etc)
  821. * Reverted the weird delay_dependon_agi thing (r8923, r9055, r9059)
  822. * Changed a few memsets to strncpy (reading past buffer is a bad idea)
  823. * Sped up some memset operations (multiples of 4 are faster)
  824. * Fixed a typo in Chase Walk code, /thx to zephyrus_cr [ultramage]
  825. 2007/05/22
  826. * Updated sql files [Playtester]
  827. 2007/05/21
  828. * Since the fifohead mess is gone, fixed leftover bad code structuring
  829. * Removed the TURBO socket mechanism - it was in fact just using a
  830. variable to cache a few arithmetic operations (premature optimization)
  831. 2007/05/20
  832. * Fixed Chase Walk having a deactivation cast time (should be instant)
  833. * Changed status calc to allow value 0 stats; aegis allows
  834. negative values, but eA is unsigned in this regard, so ...
  835. * Added positional music effect to Battle Chant / Gospel
  836. - see r10588 on how to disable it if it annoys you ^^;
  837. 2007/05/19
  838. * Added Global chat and Main chat logging
  839. - lowered the priority of the 'logging off during gw' filter
  840. * Fixed server crashes when you use long hostnames (/thx to Ancyker)
  841. * Removed the wtf-y mmo_char_fromsql_short() from r2527 [ultramage]
  842. * Fixed drops of Thanatos Dolor & Thanatos Odium regarding the quest. [SinSloth]
  843. * SQL files fixup
  844. - extended convert_engine_myisam and added innodb version
  845. - changed the max. email length to 39 (to match value in source code)
  846. - added comment for storage/guild storage picklog entries
  847. - changed SETs to ENUMs, which is the proper data type in logs
  848. - fixed incorrect defaults, shortened mapname lengths to 11
  849. - use upgrade_svn10575_*.sql to apply changes
  850. * Removed the vsnprintf->_vsnprintf define for VS9 [ultramage]
  851. * Corrected the problem with countitem2 [ultramage]
  852. 2007/05/14
  853. * Updated sql files [Toms]
  854. 2007/05/11
  855. * Updated the effect list a bit, changes by Au{R}oN
  856. * Re-phrased the attacker flee/def penalty config descs [ultramage]
  857. Ref: http://www.eathena.ws/board/index.php?showtopic=150918
  858. * Attempt to fix unwanted teleporting of immobile mobs [Playtester]
  859. 2007/05/10
  860. * Adapted the shortlist to use a static array instead of a linked list and
  861. enabled it.
  862. * Added Buuyo-Tama's shortlist for send/eof sockets (defined out for now).
  863. * Replaced toupper/tolower in ladmin by TOUPPER/TOLOWER defines. [FlavioJS]
  864. 2007/05/07
  865. * Fixed warpwaitingpc not working (bug introduced in r10471). [FlavioJS]
  866. * Added a check to login_sql against too long db-stored emails [ultramage]
  867. * Removed an unused variable in script.c [Toms]
  868. * Fixed Converters not overwriting each other [Playtester]
  869. - thanks to scerez for the fix
  870. 2007/05/06
  871. * Removed the dependency on winsock.h for definitions, it's all winsock2.h now.
  872. * Minor documentation/re-coding in chat.c.
  873. * More work on ticket #41. [FLavioJS]
  874. * Fixed Red Pouch overriding nobranch mapflag [Playtester]
  875. * Attempt to fix Kyrie Eleison not castable on enemy players [Playtester]
  876. - please test, I can't double client to test it in pvp
  877. - don't forget to recompile before testing
  878. 2007/05/04
  879. * Added an optional read-from-GRF/GAT map loading system back in.
  880. - It can be turned on with the use_grf flag in map_athena.conf.
  881. - The conf/grf-files.txt becomes relevant again. [blackhole89]
  882. * Removed the cyclic map.h<->status.h dependency, which allowed me to
  883. also remove the annoying/memory-wasting MAX_STATUSCHANGE define
  884. 2007/04/30
  885. * Ladmin fixes
  886. - Added vs8 project file for ladmin
  887. - Replaced all occurences of printf in ladmin.c with ShowMessage
  888. - Fixed ladmin working with ips using the wrong byte orer
  889. * Fixed @jumpto displaying the incorrect player name
  890. * Added more safeguards to socket.c against socket ids out of range
  891. TODO: session[] array isn't explicitly zeroed; is that a good thing?
  892. 2007/04/29
  893. * Fixed login_sql ipbans not working
  894. * login server will now bind only after finishing the init phase
  895. * Tried and fixed md5 password encryption [ultramage]
  896. - login_sql was doing stupid things like re-using one pre-generated
  897. key for all connections, and escaping binary md5 data (destroying it)
  898. - added missing code to login_txt when creating new accounts, showing
  899. that storing passwords as md5 hashes never really worked for txt
  900. - removed PASSWORDENC's conditional compilation effect, now just a flag
  901. - greatly simplified md5 password checking code, credits to eapp
  902. * Internal changes to the script engine: [FlavioJS]
  903. - modulus division detects division by 0.
  904. dividing by zero stops the script and gives an error
  905. - underflow/overflow messages differentiated (warnings)
  906. - when a script function doesn't return a value, a C_NOP value is pushed
  907. instead (avoids stack corruption)
  908. - op_add merged with op_2+op_2num/op2_str
  909. - better type checking in the operators, int/string is never assumed.
  910. The script ends when an invalid type is found.
  911. - other minor code cleanups
  912. 2007/04/26
  913. * Corrected High Jump so it works on Guild Castles when WoE is off.
  914. * Moonlit petals now always knocks to the back of the character rather than
  915. pushing the character away from it's center.
  916. 2007/04/25
  917. * Modified the mob ai think time update after using skills from
  918. adelay/amotion to 100ms since the previous method adds a large delay before
  919. the AI activates again (which screws up with the timing of idle/walk
  920. skills)
  921. * NPC_MAGICALATTACK now starts a state similar to Sacrificial Ritual, in
  922. the sense that every normal attack afterwards becomes a Magical Attack. The
  923. skill duration is 15 secs. [Skotlex]
  924. * Added missing Rachel quest map [Playtester]
  925. * Ganbantein now deletes individual skill cells instead of the whole skill
  926. in the area it is casted.
  927. * Modified the mob total damage code to prevent overflows when mobs receive
  928. over 2kM damage. [Skotlex]
  929. * Spider Web / Fiber Lock status cannot be dispelled now [ultramage]
  930. 2007/04/24
  931. * All mob casted skills have a fixed range of 9 now.
  932. * Pressure no longer vaporizes plants.
  933. 2007/04/23
  934. * Fixed bug which totally broke item group bonuses.
  935. * Added warnings when setting a pvp/gvg flag removes the other flags on the
  936. same map (gvg and pvp can't coexist on the same map)
  937. * Removed the check that prevented you from casting soul-collect when you
  938. already have 5 spirits.
  939. * Corrected Magic Rod so it doesn't displays any skill-use animation until
  940. it triggers.
  941. * Corrected Steel Body's icon (it actually belongs to AutoBerserk)
  942. * Debuff on logout&2 is again set to default, instead of removing food
  943. bonuses now it removes Maximize Power, Maximum Overthrust and Steel Body.
  944. [Skotlex]
  945. * Extended the functionality of StringBuf - length and appending a string.
  946. * menu/select/prompt script functions support grouped and empty options.
  947. The selected option number is consistent with them.
  948. * More work on ticket #41. [FlavioJS]
  949. 2007/04/22
  950. * Corrected crash if itemskill is used without an attached player.
  951. * Removed range checks for autospells as per UltraMage Aegis tests.
  952. * Added chatID skill fail check to skill_check_condition
  953. * Corrected @refresh not re-displaying your spirit spheres nor re-setting
  954. your cloth dye.
  955. * Now the "number of attackers" in mob_dead is counted only from online
  956. characters on the same map.
  957. * Updated the autospell bonus scripts so you don't have to specify all the
  958. attack type criteria. If neither of BF_LONG/BF_SHORT is specified, the
  959. spell will trigger on both. If neither of BF_WEAPON/BF_MAGIC/BF_MISC is
  960. specified, the spell will trigger on BF_WEAPON, if neither of
  961. BF_NORMAL/BF_SKILL is specified, BF_SKILL is used if the trigger is
  962. BF_MAGIC/BF_MISC and BF_NORMAL is used if the attack is BF_WEAPON. This way
  963. the default when nothing is specified is
  964. BF_NORMAL|BF_WEAPON|BF_SHORT|BF_LONG. [Skotlex]
  965. 2007/04/21
  966. * Removed the +25% mdef, -50% def effect from Freeze status
  967. * Changed autocast skills, they now only work with normal attacks!
  968. Ref: http://www.eathena.ws/board/index.php?showtopic=138159
  969. * Fixed a few spots where attack_type was getting truncated
  970. * Hopefully fixed the cygwin + size_t problem (using stddef.h as source)
  971. * Added ntows() to properly handle that client port number deficiency
  972. * Adjusted the packet_db array for a more consistent look [ultramage]
  973. 2007/04/20
  974. * Cleaned up the doc folder. Removed outdated, untranslated, useless files
  975. and began normalizing a bit other ones~ [DracoRPG]
  976. 2007/04/18
  977. * Added MEXP overflow checks. [LuzZza]
  978. * Added bonus5 bAutoSpell/bAutoSpellWhenHit. The new parameter is used to
  979. specify when the spell should trigger (melee/range + weapon/magic/misc
  980. attack), see doc/item_bonus.txt for details. [Skotlex]
  981. * Changed some %lu to %u in login_sql/login.c because uint32 is now
  982. an unsigned int [Toms]
  983. * Discarded extra deflate function needed for afm reading [ultramage]
  984. - as a result, discarded the whole chain of support functions, .c files
  985. and includes needed to make that one function run
  986. - also removed zlib compile/link dependencies where they are not needed
  987. - reduced the whole zlib package into two core include files
  988. - adjusted makefiles / project files to reflect this change
  989. 2007/04/17
  990. * Massive at+charcommand cleanup, big thanks to HiddenDragon [DracoRPG]
  991. * Partially deobfuscated the grfio module
  992. * Finally fixed mingw problems, managed to build both TXT and SQL
  993. * Fixed the uint32 platform problem (Microsoft failed so I removed it :)
  994. * Removed the cbasetypes.h dependency from the mapcache generator
  995. * Removed some random compilation warnings [ultramage]
  996. * Small bugfixes and enhancements to the map cache generator [DracoRPG]
  997. 2007/04/15
  998. * Fixed 'randomtarget' picking dead characters.
  999. * Adjusted Spiral Pierce, Shield Boomerang and Shield Chain to use atk2
  1000. instead of weight when used by non-players.
  1001. * Adjusted skills blindAttack, SilenceAttack, StunAttack, PetrifyAttack,
  1002. CurseAttack, SleepAttack, Lex Divina and Dispell to be area effect skills,
  1003. if the used skill level has a splash-range different from 0.
  1004. * Mob used Meteor Assault is able to hit icewalls now. [Skotlex]
  1005. 2007/04/15
  1006. * Fixed TXT char creation blocking characters with nonstandard names
  1007. 2007/04/13
  1008. * Committing some accumulated stuff [ultramage]
  1009. - makefile typo, maps_athena typo, svn:eol-style native for some files
  1010. * Changed the meaning of inf2=0x1000. Now it is used to "disable usage on
  1011. enemies", which only works for non-aggressive (inf!=1) skills.
  1012. * If a skill is party/guild only (inf2 0x400/0x800) it will also be
  1013. castable on enemies if the skill's inf is 1 (offensive target)
  1014. * Corrected the mob behaviour when it locks into an enemy it can't chase.
  1015. Previously it would get stuck on a lock->unlock->lock loop, with each
  1016. unlock resetting the "random walk" timer, causing the mob to just idle in
  1017. place. Now they will attempt idle skills and no longer reset the "random
  1018. walk" timer, so they behave as if they were in Idle state properly.
  1019. * Now the bonus bAtkEle will be transferred directly to the weapon when the
  1020. script is in the ammunition, and you are wielding a weapon that consumes
  1021. ammo per atttack.
  1022. 2007/04/12
  1023. * Trade-requests now fail if the target is in a NPC.
  1024. * Some cleaning of the castend_map code to prevent the menuskill variable
  1025. from not being cleared if you made a choice but the skill was not triggered
  1026. (due to silence, stun or whatever)
  1027. * Cleaned up a bit the Charge Attack casttime equation, should prevent
  1028. infinite casttime when the distance is 0.
  1029. 2007/04/11
  1030. * Now when an object changes speed, the old move-packet will be used on the
  1031. next movement, which should update the object's speed from that point and
  1032. on-wards. This is done since there appears to be no way to tell the client
  1033. a given object's speed has changed.
  1034. * Modified spirit of Wizard so that the consumption of 'Fragments' when
  1035. blocking bounced spells will only consume 1 Fragment per skill casted,
  1036. regardless of how many hits were reflected.
  1037. * Modified status_get_sc_def to handle both rate and tick reductions. This
  1038. way it can take care of the fact that curse rate/duration reductions are
  1039. not reduced by the same stats. Curse duration is now reduced by vit.
  1040. [Skotlex]
  1041. * Removed an ugly cast in socket.c
  1042. * Fixed Makefile (-Wno-unused-parameter was added twice with gcc4) [Toms]
  1043. 2007/04/10
  1044. * Recoded and renamed the trim function in strlib to normalize_name.
  1045. * Added a proper trim function to strlib.
  1046. * Cleanups at npc source file adding/removing.
  1047. * Changed db key from 'unsigned char*' to 'const char*'.
  1048. * Defined out the dump function in util.h/c. [FlavioJS]
  1049. * As an experiment Corrected many /W4 warnings on the txt login server
  1050. * Played around with MinGW a bit today... [ultramage]
  1051. - adjusted code so that it handles mingw-specific compatibility problems
  1052. - adjusted the makefile, mingw is not a subset of cygwin
  1053. 2007/04/09
  1054. * Now when saving a character, only the cart/peco/falcon 'option' states
  1055. are saved, the rest should be handled by the status change load/save
  1056. functions. This saves 'permanent' cloaking/hiding and other such oddities
  1057. if the server is unable to save your status changes on logout.
  1058. * Updated some Guild WoE rules to behave as explained here:
  1059. http://www.eathena.ws/board/index.php?showtopic=146581 [Skotlex]
  1060. 2007/04/08
  1061. * Fixed the platform-specific stricmp compilation problem
  1062. * Fixed inverted vending tax equation (!) and made it more precise
  1063. * Moved e_mail_check() and config_switch() to strlib.h
  1064. * Synchronized the login servers a bit
  1065. 2007/04/07
  1066. * Disabled the exception handler on windows debug builds
  1067. * Fixed Devotion using WE_BABY's status icon (now uses no icon);
  1068. if you have a way to determine the correct number, give feedback
  1069. * Updated the server's PCRE components to 7.0
  1070. - dll, library, header
  1071. - cleaned the only existing example and moved it to /samples
  1072. - changed the interface, now $@ is used instead of $ to store the result
  1073. - /!\ adjust your scripts if you are using npc regexp parsing /!\
  1074. * Fixed the start_point setting smashing t3h stack in some situations
  1075. * Fixed some over/under-dimensioned arrays (defines already cover the '\0')
  1076. * Fixed an unupdated define making Warp Portal fail with an error [ultramage]
  1077. * Final touches to the whole map crap [DracoRPG]
  1078. - changed MAP_NAME_LENGTH to 12, now there's MAP_NAME_LENGTH_EXT at 16 for
  1079. uses where there is / may be the .gat extension, code adjusted accordingly
  1080. - moved map_normalize_name to mapindex_normalize_name so that everything
  1081. handling map names uses the same extension-removing function
  1082. - greatly enhanced the map cache generator, complete documentation on the
  1083. tool and the map cache format can be found in doc/
  1084. - the map cache format changed a bit as a consequence, but of course a new
  1085. valid one is included (contains latest Nameless Island maps)
  1086. - and I'm sorry for the number of times I've moved around and renamed files,
  1087. now the final structure should have been reached
  1088. * Capped clif_heal's heal field (the argument received is int, but the
  1089. packet field is short, meaning that if the heal is high enough, the client
  1090. would receive a negative heal amount). [Skotlex]
  1091. 2007/04/06
  1092. * Made a crazy attempt to at least partially synchronize login&char code
  1093. * Major edit to the way the servers handle ip addresses, making them obey
  1094. the "host byte order inside, network byte order outside" rule [ultramage]
  1095. - hopefully covered all entry- and exit-points for IP address data
  1096. - discovered several places where Gravity's client breaks the convention,
  1097. will need to come up with a suitable countermeasure for that
  1098. - other than that, the code should be portable, except for printing and
  1099. ipban mask testing (those still assume a specific byte order)
  1100. - tested both txt and sql in all usual situations; tested single- and
  1101. multi-server setups, all seems to work (but watch out for hidden bugs!)
  1102. 2007/04/05
  1103. * Cleaned @whogm. It will display the name of all gms online. If their GM
  1104. level is above your own, it will only display their name, otherwise level,
  1105. position, and party/guild info is displayed. GM's using gm-hide will not
  1106. appear on this list.
  1107. * Corrected song/dances/encores reducing SP at the incorrect intervals
  1108. (either never, or every second).
  1109. 2007/04/04
  1110. * Corrected Longing for Freedom, it should triple SP cost rather than
  1111. modifying SP cost to 1/sec
  1112. * SC_ENCHANTARMS will no longer fail to start if it's already running with
  1113. a "higher elemental level".
  1114. * When trying to trade an untradeable item, the add-item-fail packet will
  1115. be sent so the client does not gets stuck. [Skotlex]
  1116. 2007/04/03
  1117. * Some spring-cleaning in sql-files, only left SVN 8k+ files [DracoRPG]
  1118. * Updated sql files [Playtester]
  1119. * Fixed char-server crash on @changegm use.
  1120. * Cleaned up mmo_auth, this function wasn't only poorly coded, it also had
  1121. a SQL-related memory leak in it!
  1122. * Corrected the attack_attr_none check being backwards (ie: this config was
  1123. working backwards!)
  1124. * All pets can now move regardless of their Mob counter part setting.
  1125. [Skotlex]
  1126. * Some source code cleaning
  1127. - Fixed the badly worded messages during mapserver startup
  1128. - Cleaned up socket config reading
  1129. - Split resolve_hostbyname() into 2 separate functions for clarity
  1130. - Moved the probably obsolete LOWER/UPPER macros to db.c (TODO: remove)
  1131. - Moved the badly placed compare_item() function to storage.c (see r779)
  1132. * Fully removed the msvcr80.dll dependency from the vs8 project files
  1133. 2007/04/02
  1134. * Removed some overly verbose item group messages & code
  1135. * re-added the item_group_list for consistency's sake, moved to itemdb.h
  1136. (after some hacking to remove the ugly map.h dependency)
  1137. * Fixed the server crashing on a timer-queued disguise / undisguise
  1138. * Fixed the server crashing on startup due to bad define [ultramage]
  1139. * Removed bonus 'bAspdAddRate'. bAspdRate now behaves on a stackable
  1140. matter, so it's no longer needed.
  1141. * Reimplemented the bonus 'bAspd' (raw Aspd increase) [Skotlex]
  1142. 2007/03/31
  1143. * Added all the missing defines for ctype.h functions and converted all
  1144. the direct uses to the defines. [FlavioJS]
  1145. 2007/03/30
  1146. * Added "do_abort" function to the core. It is invoked when the server has
  1147. received a Segmentation Fault or Floating Point Exception signal. Currently
  1148. the only one that uses it is the map-server, which then attempts to save
  1149. all online characters before aborting. Note that due to the current
  1150. coding of the sig plugin, do_abort will not be invoked if you use it!
  1151. This plugin needs to be updated... [Skotlex]
  1152. * Continued script.c cleanup [Toms]
  1153. 2007/03/29
  1154. * Corrected OPTION_XMAS since 2007 clients have split it up from
  1155. OPTION_FLYING (on previous clients both were the same option value).
  1156. * Corrected statp array not being long enough to actually hold the status
  1157. points of ALL levels up to and including MAX_LEVEL. Fixes reaching final
  1158. level and resetting giving you an unpredictable amount of status points.
  1159. 2007/03/28
  1160. * Negative aspd rate bonuses will be handled as aspd add rate since the
  1161. default non-stackable bonus is useless on penalty bonuses.
  1162. * Added check to prevent the client from using passive skills. [Skotlex]
  1163. * Updated sql-files [Playtester]
  1164. * Removed a missing file reference in the athena-start script
  1165. * Fixed a #error "<malloc.h> has been replaced by <stdlib.h>" problem
  1166. * Fixed the msg_silent setting not being announced every time [ultramage]
  1167. 2007/03/27
  1168. * Cleaned up some the mob skill use code. The skill re-use delay is set at
  1169. the time the skill is used rather than when it finishes casting. The
  1170. invalid target check was also moved to the mob skill db reading function.
  1171. * Skills can be used now when the autoskill menu is open (since there's no
  1172. packet sent by the client when you hit on cancel). [Skotlex]
  1173. * Added some svn:ignore properties [Toms]
  1174. * Solved console plugins compilation error [Toms]
  1175. * Changed MAX_LEVEL to the standard value 99. Memory consumption-= 55MB.
  1176. - !!!WARNING!!! If your server uses higher levels, be sure to adjust
  1177. this appropriately! (the define can be found in /src/map/map.h)
  1178. * Corrected SC_COMA's success chance (X.4 says it's unconditional 100%)
  1179. * Changed the vs8 used crt library to static linking [ultramage]
  1180. 2007/03/26
  1181. * Coma now reduces SP to 0 (with the exception of Dark Blessing) [Skotlex]
  1182. * Corrected "format '%lu' expects type 'long unsigned int', but argument 4
  1183. has type 'unsigned int'" warning on login.sql [Toms]
  1184. 2007/03/24
  1185. * Corrected change r10051 which prevented Ice Pick from working [ultramage]
  1186. - the 'ignore_' variables are bitflags and therefore need enough bits
  1187. to store all info; 8 bits wasn't enough in this case
  1188. 2007/03/23
  1189. * Major reconfiguration of the vs7 project files (+vs8 while I was at it)
  1190. - added definitions _DEBUG and NDEBUG to tune system-specific stuff
  1191. - reduced the build requirements (Pentium 4 was a bit too much)
  1192. - changed build settings and project structure to match the vs8 projects
  1193. - corrected some vs8 inconsistencies
  1194. * Some generic typo fixes [ultramage]
  1195. * Corrected Ankle Snare/Spider Web having a 1% chance to trap rather than
  1196. 100%
  1197. * Food boosts are now dispelled on death only.
  1198. 2007/03/22
  1199. * Corrected setitemscript not correctly updating the item's script.
  1200. * Added define MAX_CHARS so you can easily mod the server to support a
  1201. different amount of characters per account (however, there is still the
  1202. issue of hexing the client to support this change)
  1203. * Updated msg_athena.conf so it no longer uses broken english on several
  1204. entries. Thanks to Scerez for the updated file.
  1205. 2007/03/21
  1206. * getpetinfo 5 will now return the pet's rename flag.
  1207. * Autoloot will now only work on items dropped a certain distance from the
  1208. player. The distance is defined by AUTOLOOT_DISTANCE in atcommand.h and
  1209. defaults to AREA_SIZE.
  1210. * Removed Magic Rod's cast bar.
  1211. * Gravitation no longer causes damage flinch. [Skotlex]
  1212. 2007/03/20
  1213. * Increased MAX_STATUSCHANGE to 300 to make room for new statuses [DracoRPG]
  1214. * Reverted mapindex reading from map_list.txt for the map-server [DracoRPG]
  1215. * Patched the MAX_STATUSCHANGE startup error [ultramage
  1216. * Removed the last argument from script command skillitem.
  1217. * Added skill ITEM_ENCHANTARMS, this is what weapon enchanting items should
  1218. use.
  1219. * Added support for specifying different elements per skill level in the
  1220. skill_db
  1221. * Added bonus bNoKnockback.
  1222. * Corrected login sql server not reseting your account state to 0 when the
  1223. banuntil duration expires.
  1224. * Made the skillatk bonus it's own function, it can now be used to boost
  1225. Heal/Sanctuary/Potion Pitcher and Slim Pitcher as well.
  1226. * Corrected Teleport's save map entry being sent without the .gat
  1227. extension.
  1228. * Corrected Warp Portal not sending the map names with the .gat extension.
  1229. * Probably corrected Disarm's strip animation.
  1230. 2007/03/19
  1231. * Rewrote the jail logic to always use a status change. This means that the
  1232. character's save point is not changed when jailed, and the char is always
  1233. warped back to the point where it was before being jailed on unjail.
  1234. * Modified @adjcmdlvl so you can't set a command to require higher level
  1235. than yourself, and so you can't edit the level of a command which is higher
  1236. than your own.
  1237. * Corrected attack_attr_none setting disabling elemental resist cards.
  1238. * Corrected Dispell removing Jailed status.
  1239. * Corrected being able to revive with 0 hp.
  1240. * Modified the "Restart" code so that it makes you stand on spot when
  1241. pc_setpos fails to move you back to your originating location. [Skotlex]
  1242. * Fixed some wrong sql login logic
  1243. * Fixed some compiler warnings, cleaned up mapserver sql-related vars
  1244. * Removed the old 'mapserver charsave' mechanism [ultramage]
  1245. * Globalised use of script_pushint and script_getdata in script.c
  1246. If someone need them, the regexp used was :
  1247. sed -i "s/& *(st->stack->stack_data\[st->start *+ *\([^]]*\)\])/script_getdata(st,\1)/g" script.c
  1248. sed -i "s/push_val(st->stack, *C_INT *, *\([^)]*\))/script_pushint(st,\1)/g" script.c
  1249. * Little clean of unused variables in script.c [Toms]
  1250. * Script engine:
  1251. - calling functions without using the return value doesn't generate warnings
  1252. - more work on Ticket #41
  1253. * Took care of two warnings and a minor change to the makefile. [FlavioJS]
  1254. 2007/03/18
  1255. * Added missing VC++ 7.1 project files for mapcache. [Lance]
  1256. * A followup to the login_sql server changes:
  1257. Due to a missing 'else' in the case_sensitive config setting loading
  1258. code (see r483 and r3316), the option was always being set to 'off'.
  1259. Now that I have corrected it, make sure to set it exactly how you
  1260. want it to behave (usually case-insensitive)!
  1261. Failure to do so can result in half the server spamming you with
  1262. messages about how they are getting 'unregistered id' errors.
  1263. 2007/03/17
  1264. * committing my work on the login server (mostly SQL) [ultramage]
  1265. - removed the check_ip_flag from login&char (there since r1)
  1266. - removed the CMP_AUTHFIFO_IP and CMP_AUTHFIFO_LOGIN2 defines (also r1)
  1267. - removed dynamic_account_ban, gm_db settings, weren't doing anything at all
  1268. - modified the date_format setting to take the format string directly
  1269. - removed overly verbose config loading messages
  1270. - removed/simplified many more useless actions
  1271. - renamed the dynamic_pass_failure_ban_ settings to make more sense
  1272. - collected relevant config settings into a login_config structure
  1273. and documented their purpose
  1274. - allowed usage of yes/no instead of the user-unfriendly 1/0 method
  1275. in config settings (and added 1/0 as a possible option)
  1276. - fixed dnsbl which was always taking only the first entry into account
  1277. 2007/03/16
  1278. * Corrected the structure and added info on the skill fail packet (0x110).
  1279. * Added packet 0x223 as clif_upgrademessage (not used yet).
  1280. * More work on Ticket #41. [FlavioJS]
  1281. 2007/03/15
  1282. * Added SC_CHANGEUNDEAD to differentiate it from the other elemental change
  1283. skills. It now fails on Undead/Dark elemental targets.
  1284. * Corrected party item share settings not being properly updated on logon.
  1285. * Corrected battle_attr_none setting applying to elemental attacks instead
  1286. of neutral ones. [Skotlex]
  1287. 2007/03/14
  1288. * Finished polishing the new mapcache system [DracoRPG]
  1289. - common/grfio.* now empty except zipping functions (to read mapcache)
  1290. - servers do not use .gat internally anymore
  1291. => YOU CAN (and should) STOP USING .gat IN YOUR SCRIPTS
  1292. - moved files for the mapcache builder to db/ for now
  1293. - the char-server now uses the same index list as the mapcache builder
  1294. => poring_c01, poring_c02 and ng_quest mapindex have changed, beware
  1295. * Updated sql files [Playtester]
  1296. * Adjusted @pvpoff, @gvgoff, @killer, @killable to make characters stop
  1297. attacking when used.
  1298. * Dispell no longer removes food boosts.
  1299. * Players will stop attacking when they change their look.
  1300. * Applied Alydis's fix to the mvp item logs logging mvp items even if the
  1301. player couldn't get the item.
  1302. 2007/03/13
  1303. * Corrected the new packet version entries for skilluseposinfo
  1304. * Corrected item reloading not unsetting the "delay consume" flag if the
  1305. item had changed it's type.
  1306. * the Attack_Type variable in skill_attack now inherits the damage.flag
  1307. properties, this fixes ranged status effects not triggering.
  1308. 2007/03/12
  1309. * Added player not attached crash prevention to countitem/countitem2.
  1310. * Probably corrected delitem not deleting pet eggs at all.
  1311. * Hopefully fixed hidenpc/disablenpc not working on Guild flag sprites.
  1312. * Mob skill state "anytarget" no longer triggers when the mob has an
  1313. item-target (looting).
  1314. * @storage/@gstorage will no longer work if you have a trade or a storage
  1315. opened already.
  1316. * Corrected script command movenpc so it properly moves the ontouch npc
  1317. cells as well.
  1318. * Changed the unit-walk packet to be 0x86 as pointed out by FlavioJS. This
  1319. new packet is much smaller, and should greatly decrease bandwidth usage.
  1320. The only drawback is that the character will not display at all if the
  1321. client didn't know of it's existance previously, but eA should always be
  1322. sending a spawn packet when an object gets into/out of sight anyway, so
  1323. it should work correctly.
  1324. * Modified the guild master change ack packet to return the aid/cid of the
  1325. new guild master instead of the index where it was, the previous method
  1326. could cause problems in situations where the order of guild members would
  1327. not match exactly between char/map servers.
  1328. * Updated the Soul Linker's Rogue Spirit Stealth's speed bonus to +60%,
  1329. according to forum infor from ragnagate. [Skotlex]
  1330. 2007/03/09
  1331. * Mapcache can run on system with any endianness.
  1332. The generated file contains data in little endian.
  1333. * Added info on packet 0x86 (simple move packet). Not usable until a clear
  1334. separation between entering sight/leaving sight/walking in sight is done.
  1335. * Propagating const char* from the script engine.
  1336. * ".gat" is appended to the map name before sending the changemapserver
  1337. packet to the client. [FlavioJS]
  1338. * Normalized the mapname in guild get/set castle data, should fix guild
  1339. flags.
  1340. * Added log options 0x800/0x1000 to log storage moves ('R') and guild
  1341. storage moves ('G')
  1342. * Added upgrade_svn9976.sql to include 'R'/'G' on the picklog type column
  1343. set.
  1344. * Updated the logs_athena description to include the letter of each type
  1345. (512 - M, 32 - N, etc)
  1346. 2007/03/08
  1347. * Corrected the pet/homunc data not being free'd if the player logs out
  1348. before being authed.
  1349. * Initialized player's speed on pc_setnewpc to prevent homunculus copying a
  1350. speed of 0.
  1351. * Corrected ranged add-status only triggering if the attack is arrow
  1352. based.
  1353. * Updated counter add-status so they trigger on ranged attacks instead of
  1354. using "arrow_atk" state. [Skotlex]
  1355. * Here comes the new mapcache system! [DracoRPG]
  1356. - The last and only big "feature" (kind of cleanup in fact) you'll see
  1357. - Totally removes GRF/GAT handling from map-server that only reads from cache
  1358. - The cache now also contains map indexes, and is mostly zipped (1.5MB atm)
  1359. - It is shipped with eA => 100% client-independant, no more missing maps
  1360. - If you want to add custom maps, the mapcache builder is available, doc
  1361. and Unix Makefile coming as soon as possible (VC8 project only ATM :/)
  1362. - Removed now useless AFM/AF2 support, as well as the startup screen notice
  1363. 2007/03/07
  1364. * Corrected the define for NK no cardfix (def).
  1365. * Fixed the char sql server not escaping the server name before inserting
  1366. it on the ragsrvinfo table.
  1367. * Corrected @lvup not doing the party even share check.
  1368. * Corrected breaker's misc part not ignoring element.
  1369. 2007/03/06
  1370. * Added NK value 0x80: ignore target's cards (0x8 will now only ignore
  1371. attacker's cards).
  1372. * Corrected Soul Breaker ignoring target's cards instead of the caster's.
  1373. [Skotlex]
  1374. * Fixed an infinite loop if script name contains a single ':' [Toms]
  1375. * Simplified the Utsusemi/Bunsinjyutsu check to only block weapon skills
  1376. that do not ignore offensive cards. [Skotlex]
  1377. * Added support for the 2 new packet versions. [Zephiris]
  1378. * Fixed the loginlog's `user` column length (use upgrade_svn9957.sql)
  1379. 2007/03/05
  1380. * More tweaks to socket.c to simplify the code [ultramage]
  1381. - many generic cleanups - reformatting, useless code removal, etc
  1382. - made the mode_neg setting a compile-time decision, not a run-time one
  1383. - removed the silly frame_size setting (there since r1)
  1384. - added some TODOs to http://www.eathena.ws/board/index.php?showtopic=127988
  1385. * Added the +20hit that were missing the NPC elemental attack skills.
  1386. * Added support for autospells using "a random skill level". The last value
  1387. of bonus4 bAutoSpell is used for determining this as well as the target. &1
  1388. is to cast on target (otherwise cast on self), and &2 is to use a random
  1389. level UP to the level specified in the script (otherwise always cast the
  1390. specified level)
  1391. * Updated item_bonus.txt with the documentation for the
  1392. bAutoSpell/bAutoSpellWhenHit changes.
  1393. * Corrected @refresh not reupdating the basic stat bonuses.
  1394. 2007/03/03
  1395. * Modified a bit the storm gust counter code to see if it fixes storm gusts
  1396. sometimes freezing on first hit.
  1397. 2007/03/02
  1398. * Tatami Gaeshi state (proyectile blocking) now ends when you move.
  1399. * SG Union will consume now SP if you use it while not soul linked.
  1400. * Added variable "skip" to the mob spawn data, to know how many mobs to
  1401. skip when spawning because they were not removed due to the
  1402. "mob_remove_damaged" setting.
  1403. * Corrected the Hp/Sp regen formulas from Hp/Sp/Spirit Recovery and
  1404. Happy/Peaceful break according to recent forums discussions (formula is
  1405. changed from x*lv +max*lv/500 to lv*(x+max/500). [Skotlex]
  1406. * Added new script function: setiteminfo. Now you can make custom items [Lupus]
  1407. - Updated script function setitemscript(itemID,script,WhichScript)
  1408. now u can set one of 3 item scripts: use/update, equip, unequip
  1409. But it works only if the original item had 3 non empty scriptsin ITEM_DB
  1410. can't fix this issue yet
  1411. 1201,Knife,Knife,4,50,,400,17,,1,3,0xFE9F7EEF,7,2,2,1,1,1,1,{dispbottom "1";},{dispbottom "2";},{dispbottom "3";}
  1412. and... if u've used this function, later @reloaditemdb may crush the map server ^_-
  1413. - Check npc/sample/npc_test_setitemx.txt as example of setiteminfo & setitemscript
  1414. 2007/03/01
  1415. * Corrected raid not doing the "can hit?" check on splash area targets.
  1416. * Fixed the definition of warpwaitingpc so that it allows an optional
  1417. argument (number of people to warp).
  1418. * Modified the Palm Strike packet so the initial hit animation does not
  1419. displays "Miss".
  1420. * Added a check to prevent trades from being commited if either character
  1421. is in final-save state.
  1422. * Checked and cleaned up the online_check code in the char-server. Further
  1423. connections to the char-server are rejected when the account already has a
  1424. connection (previously this would happen only if there was already another
  1425. character IN game, not just waiting on the char-select screen). [Skotlex]
  1426. 2007/02/28
  1427. * Added the source and VC8 project for my experimental mapcache generator;
  1428. it is NOT compatible with eA's current mapcache but uses a brand new format
  1429. that I still have to embed into the map-server [DracoRPG]
  1430. 2007/02/27
  1431. * NPC_AGIUP now boosts flee by 100% and duration is 5+5*lv secs, as stated
  1432. on the Ragnarok Bible.
  1433. * Fixed Soul Breaker's misc part not ignoring flee.
  1434. * Fixed misc attack's flee check being backwards (the less hit%, the more
  1435. chance you had to connect)
  1436. * Corrected the range check in vending.c [Skotlex]
  1437. * Added map & distance check to vending to prevent WPE hacks. [Lupus]
  1438. E.g. buying items from WoE castle
  1439. * Fixed a compiler warning in char_sql\login.c
  1440. * Minor source documentation/cleanup. [FlavioJS]
  1441. 2007/02/26
  1442. * You are allowed to expel guild mates that are not online now.
  1443. * Corrected damage of BloodDrain
  1444. * Moved the "already connected" checks to pc_authok, since a dual login
  1445. doesn't needs to be checked until the new connection is accepted.
  1446. * You are allowed to attack/use skills now when your cloaking level is
  1447. below 3.
  1448. * Small change to Stone Curse that may fix the permanent "semi-stone"
  1449. status.
  1450. * Corrected "taming monster" having your skill-use be stuck if you cancel
  1451. the target selection process.
  1452. * config setting party_show_share_picker now displays the jname of the item
  1453. picked as well.
  1454. * Corrected some typos and small details
  1455. (forgotten bInfiniteEndure [r6487], mysterious '1' in help file, etc)
  1456. 2007/02/25
  1457. * Added Krade's makefile fix for 64bit compilers [ultramage]
  1458. - ref: http://www.eathena.ws/board/index.php?showtopic=136622
  1459. * Minor cleanup/documentation on the script engine. [FlavioJS]
  1460. 2007/02/24
  1461. * Fixed the mob_override_name setting not working on summoned mobs.
  1462. * The server now prints an error message when it the produce_db reaches the
  1463. max number of allowed produce recipes.
  1464. * The NK value of the skill_db has been made a hexadecimal value, and
  1465. expanded to include more information about a skill's damage properties: 0x8
  1466. ignore caster's cards, 0x10 ignore element adjustments, 0x20 ignore
  1467. target's defense, 0x40 ignore target's flee. Note that magic attacks
  1468. always ignore flee, and misc attacks always ignore defense.
  1469. * Autoguard will no longer work on skills that don't take in card
  1470. adjustments
  1471. * utsusemi & bunsinjyutsu no longer work on skills that don't take in card
  1472. adjustments.
  1473. * Corrected damage of the NPC elemental attack skills, Blood Drain and
  1474. Energy Drain
  1475. * Adjusted menu-based skills so you can't reuse the same skill until you've
  1476. dealt with the menu.
  1477. * Adjust autospells so that removing an autospell works when the script of
  1478. the card that removes the autospell is triggered before the script that
  1479. adds the spell.
  1480. * The "requested name of gm-hidden char" warning will not be displayed when
  1481. the object in question is an NPC (since you can use Intravision to do
  1482. this).
  1483. * Venom Knife no longer takes into accounts cards or EDP.
  1484. 2007/02/23
  1485. * Guild expulsion now will fail when the character to be kicked is in a
  1486. guild castle (rather than checking for the character doing the expulsion)
  1487. * pk damage reduction settings now will take effect only on Player VS
  1488. player damage.
  1489. * Fixed produce_db2.txt entries overwriting produce_db.txt ones.
  1490. * Fixed item-granted/plagiarized skills unlocking skill trees when only
  1491. your real learned level should. [Skotlex]
  1492. 2007/02/21
  1493. * Applied a consistent look to all header files (copyright, ifdefs)
  1494. * Minor stuff (typos, socket.c, junk in login reply packet) [ultramage]
  1495. 2007/02/19
  1496. * Fixed @cartlist info message typo [Lupus]
  1497. 2007/02/17
  1498. * Fixed a typo from r9778, allowing non-gm chars to use /kill [ultramage]
  1499. 2007/02/16
  1500. * Fixed the structure of packet 0x6d (new char info). It's the same as the
  1501. one used for packet 0x6b (chars info). [FlavioJS]
  1502. * Updated script commands startnpctimer, stopnpctimer, initnpctimer so you
  1503. can attach a player to them, this is done because the attach/detach
  1504. functions can't be used to attach to a different script than the one
  1505. currently running.
  1506. * Updated the script_command reference with the new flag values of
  1507. [start/stop/init]npctimer.
  1508. * Modified the "guardian" spawn script command, it no longer receives a
  1509. "amount" argument (since that only leads to trouble), if the class is
  1510. negative, it'll pick a random class the same way the monster spawn script
  1511. command does, and if you pass a spawn position with coordinates equal or
  1512. less to 0, a random spot in the map will be taken. However you can't use
  1513. "this" as a map name anymore since these script commands do not need an
  1514. attached player.
  1515. * Guardian spawning will now fail if you attempt to spawn a guardian that
  1516. already exists on the same position.
  1517. * Miracle of the Sun, Moon and Stars can now retrigger to lenghten it's
  1518. effect, and it is cancelled on warp/map-change. [Skotlex]
  1519. 2007/02/15
  1520. * Reverted some of my mobdb code
  1521. * Cleaned up clif_party_info a bit
  1522. * Cleaned up set_reg (the same procedure as get_val) [ultramage]
  1523. * The default packet version is now 8. Clients from November2006 and before
  1524. can no longer get past the char-server unless you change it back to 7.
  1525. * Fixed Storm Gust counter freezing on fourth hit instead of third.
  1526. * Fixed @homstats not taking into consideration that the stat growth
  1527. decimals get discarded on level up (so the real minimum/maximum displayed
  1528. was off).
  1529. 2007/02/13
  1530. * Applied Rayce's dangling pointer fix when returning a temporary npc
  1531. string variable (those starting with .@)
  1532. * Required Weapon, ammo, and skill state are now only checked on begin
  1533. casting, instead of both on begin and end casting.
  1534. 2007/02/12
  1535. * Fixed Resurrect Homunculus and Wedding skills failing. [Skotlex]
  1536. * A bit more work on Ticket #41.
  1537. * Added 'r' (variable reference) to the script argument definitions.
  1538. * Added a simple define for suspitious actions. (empty at the moment)
  1539. * Added clif_clearcart and moved sending cart packets to pc_setoption.
  1540. * clif_parse_ChangeCart checking the player level. [FlavioJS]
  1541. * Fixed clif_parse_GMmessage cutting off messages randomly [ultramage]
  1542. (due to a typo in revision r9778)
  1543. * Fixed Wand of Hermod
  1544. * Corrected Spider Web casting around caster instead of target's position.
  1545. * Corrected a possible crash during login due to checking for the incorrect
  1546. variable (lets pc_calc_status be invoked when it shouldn't)
  1547. * Added bounds checking to map_foreachincell.
  1548. * Opt2 values (poison, blind, and so on) are now resent on warp/map-change.
  1549. * Corrected description of isloggedin script command. [Skotlex]
  1550. 2007/02/11
  1551. * Fixed the inverted behavior of display_skill_fail, caused by r9823
  1552. * Fixed @loadnpc not updating the script_event[] array
  1553. 2007/02/10
  1554. * Fixed clif_party_message using an incorrect buffer length [ultramage]
  1555. * Cosmetic changes to the buildin section of script.c (use defines for
  1556. function names/definitions). [FlavioJS]
  1557. 2007/02/09
  1558. * Updated the 'unit walk' to functions so they stop your attack if it's
  1559. possible to walk.
  1560. * Fixed char server SQL not sending the guild info update to other map
  1561. servers when a new member is added.
  1562. 2007/02/08
  1563. * Modified Spider Web so it can instantly retrap a target, rather than
  1564. idling on the ground waiting for a new target.
  1565. * Cleaned up some the rude-attacked code, being attacked while under spider
  1566. web now triggers rude-attacked. [Skotlex]
  1567. * Added code for SQL that will automatically detect the ping interval
  1568. at startup, and copy-pasted it around the code; removed the conf setting
  1569. * Added a missing null pointer check in clif_parse_globalmessage
  1570. * Fixed the new socket code, which was triggering the inactivity timeout
  1571. on the servers' listening sockets
  1572. * Fixed the TURBO code not working since r4468 (parse func never called)
  1573. 2007/02/07
  1574. * More aggressive cleaning up of the socket code [ultramage]
  1575. - removed unused session_data2 entry in sd
  1576. - added a new create_session() function, helps keep things cleaner
  1577. (although it's ad-hoc and not perfect, since this is C)
  1578. - undid r4978 since it was getting in the way (re-add it if you need it)
  1579. - added defines for the recv, send and parse func pointers
  1580. - added null functions for the three actions, and made create_session()
  1581. calls use those instead of NULL pointers; insignificant penalty and now:
  1582. - since all three funcs are always initialized, removed all those NULL checks
  1583. - removed the efd set, since as the people from the developernet forums
  1584. pointed out, it's only for out-of-band data and NOT for error checking
  1585. (in fact, select() bails out without giving any info if it errors out)
  1586. - reorganized the randomly placed socket.c contents somewhat
  1587. - it'll be a miracle if this works like it should ^^;
  1588. * Modified spider web so that the skill_unit_db flag restrictions may take
  1589. place. [Skotlex]
  1590. * Cleaning up of the socket code [ultramage]
  1591. - Shuffled includes around for files that were leeching off of socket.h
  1592. - Added code that enforces standard shutdown behavior for sockets
  1593. - Wiped out the poorly written parse code from r2211
  1594. * Removed old script bonuses bMatk, bMatk1, bMatk2.
  1595. * Fixed char-server not sending online notification when a party member
  1596. logs in.
  1597. * When skill range by distance is set, the distance checked for is now 5
  1598. cells rather than 3.
  1599. * Fixed bMatkRate bonuses not applying to status earned modifications to
  1600. int/matk. [Skotlex]
  1601. * Removed deprecated console code.
  1602. * Moved CHAT_SIZE back to map.h because log_atcommand uses it on sql
  1603. builds. (moved to clif.c in r9811) [FlavioJS]
  1604. 2007/02/06
  1605. * Cleaned up the script engine's get_val() function [ultramage]
  1606. - changed the long if-spaghetti into a compact switch statement
  1607. - changed its behavior so that it exits if !sd and it requires one
  1608. - upon exiting, it will now ensure that meaningful values get returned
  1609. (the old code had no qualms about returning random junk from memory
  1610. for integer queries, and crashing for string queries)
  1611. - removed many !sd checks since they are done at the beginning now
  1612. * Fixed #lvup having the gm level check backwards.
  1613. * Fixed the stormgust freeze counter going up even if the attack is
  1614. blocked/cancelled.
  1615. * Cleaned up homunc attack request parsing. Homunculus no longer goes into
  1616. auto-attack (ctrl+click) mode since the client does every attack request
  1617. individually.
  1618. * Fixed char-server not sending party status update when a member logs
  1619. on/off.
  1620. * Fixed crash when parsing guild member information change from the
  1621. char-server if the specified character is not found in the guild.
  1622. * Fixed MvP mobs giving exp when killed even if they shouldn't.
  1623. 2007/02/05
  1624. * Fixed @lvup, #lvup not doing a stat reset and lowering your status points
  1625. if you had 0 status points at that time.
  1626. * Fixed MvP exp and item rewards being given even when the mob_dead flag
  1627. specifies you should not receive exp or items.
  1628. * Updated the code so that now a range of a skill is determined by the
  1629. skill's range in the db. Now only skills with less than 5 cells of range
  1630. are melee.
  1631. * The inf2 parameter of the skill_db is now red as an hexadecimal.
  1632. * The super novice self-revive angel will now trigger only once per
  1633. session, if you relog you can have it trigger again. [Skotlex]
  1634. * Fixed the skill tree not always updating when using @allskill
  1635. * Probably fixed the target-change on melee attack setting not working.
  1636. * Moved the deletion of the invincible timer when using skills so that it
  1637. is not deleted for skills such as Ashura (when just selecting a target)
  1638. [Skotlex]
  1639. 2007/02/03
  1640. * Continuing the checking of script buildin functions and stop the script
  1641. execution when an attached player is required but not found.
  1642. This task will be referenced as Ticket #41 from now on. [FlavioJS]
  1643. * Updated the TXT login server's account id checker
  1644. (it was still saying the minimum is 700000 instead of 2000000)
  1645. * Changed the 'getpartyleader' script command so that it returns a map
  1646. name instead of the useless mapindex number. Also fixed it so that it
  1647. doesn't throw a 'args of aFree is not valid pointer' error.
  1648. (although I'm not at all sure that the fix is correct)
  1649. Ref: http://www.eathena.ws/board/index.php?showtopic=137274
  1650. * Removed the silly and misleading 'firewall detected' message
  1651. * Added missing vc6 project file
  1652. * Corrected a lie in the script documentation [ultramage]
  1653. 2007/02/02
  1654. * Fixed the flag parameter not working on npcshopattach.
  1655. * Updated the walk delay code so that it parses homunculus as well as
  1656. players. What this means is that a homunculus walk request won't go ignored
  1657. if it's issued during the 'can't walk delay' after being hit.
  1658. * Added a possible crash protection in clif_skillfail when the player is
  1659. without a connection. [Skotlex]
  1660. * Fine-tuned the global message processing function [ultramage]
  1661. - now detects access-out-of-rfifo attempts (idea from eA++)
  1662. - uses the new CHAT_SIZE define to restrict message lengths
  1663. - detects Frost Joke/Dazzler and gives them more freedom (from Freya)
  1664. - more strict non-conformant message detection
  1665. - logging every problem to the mapserver console
  1666. * Resetting skills will now automatically remove peco, falcon, cart and
  1667. homunculus (vaporize).
  1668. * Fixed random mob picking choosing clones.
  1669. * Fixed critical spots that could be exploited [Skotlex]
  1670. - The define MESSAGE_SIZE was wrong! It is only used for input boxes.
  1671. Therefore now it is only used for Vending, Talkie box and Graffiti
  1672. - Added new define CHAT_SIZE which holds the max length that a client
  1673. can send from the chat buffer
  1674. - Added define msg_len_check which crops incoming client text if it's
  1675. longer than CHAT_SIZE. Added cropping to all incoming messages except
  1676. normal chatting which is already accounted for.
  1677. - Removed variable talkie_mes, this is now handled by sd->message
  1678. - Cleaned up parser functions for /b /lb, gm kick, /shift, /recall
  1679. - Added crash protection to the logging functions when they receive
  1680. a too long string.
  1681. 2007/02/01
  1682. * Restricted global messages to 255 characters (client shows only ~80 anyway,
  1683. wanted to use 127 but frost joke's lines are longer than that ...)
  1684. - prevented using a ~22+kB long message to crash everyone on screen
  1685. - prevented faking the message length to cause an out-of-bounds access crash
  1686. - removed the unneccessary 'buf'ffer (inspiration from jAthena)
  1687. - Ref: http://www.eathena.ws/board/index.php?showtopic=137770
  1688. * Corrected the chat system to allow 8-letter passwords
  1689. * Minor details (pdb file location, improved debug, npc typo) [ultramage]
  1690. * Cleaned up the npcshop(add/del)item script commands, fixed a possible
  1691. dangling pointer crash caused by their improper use of realloc. They no
  1692. longer automatically attach the script to the shop, and they will return
  1693. true/false based on whether the shop was found or not.
  1694. * Added script command npcshopattach to enable attaching/detaching your
  1695. script from any npc shop.
  1696. * Updated doc/script_commands.txt with entries for npcshopitem,
  1697. npcshopadditem, npcshopdelitem and npcshopattach [Skotlex]
  1698. * A followup to r9761, a header include that somehow didn't commit [ultramage]
  1699. * Item search is now a bit smarter. When no item is found with the same
  1700. 'aegis name', then the 'normal' name is used instead.
  1701. * Updated the @/# commands that take an item name so that you can use
  1702. quotes when specifying item names with spaces in them. For example, @item
  1703. "poring card" 1 will work now. Note that only the commands that work on ONE
  1704. item have been updated, those that do an item list need to be updated as
  1705. well. [Skotlex]
  1706. * Updated the old vs6 files to latest, thanks to k3dt for contributing them
  1707. * Reorganized the vs6 project files (update will follow)
  1708. * Fixed an accidental change in r9758 (edit&continue) [ultramage]
  1709. * Added support for mob skill target 'randomtarget', when specified, it
  1710. will pick a random enemy from within the skill's cast range. [Skotlex]
  1711. * Added string function strnlen [ultramage]
  1712. - This thing is useful for removing potential out-of-bounds crashes.
  1713. Had to #ifdef it because some systems implement it, some don't provide
  1714. the header, and some don't have it at all. Adjust/improve as neccessary.
  1715. * Corrected homunculus's aspd being halved after using some aspd adjusting
  1716. skill.
  1717. * Removed the log info message 'created homunc...', and the 'loaded homunc'
  1718. message will only show if the save_log is enabled.
  1719. * When when a party-member levels up, the level change is sent to the
  1720. char-server to update the even-share range values.
  1721. * When joining a gvg_dungeon, the pvp packet will be sent to signal
  1722. versus. With this gvg dungeons should be working correctly now. [Skotlex]
  1723. 2007/01/31
  1724. * Changes in the VS8 project files: [FlavioJS]
  1725. - synchronized the settings between the projects
  1726. - joined all .h and .cpp files and grouped them based on the src subfolder
  1727. - added Debug/Release build targets that build txt/sql only
  1728. - other minor changes
  1729. * Removed graph, httpd and webserver
  1730. * Wiped out the old night code (use svn if you want it) [ultramage]
  1731. 2007/01/30
  1732. * 'Long Range Attacked' mob skill conditions will no longer trigger on
  1733. magic attacks.
  1734. * Corrected char deletion not working (column is called homun_id, not
  1735. hom_id...)
  1736. * Collapsed config settings produce_item_name_input,
  1737. produce_potion_name_input, making_arrow_name_input, holywater_name_input,
  1738. cdp_name_input into a single config produce_item_name_input which uses
  1739. bitmasks to determine what it affects.
  1740. * Updated arrow_decrement to have 3 possible values: Disabled, Enabled, and
  1741. Enabled + Autoguess (gives arrow consumption as appropiate to
  1742. plagiarized/acquired skills).
  1743. 2007/01/29
  1744. * Corrected the homunculus deletion functions so that the homunculus is
  1745. deleted together with the character.
  1746. * Added npc_check_areanpc so that Wand of Hermod will correctly check for
  1747. nearby warps.
  1748. * Emergency avoid now stacks with other speed boost statuses
  1749. * Item skills and skills that bring up a menu now are cleared on death.
  1750. [Skotlex]
  1751. * Added a nasty hack to prevent multilanguage clients from breaking guild notices
  1752. 2007/01/27
  1753. * Made @reloadscript wipe ALL previous mobs that the script engine spawned
  1754. - this way it is manageable via global vars; the other way doesn't allow that
  1755. * Some misc cleanups (typos, formatting, forgotten changelog entry etc)
  1756. * Reformatted and translated atcommand.c
  1757. - in the process improved @marry, allowing spaces after the first comma
  1758. * Simple cleanup
  1759. - removed atcommands @w, @server_date/time, @red, @happyhappyjoyjoy, @shuffle
  1760. - synced gm level of @jailfor, @charjailtime, @npcmove, @chardropall,
  1761. @charstoreall, @send, @mute, @changelook, @exp and @nuke
  1762. - added conf entries for @whozeny, @kamic, @tonpc, @petid, @identify, @adopt,
  1763. @trade, @changelook, @send
  1764. - reorganized the atcommand_athena.conf file a bit
  1765. * Corrected indentation of the atcommand table (editor compatibility)
  1766. * BEGIN atcommand cleanup process
  1767. (according to http://www.eathena.ws/board/index.php?showtopic=111996)
  1768. * Fixed a C language restriction preventing compilation [ultramage]
  1769. 2007/01/26
  1770. * Removed all those useless read-from-GRF features noone would ever use,
  1771. also removed cutincard script command as a consequence [DracoRPG]
  1772. - this is only the beginning of full grfio disparition from map-server
  1773. * Now assassins can equip arrows, and status arrows trigger on any ranged
  1774. physical attack: mimics Grimtooth + status arrow "Aegis bug" [DracoRPG]
  1775. * Added some random Storage Password packets thingies [DracoRPG]
  1776. * Kaite and Assumptio no longer stack. One will remove the other in the
  1777. same way Assumptio and Kyrie do.
  1778. * Made homunculus renaming go through the char-server so it can be
  1779. validated against the allowed characters setting.
  1780. * Added battle config hom_rename so you can enable renaming multiple times
  1781. your homunc.
  1782. * Fixed the normalizing function not sending first classes back to novice
  1783. if they do not have basic skill maxed.
  1784. * Added a wrapper to delete_timer so it prints out from where the
  1785. invocation was done.
  1786. * Fixed Splash attacks consuming 2 ammo on each attack. [Skotlex]
  1787. * Added some more freedom for the txt log paths since 32 wasn't enough
  1788. * Removed log_uptime that was accidentally introduced in r1208 [ultramage]
  1789. 2007/01/24
  1790. * Cleaned up some more the Joint Beat implementation, so the status don't
  1791. take effect until the attack connects. [Skotlex]
  1792. 2007/01/23
  1793. * Fixed int/dex foods using an incorrect icon for their status [ultramage]
  1794. * Changed the night status from 149 to 160, which seems to work so much
  1795. better, and also enabled simplifying the night code.
  1796. * A skill's walk delay will also delay your can-attack time when the skill
  1797. connects, since this is the behaviour of Sonic Blows as described by
  1798. Tharis.
  1799. * Added view_data support to mercenary.*, so that the Homunculus entries
  1800. are no longer required on the mob_db.
  1801. * Added the status icon to NPC_CHANGEUNDEAD and the Flee/Hit foods.
  1802. * Corrected the check that lets you walk when vending/chatting/etc.
  1803. 2007/01/22
  1804. * Reverted the battle_calc_return_damage code as the previous one was
  1805. correct, ninja self-targetted skills CAN be reflected. [Skotlex]
  1806. 2007/01/21
  1807. * Fixed while statements not "reserving" the curly before parsing the test
  1808. expression. [FlavioJS]
  1809. 2007/01/20
  1810. * Fixed some joker's code trying to dereference a null pointer
  1811. * Fixed the server not reacting properly to atcommands/charcommands when using
  1812. langtype 10/11 (the |XY codepage indicator wasn't being trimmed) [ultramage]
  1813. * Updated @homshuffle so that the skill tree and current skill points are
  1814. not messed up.
  1815. 2007/01/19
  1816. * Fixed the label dup code, it now works correctly with const.txt switch
  1817. labels.
  1818. * Reverted the dup-label check code since it has a bug that needs to be
  1819. fixed first (it fails to recognize const.txt values) [Skotlex]
  1820. * Fixed a client crash during SQL char selection if you for some reason had
  1821. more than 9 characters in your account (thanks to Daegaladh) [ultramage]
  1822. - note that the TXT version already guards against this since long ago
  1823. * Merged Rayce's cleanups of the script engine that account for duplicate
  1824. labels, non-numeric labels and makes the engine case-insensitive towards
  1825. keywords like if/case/switch/etc/
  1826. * Added the icons for the Food boosts (need packet version 8 to get them,
  1827. as these icons will just display Gloria, or crash you, when used on older
  1828. clients).
  1829. 2007/01/18
  1830. * Modified the Storm Gust freeze counter code. It now takes into
  1831. consideration the ID of the skill before increasing the counter, which
  1832. should effectively yield the closest aproximation to official (even though
  1833. the counter will reset if you step out of a SG and into another one, we do
  1834. not know yet what should happen in such a case).
  1835. * Added @homshuffle. It recalculates the homunculus stats, as if the homunc
  1836. was sent back to level 1, and then releveled. This command is mean to help
  1837. fix those previously created Homunculus that are much stronger than they
  1838. should be.
  1839. * Fixed overflow on the mob delay adjustment setting.
  1840. * Fixed characters being unable to trade again if you attempt a trade on
  1841. someone who is on storage/npc when you accept the trade. [Skotlex]
  1842. * Fixed a crash when a castle from [0..MAX-1] wasn't in the db [ultramage]
  1843. 2007/01/17
  1844. * Corrected atcommand @homstats so it shows the correct minimum/maximum
  1845. possible values.
  1846. * Simplified the hom level up function, now decimal stats are no longer
  1847. stored. This should correct eA's homunculus on average being much stronger
  1848. than Aegis's.
  1849. * Cleaned up pc_allskillup, @allskills should work correctly now.
  1850. 2007/01/16
  1851. * Added atcommand @homstats so you can check your homunculus stats and
  1852. compare them to the minimum/maximum values that you could have at your
  1853. current level. This command is meant to help figure out if homuncs are
  1854. indeed getting a faster stat growth than they should have.
  1855. * Fixed the next invoked skill after AbraCadabra not having requirements
  1856. even when it is a different skill than the one chosen by AbraCadabra.
  1857. * Implemented Intravision as it should be. Thanks to HelloKitty2 for the
  1858. captured packets.
  1859. * Some cleaning on the mob_ai to enable mobs to run away from their current
  1860. target when they are rude-attacked by them.
  1861. 2007/01/15
  1862. * The NPC elemental attacks will display a skill animation again.
  1863. * Mob instant cast skills will use their adelay now.
  1864. * Spirit of Wizard won't work on Ganbantein
  1865. * The pc normalize job function will consider you as novice if you don't
  1866. have maxed out basic skill.
  1867. * Cleaned up pc_calc_skilltree and related functions so that the id is left
  1868. as 0 when you can't raise the skill even if you meet the prerequisites.
  1869. This is to prevent raising quest/soul/marriage skills through packets.
  1870. * Slaves should lock unto their master's target even if they are not
  1871. attacking yet (eg: in chase mode)
  1872. * Updated the Summon Slave skill to use the slave distance define as valid
  1873. distance to spawn from master.
  1874. * Fixed Joint Beat's speed penalty.
  1875. * Added a pc_authok check to prevent the case in which somehow another
  1876. character of the same account manages to log in as well.
  1877. * The pc normalize job function will now recognize you as a novice if you
  1878. don't have NV_BASIC maxed.
  1879. * Accessories will now by default go into the rigth-side rather than the
  1880. left-side of the equip window.
  1881. * Added a check in the mob_ai_subhard function to make mobs unlock targets
  1882. which have their invincible timer set.
  1883. * Probably fixed the registration flood protection code being broken.
  1884. * Joint Break should only re-start the bleeding timer when it currently IS
  1885. the one that causes bleeding. [Skotlex]
  1886. 2007/01/12
  1887. * Cleaned up the ip rules/DDoS section of the code. (the allow,deny and
  1888. deny,allow cases were switched)
  1889. * Fixed autotrading characters not being able to reconnect. Seams like I
  1890. misunderstood how id_db and pc_db are used. [FlavioJS]
  1891. 2007/01/11
  1892. * Fixed the script engine not parsing strings in multibyte charsets
  1893. correctly (should have been done in r9532).
  1894. * Console plugin working when built as Windows native. [FlavioJS]
  1895. 2007/01/10
  1896. * Combined most of the txt/sql mobdb reading code [ultramage]
  1897. - mob.c is now some 10kB less redundant (now using a common function)
  1898. - automatically filled in some missing parts of the txt part
  1899. (view_range_rate, chase_range_rate, line counting, etc)
  1900. - also cleaned it up significantly
  1901. 2007/01/09
  1902. * Changes to script buildin functions: [FlavioJS]
  1903. - functions checking if a player is attached as soon as possible.
  1904. - functions that required a player attached and would crash if none was
  1905. there terminate the script now. (others keep the current behaviour to
  1906. maintain full backward compatibility)
  1907. - removed the unused flag argument in guildskill.
  1908. - bonus,bonus2,bonus3,bonus4 use the same function now (remains the same
  1909. script-wise)
  1910. - added an optional parameter to setcart,setfalcon,setriding so it's
  1911. possible to remove the cart/falcon/mount or select a specific cart
  1912. - other cleanups
  1913. 2007/01/08
  1914. * Hotfix: Freeing of freed pointer when replacing script functions. [Lance]
  1915. * Unimportant cleanups
  1916. * Moved the plugin.def file to the plugins dir and added console.def
  1917. * Found the reason why the console didn't want to run on windows
  1918. (Microsoft uses !0 and unix uses 0 in pipe_create)
  1919. * Commented out a login_log call (sql doesn't implement that function!)
  1920. * Fixed an old debug message displaying %d instead of a number
  1921. * Silenced the plugin export messages during startup [ultramage]
  1922. * Added a precompiler error when the shutdown defines are not found.
  1923. * Added parse_console to the plugin API.
  1924. * Added plugin for parsing the console. (working with cygwin)
  1925. * Copied the parse_console code form login txt to login sql and char.
  1926. * Added propper plugin version compatibility tests.
  1927. * Better output when a plugin fails to load. [FlavioJS]
  1928. 2007/01/07
  1929. * Fixed the sleep timers not being removed when the an npc was being
  1930. unloaded and when reloading scripts. [FlavioJS]
  1931. * Updated the documentation to match the agitcheck() behavior
  1932. * Undid the memset->malloc_set replacement
  1933. (let's be compatible and leave such optimizations to system devs, ok?)
  1934. * Small reformatting of conf-tmpl
  1935. * Renamed atcommand_sub to is_atcommand_sub (charcommand too)
  1936. * Re-added the duplicit nj/gs name messages in msg_athena [ultramage]
  1937. (the code was using those and they look better in that position)
  1938. 2007/01/06
  1939. * Now winsock 2 is required.
  1940. * Cleaned up do_close and socket_init a bit.
  1941. * Fixed the weight icon dissapearing and reappearing when attacking.
  1942. (introduced by me at r9600, fix based on ultramage's code) [FlavioJS]
  1943. 2007/01/05
  1944. * Also discarded some veeery old utils code that has got equivalents
  1945. in the std libs (and therefore is silently causing a nasty collision).
  1946. * Major reconfiguration of the VS8 project files. [ultramage]
  1947. - Removed the migration binding to a VS71 template.
  1948. - Disabled the setting that defines char -> unsigned char (non-conformant).
  1949. - Switched all projects to use the common C runtime library DLL
  1950. instead of linking the static version to each exe.
  1951. - Enabled edit&continue on the TXT version (SQL already had it).
  1952. - Reconfigured the linker to use only the really required dependencies.
  1953. - Enabled full optimization and whole program optimization,
  1954. with additional speed-improving settings for the release build.
  1955. - Set the compiler/linker to produce detailed debug information even for release builds
  1956. (no performance penalty because the debug info is stored in a separate .pdb file!).
  1957. - I tested all 4 build combinations and it works for me, and it should work for you.
  1958. - There is still one very useful thing missing - setting the working dir to '..'.
  1959. I don't know how to do that, tho' since VS stores it in a separate user file.
  1960. 2007/01/04
  1961. * Fixed old @go bug (it ignored einbech) [Lupus]
  1962. * Added Au{R}oN's updated version of the effect list.
  1963. * Completed adding of the new cities to @go.
  1964. > that function is ugly and needs a complete rewrite, asap.
  1965. * Updated thor volcano warps.
  1966. * Updated /doc from jAthena. [ultramage]
  1967. 2007/01/03
  1968. * Added Rachel and Veins to the list of @go destinations.
  1969. * Added a first approximation of warps for the new maps (by $ephiroth).
  1970. * Now the server will by default perform symmetric adding of friends. [ultramage]
  1971. > TODO - symmetric deletion (http://www.eathena.ws/board/index.php?showtopic=130749)
  1972. * Fixed TURBO FIFO defines.
  1973. * Moved refusal of a known packet versions to clif_parse_WantToConnection
  1974. and made it check for non-player object with that id.
  1975. * JK_JOINTBEAT as described in:
  1976. http://www.ragnainfo.net/wiki/index.php/Vital_Strike
  1977. Although not clear, it's being assumed that the 2x damage is only for the
  1978. break neck ailment. [FlavioJS]
  1979. * Modified the useless error message in atcommand_effect.
  1980. * Silenced the debug message in socket.c that's been freaking people out.
  1981. * Added support for text/comments at the end of monster spawn lines (<tab> required)
  1982. * Added the official behavior of monsters regaining full hp when they morph.
  1983. > info at http://www.eathena.ws/board/index.php?showtopic=130103
  1984. * Fixed pc_calc_skilltree ignoring prerequisites / joblvl requirements for soullinked skills.
  1985. > TODOs at http://www.eathena.ws/board/index.php?showtopic=130788
  1986. * Re-applied change r9593 that got accidentally reverted by r9595. [ultramage]
  1987. 2007/01/02
  1988. * Fixed SC_JOINTBEAT not doing crit damage for the Neck Break ailment.
  1989. * Gospel sends the buff message to the affected player. [FlavioJS]
  1990. 2006/12/31
  1991. * Made HSCR bypass both Guard and Shield Reflect using the dirty way [DracoRPG]
  1992. > cleaner way would need to rethink the whole skill's implementation
  1993. * Added more info when npc_scriptcont tries to continue a different script.
  1994. * Refer to http://www.eathena.ws/board/index.php?showtopic=130285
  1995. - Renamed pc_checkweighticon to pc_updateweightstatus and cleaned it.
  1996. - Updated pc_is50overweight to use battle_config.natural_heal_weight_rate.
  1997. - Added 90% weight check when attacking.
  1998. * Updated getitem and guardian entries in script_commands.txt.
  1999. * Fixed getitem trying to get <character ID> from the wrong argument.
  2000. * Now getitem can be run on scripts without a player attached if
  2001. <character ID> is specified.
  2002. * Now the two last arguments of guardian are optional and independant of
  2003. each other ("<event label>" and <guardian index>). This way the previous
  2004. implementation and script_commands definition are still valid code.
  2005. * Now buildin function names and argument definitions are checked for
  2006. validity before adding the function to the script engine.
  2007. Argument definitions follow the pattern: (v|s|i|l)*\?*\*? [FlavioJS]
  2008. 2006/12/30
  2009. * Reverted the packet structure changes to mmo_char_send006b in r9588 (was
  2010. using the wrong exe for the final tests) except for the bug that I was
  2011. originally fixing. [FlavioJS]
  2012. 2006/12/29
  2013. * Skill use is now cancelled when you use it while cloaking, and the
  2014. uncloaking process warps you. [Skotlex]
  2015. 2006/12/28
  2016. * Reapplied Skotlex's socket.c changes from r9587 and r9582. :S
  2017. * Part 3 of TheUltraMage's socket cleanup.
  2018. * Fixed the packet structure in mmo_char_send006b for PACKETVER 8.
  2019. * Removed search_str from add_str (add_str already searches for the
  2020. string).
  2021. * Native script words like do,while,for,... are case insensitive now.
  2022. * Changed SCRIPT_HASH_SIZE to 1021 (prime hash sizes give better
  2023. distributions).
  2024. * Added alternative hash implementations to the script engine (to try out
  2025. later). [FlavioJS]
  2026. * Added a func_parse invocation when an invalid socket is found, so that
  2027. the underlying code (char/map/login) can handle it and free any related
  2028. resources.
  2029. * Added some skill effect packets so it displays a generic effect for
  2030. unknown targetted skills.
  2031. * Some cleaning in do_sendrecv, added error messages when handling an
  2032. incorrect socket. [Skotlex]
  2033. 2006/12/27
  2034. * Fixed Super Novice 99%+ invincibility triggering when
  2035. the character dies in a GvG area. [blackhole89]
  2036. * Updated SQL Files [Toms]
  2037. * Fixed a bug which makes the group heal bonus be applied as many times as
  2038. the item is in that group.
  2039. * Applied Rayce's suggestion to improve the script hash size usage. eA now
  2040. uses a hash of 1024.
  2041. * Full Buster's auto-blind chance is now reducable by stats/items.
  2042. 2006/12/26
  2043. * Updated Charge Attack's damage equation as per the only source I've seen
  2044. of it so far.
  2045. * Now Guardians/Emperium can't hit /be hit if their current map isn't a
  2046. gvg_castle or woe is off. This enables "localized" WoE by removing/setting
  2047. the mapflag gvg_castle on the castles where you want WoE to take effect
  2048. (note that even though normal players can't be hit on non gvg_castle maps,
  2049. normal mobs can still be killed in such maps, you'd still need to modify
  2050. the WoE scripts to use this kind of feature)
  2051. * TK_MISSION will now pick any mob from the DB as long as it is not a boss
  2052. type and it gives base exp.
  2053. * Fixed the double-stone issue when hitting a petrified character.
  2054. [Skotlex]
  2055. 2006/12/25
  2056. * Fixed buildin_getscrate, thanks Trancid.
  2057. * Applied part 1 of TheUltraMage's socket cleanup.
  2058. "Basically what I did was perform simple one-liner substitutions for
  2059. ugly repetitive blocks of code. The most apparent are the send/recv
  2060. code and the other basic socket calls."
  2061. * flush_fifo is non-blocking now. I guess best effort is good enough...
  2062. * Copied header files from vcproj-7.1 files to vcproj-8 files.
  2063. * Applied the rest of Rayce's suggestions and fixes
  2064. (http://www.eathena.ws/board/index.php?showtopic=129185)
  2065. * warn_cmd_no_comma, warn_func_no_comma, warn_cmd_mismatch_paramnum are
  2066. now warn_func_mismatch_paramnum and it only prevents showing the error,
  2067. as it was probably intended in the first place. (correct me if i'm wrong)
  2068. * Merged the parsing of function calls in the script engine, removing the
  2069. parse_cmd hackery, and made "heal (.@val+rand(0xff))&0xff,0;" valid
  2070. again. [FlavioJS]
  2071. 2006/12/24
  2072. * Small fix for changeset 9539 (support for PACKETVER above 7) [KarLaeda]
  2073. 2006/12/23
  2074. * Fallback for parenthesis argument lists in the script engine.
  2075. "func (exp) , ..." is valid again.
  2076. * Moved "#include <limits.h>" to cbasetypes.h to ensure it's included
  2077. before checking if UINT_MAX has been defined.
  2078. * Minor changes in pc_readdb related to max_level being unsigned.
  2079. [FlavioJS]
  2080. 2006/12/22
  2081. * Simplified function agitcheck so it isn't crash prone. Now it takes no
  2082. arguments, and will return whether WoE is on or not.
  2083. * Now when you specify a max level beyond what the exp table has, the last
  2084. entry of the exp table will be duplicated to fill in the remaining levels.
  2085. [Skotlex]
  2086. * Change strncpy to memcpy when parsing switches in the script engine
  2087. since it's guaranteed to be a word of that size (skip_word).
  2088. * Made scriptlabel_db duplicate the key. When str_buf is reallocated, the
  2089. keys in scriptlabel_db could become invalid, causing a crash in
  2090. npc_convertlabel_db.
  2091. * Now npc_convertlabel_db clears scriptlabel_db after using it.
  2092. * parse_script has an extra parameter options. At the moment it only
  2093. indicates if scriptlabel_db should be used or not.
  2094. * Fixed "UINT_MAX undeclared" on systems that don't declare it in limits.h
  2095. [FlavioJS]
  2096. 2006/12/21
  2097. * Applied Rayce's suggestions and fixes to the script engine
  2098. (http://www.eathena.ws/board/index.php?showtopic=129185)
  2099. * Some cleaning to the character deletion code.
  2100. * Changed a certain snprintf to strncpy, which should fix the problems with
  2101. parsing switches in the script engine.
  2102. * Added back cropping the attack delay to attack motion for those weird mobs
  2103. that have a aDelay less than their aMotion time. [Skotlex]
  2104. * Added a 1-node cache to db. Removed party_cache and guild_cache since
  2105. now the database has a cache.
  2106. * Fixed "warning: comparison is always false due to limited range of data type"
  2107. by restricting script words to ASCII characters only.
  2108. * Moved md5calc to common. [FlavioJS]
  2109. 2006/12/20
  2110. * Fixed ISSPACE and ISALPHA casting their returned value to a char, which
  2111. can really mess up the scripting engine when the returned value is true,
  2112. yet casted to false.
  2113. * Moved the strip unequip code to before deleting the timer, this fixes
  2114. trying to "re-strip" someone causing the skill to fail and on top of that
  2115. terminate their current strip effect.
  2116. * Reading of TK Mission variables will now happen if you are a TK-class
  2117. character regardless of whether you know TK_MISSION or not. Should fix
  2118. being able to reset skills to reset your Mission data.
  2119. * Added an ugly work around to the issue of skills with additional effect
  2120. causing opt1 status when they have just terminated them (in short, you
  2121. shouldn't be able to hit someone with, say, sleep, and then have the same
  2122. skill cause them stun, since both are opt1 values). [Skotlex]
  2123. * Now root script functions calls can have parenthesis (will take any
  2124. parenthesis after the function as the start of the argument list).
  2125. - This means "func (exp),exp;" isn't valid anymore.
  2126. * Replaced our fix for "mes ();" crashing by jA's version.
  2127. * Merged the fix for & having the same precedence as << and >> from jA.
  2128. * Merged the C_OP3 operator from jA: test ? if_true : if_false
  2129. * Changed the script source from unsigned char* to const char*.
  2130. * Updated plugins Makefile. [FlavioJS]
  2131. 2006/12/19
  2132. * Reverted the mob ThinkTime update, that field is again aDelay as it
  2133. apparently should be. [Skotlex]
  2134. * Cleanups or minor changes.
  2135. * Now addtick_timer invokes settick_timer, so keep an eye for whatever
  2136. timer issues it's supposed to have.
  2137. * Removed the flush_fifo from clif_parse_TickSend until the socket
  2138. problems are fixed. [FlavioJS]
  2139. 2006/12/18
  2140. * Updated POS2 macros. The 6th byte is subx0 and suby0. [FlavioJS]
  2141. * Added hom_setting to specify which homunculus 'quirks' are in effect. The
  2142. default activates all of them, if you set them to 0 then homuncs will not
  2143. be treated in any special matter, pretty much like standard mobs. if I
  2144. missed any 'quirky' homunc behaviour from it, report it so it can be added
  2145. to the list.
  2146. * Made flooritem_lifetime a int so you can specify much longer life times
  2147. (the default of 60k was already very close to the max of 65k)
  2148. * Removed monster_ai 0x80 since it's now handled by hom_setting.
  2149. * When walking into a Guild Dungeon your pvp_points will be set to 5 so you
  2150. have to die twice before being warped out.
  2151. * If jobchanging while disguised, the disguise will be removed, since it
  2152. can't be kept and still calculate correctly the new job class to use.
  2153. * Fuuma shurikens are now unbreakable code-wise (like all maces, books,
  2154. etc)
  2155. * Applied Meruru's patch to increase speed of easy path seeks. [Skotlex]
  2156. * Cosmetic changes to db.
  2157. * Fixed the unused MAPINDEX_AUTOADD section in mapindex.c (mapindex.h
  2158. wasn't being included) [FlavioJS]
  2159. 2006/12/16
  2160. * Moved packet_len_table values to packet_db[SERVER].
  2161. * When an invalid packet_ver is found, all it's entries are discarted
  2162. intead of just stopping the parsing.
  2163. * Increased MAX_PACKET_DB to 0x300 and added a warning for when packet ids
  2164. greater than MAX_PACKET_DB are found. [FlavioJS]
  2165. 2006/12/15
  2166. * There will be now warnings printed when a shop sells an item which's buy
  2167. price is 20z, since those usually are "rare" items with no buyying price
  2168. set. Note that this reports one fake, and that is the selling of a certain
  2169. shuriken that indeed costs 20z.
  2170. * Most likely fixed client crash when xmas/wedding status runs out.
  2171. 2006/12/14
  2172. * Removed "mobs being enemies of each other all the time" because, even
  2173. though mobs can hit each other as they should, they will refuse to use
  2174. support skills on enemies, which breaks several of their skills. Mobs can't
  2175. both help and attack someone tagged as enemy!
  2176. (I guess eA is just too smart to emulate Aegis's sloppy coding)
  2177. * Cleaned up the strip code (GS_DISARM, rogue skills).
  2178. * Cleaned some the MD_DETECTOR code.
  2179. 2006/12/13
  2180. * Additional damage bonuses (True Sight, EDP, Assassin Link, Crusader Link,
  2181. Card skill damage bonuses) are now applied independently of each other,
  2182. which lets them stack. [Skotlex]
  2183. * Modified flush_fifo so the code do what is written in the comment [Toms]
  2184. * Modified flush_fifo so you can decide whether to block the current thread
  2185. or not until the data is sent. The server-tick reply no longer blocks the
  2186. current thread.
  2187. * Fixed mobs being unable to attack anything...
  2188. 2006/12/12
  2189. * Reverted the knockback update since it isn't working right with all
  2190. skills.
  2191. * Mobs now by default are "everyone's" enemy, so mobs are able to hit each another.
  2192. * Moved "unsetting" the angry mode from the mob_ai to the mob_damage
  2193. function, where it'll work regardless of who hits the mob.
  2194. * Modifed a bit the clif_change_look function, it should fix crashes with
  2195. the Xmas sprite when changing maps.
  2196. * Fixed skills displaying a 32k damage when used while disguised. [Skotlex]
  2197. * Minor changes to ers.
  2198. * Removed unused/hardly used cbasetypes typedefs.
  2199. * Updated txt-converter's makefile to include utils.o [FlavioJS]
  2200. * Updated npc_event_dequeue to free up your current npc information, and
  2201. not just the npc_id.
  2202. * Modified the skill damage packet and the knockback packets to mimic aegis
  2203. sent packets for such skills.
  2204. * Removed CART_MASK as OPTION_CART can take care of that.
  2205. * Moved the OPTION_MASK define to status.h
  2206. * Reverted the knockback implementation to use clif_slide instead of
  2207. clif_fixpos [Skotlex]
  2208. 2006/12/11
  2209. * Added various missing checks when parsing several guild actions.
  2210. * made @hominfo display the six basic stats.
  2211. * Simplified the MD_DETECTOR checks, since now all insects/demons have it
  2212. set, and it's no longer needed to check for the race. [Skotlex]
  2213. * Updated sql files [Playtester]
  2214. * Spirit of Sin and Enchant Deadly Poison now stack.
  2215. * Fixed skill damage card bonuses not working on magic skills.
  2216. * Moved the setting of sd->npc_id = 0 in npc_dequeue to the beginning,
  2217. since this function is called when a script is cancelled
  2218. * Made homunc's speed be recalculated when you respawn it from rest state.
  2219. [Skotlex]
  2220. * Fixed @revive not reviving the good char [Toms]
  2221. 2006/12/10
  2222. * Added more helpful messages when packet_ver=-1.
  2223. * Joined normal and MINICORE's main function.
  2224. * Put malloc_init() first and malloc_final() last as it's needed for Show*
  2225. in display_title(). [FlavioJS]
  2226. 2006/12/09
  2227. * Reversed revision #9415 (messages with server_tick field being sent as
  2228. soon as possible) since it didn't fix the client synchronization issue.
  2229. * clif_parse_TickSend is sent immediately so the client gets accurate
  2230. "pings". [FlavioJS]
  2231. 2006/12/08
  2232. * Now you can request a trade regardless of the state of the target trader.
  2233. [Skotlex]
  2234. * The trade will now fail when you accept it and either character is
  2235. speaking with an npc, vending or has the storage open. [Skotlex]
  2236. * Fixed crash when looters became full. [Skotlex]
  2237. * Autospell delay time is now the skill's full delay. [Skotlex]
  2238. 2006/12/07
  2239. * Fixed ladmin's linux compilation and moved some platform specific
  2240. defines to cbasetypes.h [FlavioJS]
  2241. * Cleaned up implementation of NPC_EMOTION/NPC_EMOTION_ON. Now val0 is the
  2242. emotion, val1 sets the mode, val2 adds to the mode, val3 removes from the
  2243. mode. val4 asks to remove the previous mode change, otherwise it will stack
  2244. with the changes from the previous skill call. [Skotlex]
  2245. * Updated the mob skill reading code so it accepts hexadecimals in the
  2246. 'val' fields. Also, it will optimize the NPC values so that when you set a
  2247. mob's mode to their db mode, it will just remove the previous mode.
  2248. [Skotlex]
  2249. * NPC_EMOTION_ON will now automatically move it's new mode to val2 since it
  2250. should add a mode, and if this mode doesn't has the aggressive bit, it will
  2251. remove it. See this "ancient" hypothesis on how NPC_EMOTION_ON should work
  2252. for the details: [Skotlex]
  2253. http://www.eathena.ws/board/index.php?showtopic=63606
  2254. * Fixed npc commands atcommand & charcommand not working with a custom
  2255. command_symbol [Toms]
  2256. 2006/12/06
  2257. * Changed the order of view-change packets for SC xmas/wedding, should fix
  2258. crashing if you change into xmas suit while in fighting stance. [Skotlex]
  2259. * Renamed the mob mode Cast-Sensor Melee to Cast-Sensor idle since these
  2260. mobs really should only be cast-sensing when they are not after another
  2261. target. [Skotlex]
  2262. * Added a Aegis Mob Type -> eA Mode table conversion to the mob modes doc.
  2263. [Skotlex]
  2264. * Updated sql-files [Playtester]
  2265. * Gave a minimum think time to the dummy mob and to clones. [Skotlex]
  2266. * Moved setting a mob's chase/attack states from the mob_ai to unit_attack
  2267. and unit_walktobl for better state-handling precision. [Skotlex]
  2268. * Cleaned the change-target/cast-sensor code to account for the new mob
  2269. modes. [Skotlex]
  2270. * Updated the doc explaining mob modes. [Skotlex]
  2271. * When GM skill unconditional is set, the arrow state of the skill will be
  2272. calculated, this fixes all skills getting stuck on arrow-type after you
  2273. attack normally. [Skotlex]
  2274. * Alchemist famous potions get their 50% bonus on top of the natural
  2275. bonuses as a 1.5x type of bonus. In other words, now alchemist potions
  2276. will really heal 50% more than when you use the non-famous potion
  2277. version.
  2278. [Skotlex]
  2279. * Messages with server_tick field are sent as soon as possible now.
  2280. This might fix client synchronization issues.
  2281. * Added StringBuf_Vprintf to utils.c and changed the showmsg.c buffer.
  2282. Now it uses a static buffer and a StringBuf when needed (a debug message
  2283. indicating the static buffer needs to be increased is shown). [FlavioJS]
  2284. 2006/12/05
  2285. * The can log value now is "reset" when you die allowing you to
  2286. respawn/quit instantly after death. [Skotlex]
  2287. * Fixed sc data load failing when using charsave_method: 1 [Skotlex]
  2288. * Fixed the interserver link reserve size being 8 times instead of 1/8th
  2289. the default size. Changed it to be 1/4th as well. [Skotlex]
  2290. * Found the position of emblem_id in packet 1b6.
  2291. * Moved START_ACCOUNT_NUM and END_ACCOUNT_NUM from login.h to mmo.h and
  2292. changed clif_guess_PacketVer to use that.
  2293. * Made the script engine big-endian compatible.
  2294. * Commented out the remnants of ladmin packet parsing in map-server.
  2295. * Added a warning when a player has an invalid packet version (shouldn't
  2296. happen). [FlavioJS]
  2297. 2006/12/04
  2298. * Fixed HVAN_INSTRUCT int bonuses. [Skotlex]
  2299. * Renamed mob_db's "adelay" column to ThinkTime and made the mob.c code use
  2300. it instead of MIN_MOBTHINKTIME. The adelay of mobs will also be equal to
  2301. their thinktime unless their thinktime is less than their attack motion.
  2302. [Skotlex]
  2303. * Added a static +100 Hp to ninjas and gunslingers since it's required for
  2304. the best approximated hp growth algorythm. [Skotlex]
  2305. * Knockback will again use the fixpos packet instead of the slide packet
  2306. (slide was introduced with high jump) since Aegis captures say that packet
  2307. is still used for knockbacks. [Skotlex]
  2308. * Repairing items via scripts no longer displays "item has been repaired"
  2309. [Skotlex]
  2310. * Status Recovery again makes mobs unlock their current target. [Skotlex]
  2311. * Moved requesting party/guilds from the char-server from pc_authok to
  2312. pc_reg_received, since map_nick2sd and map_getallsd won't work until the
  2313. characters are authentified. Also removed the guild master setting from
  2314. clif_parse_LoadEndAck to pc_reg_received since guild master setting will
  2315. work there. [Skotlex]
  2316. * Fixed homun hunger timer being started on login even when hom is
  2317. vaporized/dead. [Skotlex]
  2318. * Fixed mvp exp attacker bonus applying incorrectly. [Skotlex]
  2319. * Removed duplicate msg_athena.conf entries 619 and 620 for
  2320. Ninja/Gunslinger.[Skotlex]
  2321. * Fixed the txt->sql converter not escaping character names before saving
  2322. them. [Skotlex]
  2323. * Fixed a pet's level not resetting to their db level when you enable pet
  2324. leveling and later on decide to turn it off. [Skotlex]
  2325. * Fixed restricted equipment not updating your view info after they are
  2326. unequipped. [Skotlex]
  2327. * Removed a bunch of extra text/checks when ignoring characters (/ex) when
  2328. Aegis does none of these checks. /inall now wipes your ignore list (it does
  2329. this on Aegis, too). [Skotlex]
  2330. 2006/12/03
  2331. * If somehow a player logs out and it's saved with 0 hp, on login his state
  2332. will be set to dead as well so he can respawn (otherwise that leads to a
  2333. stuck char) [Skotlex]
  2334. * Fixed even share exp flutuating as described in:
  2335. http://www.eathena.ws/board/index.php?showtopic=126139
  2336. thanks to TheUltraMague for the fix.
  2337. * Made ers double frees report as missing entries on destruction.
  2338. * Only one swap function (in cbasetypes.h) is used. [FlavioJS]
  2339. 2006/12/02
  2340. * Added buildin_checkvending and buildin_checkchatting. [Lance]
  2341. * Enabled atcommand parsing for clients with Korean langtype and version. [Lance]
  2342. * Added missing min/max definitions to cbasetypes.h, needed for the @send change.
  2343. * Replaced @send with the version I use for testing packets.
  2344. Can display the packet length. Supports dynamic packets, quoted strings
  2345. with escaped characters and fixed/variable length, and normal/hex
  2346. byte/word/long data types. The number of fields is not limited, but it
  2347. automatically stops parsing when the packet is full. [FlavioJS]
  2348. 2006/12/01
  2349. * Fixed passive mobs becoming increasingly unlikely to retaliate to attacks
  2350. after they got inflicted by a disabling status change. [Skotlex]
  2351. * Changed the "is_boss" define to check for mode MD_BOSS instead of giving
  2352. mvp exp. [Skotlex]
  2353. * Updated sql files [Playtester]
  2354. * Fixed txt-converter compilation. [Skotlex]
  2355. * STRECOVERYno longer makes a mob unlock it's target like Cure does.
  2356. [Skotlex]
  2357. * Fixed GS_GROUNDDRIFT consuming ammo when it's time expires (so it was
  2358. consuming 2 grenades instead of one). Also added a "explosion effect" when
  2359. their time runs out. [Skotlex]
  2360. * gvg_dungeon mapflag won't set pvp related mapflags anymore, pc_dead will
  2361. force pvp ranking gain/loss on gvg_dungeon maps now. [Skotlex]
  2362. * Now when coming out of hiding land-effects will trigger on the character.
  2363. [Skotlex]
  2364. * Fixed land effects not taking effect inmediately on map-load when the
  2365. invincible timer is disabled. [Skotlex]
  2366. 2006/11/29
  2367. * Probably fixed the Segmentation Faults we've been having.
  2368. Description: A player quits and it's session is freed and set to NULL,
  2369. but the char server already sent a packet with player information
  2370. (registers, storage, ...). If a message is sent in consequence of
  2371. updating that info, a segmentation fault happens because
  2372. session[sd->fd] is already NULL.
  2373. Fix: make shure the session of the target player is valid before
  2374. processing the rest of the char server's message.
  2375. * Some minor cleanups. [FlavioJS]
  2376. * Fixed the new npc parsing code not accounting for windows-style line
  2377. terminators, which as a side effect messed up mapflag parsing if the file
  2378. had windows-style terminators, which coincidentally was the case for the
  2379. nopvp file, which unfortunately meant that all towns became pvp! [Skotlex]
  2380. * HT_PHANTASMIC no longer knocks back even when it misses. [Skotlex]
  2381. * Earned exp by dead homuns will now be lost (same treatment as earned exp
  2382. from players that died) [Skotlex]
  2383. * Now gvg_dungeon mapflag will activate the other mapflags which are
  2384. required: pvp, pvp_nocalcrank and pvp_noparty/pvp_noguild (they are forced
  2385. to off if gvg_dungeon is on and viceversa) [Skotlex]
  2386. * Cleaned the pvp ranking code so that it takes effect even if
  2387. pvp_nocalcrank is active WHEN the map is a gvg_dungeon one. [Skotlex]
  2388. * Now homuncs and their masters are the only ones who can use support
  2389. skills on them. [Skotlex]
  2390. * Some cleaning on the homunc speed calculating code, so that it correctly
  2391. uses the default walk speed if the player has no speed yet. [Skotlex]
  2392. 2006/11/28
  2393. * Fixed a typo which made the wedding_ignore_palette setting not work when
  2394. you log on with them equipped [Skotlex]
  2395. * Applied The Ultra Mage's patch to use strict npc header formatting
  2396. parsing. Updated the relevant stock scripts/mapflags that didn't conform to
  2397. the standard. [Skotlex]
  2398. * Moved the blocking of casting supportive skills on homunculus from
  2399. battle_check_target to status_check_skilluse as bct is not invoked unless
  2400. the skill is offensive (or party/guild only) [Skotlex]
  2401. * Cleaned up status_calc_bl_sub_hom, fixed recasting dex/str/vit/int
  2402. bonuses skills making their atk/def/mdef stack with itself over and over.
  2403. [Skotlex]
  2404. * Updated sql files [Playtester]
  2405. * Changing setting the Guild Master from pc_authok to clif_parse_LoadEndAck
  2406. so that it will not fail to set the gmaster flag when the first person of a
  2407. guild to log on is the guild master. [Skotlex]
  2408. * Modified the way Storm Gust freeze's counter works. Now it checks for the
  2409. caster of the Storm Gust, if it's the same as the previous hit, the counter
  2410. is increased, otherwise, the ID is updated and the counter is changed to 1.
  2411. [Skotlex]
  2412. * Fixed always receiving at least 1 bexp/jexp even when the mob gives no
  2413. exp at all. [Skotlex]
  2414. * Changed write to send as suggested by TheUltraMage in:
  2415. http://www.eathena.ws/board/index.php?showtopic=105417
  2416. Hopefully that will take care of the SIGPIPE problem in Debian and cygwin.
  2417. * Server name in core.c skipping '\\' characters.
  2418. * Memory allocation functions using file,line,func from the invoking functions.
  2419. * Other minor malloc changes. [FlavioJS]
  2420. 2006/11/27
  2421. * Now when a player's "attack once" request fails due to range, the client
  2422. is told to move to the target to attack it. This sort of fixes the problem
  2423. of the client SPAMMING the server with attack requests from afar without
  2424. even approaching the icewall. [Skotlex]
  2425. * Updated the status change field "option" to an int rather than short.
  2426. This fixes the option values for xmas/sightblaster not getting set, which
  2427. could explain why some people crash when equipping weapons while in xmas
  2428. suit. [Skotlex]
  2429. * Fixed the Homunculus hungry timer not starting on login. [Skotlex]
  2430. * Added logging for standard GM commands (/mm /b /kick etc) [KarLaeda]
  2431. * Some cleanups on the trade_additem function. When specifying a qty of 0,
  2432. an ack will be returned to the client so it doesn't gets stuck. [Skotlex]
  2433. * Update sql files [Toms]
  2434. * Corrected the skill animation for Absorb Spirits [Skotlex]
  2435. * Cleaned up a bit the implementation of how Gravity Field blocks the
  2436. caster from moving. [Skotlex]
  2437. * Mob class-changing will fail if the new class is the same as the previous
  2438. one. [Skotlex]
  2439. 2006/11/24
  2440. * Homunc's min matk is now always equal to max matk [Skotlex]
  2441. * Fixed EDP's damage being 100% more than it should (should be 4x, not 5x
  2442. on normal attacks) [Skotlex]
  2443. * Self Destruction will only hit everyone and not just enemies when used by
  2444. mobs (non marine spheres) unless the map is a versus map. [Skotlex]
  2445. * Spider Web's duration is now halved on players (before it was halved in
  2446. pvp maps only) [Skotlex]
  2447. * Likely fixed Homunculus not disappearing the second their intimacy hit 0.
  2448. [Skotlex]
  2449. * Fixed uninitialized variable fd being used in WFIFOHEAD in a few clif
  2450. functions. [Skotlex]
  2451. * Fixed the fact that the TURBO code breaks when you attempt to handle more
  2452. than one connection at a time within the same function. However this broke
  2453. map-server compilation, therefore, don't use TURBO yet! [Skotlex]
  2454. * While at it, cleaned a few packet implementations in the char/login
  2455. servers which were not only ugly, but had some really stupid flaws within.
  2456. [Skotlex]
  2457. 2006/11/23
  2458. * Completed Reddozen's hanging mapwarp code to support party and old syntax. [Lance]
  2459. * Updated sql files [Playtester]
  2460. * Made WFIFOHEAD() check for available buffer size remaining on the
  2461. connection, and when there's not enough space, it will increase it.
  2462. [Skotlex]
  2463. * Added define TURBO to the Makefile. It enables MouseJstr's socket access
  2464. optimization which should speed up the code when accessing the write/read
  2465. buffers repeatedly within a function. [Skotlex]
  2466. * Fixed the functions where the RFIFOHEAD/WFIFOHEAD functions were used
  2467. incorrectly (prevents TURBO enabled compilations from finishing) [Skotlex]
  2468. 2006/11/22
  2469. * Modified slaves_inherit_speed and slaves_inherit_mode so you get better
  2470. control of when to copy/remove modes/speed. See the conf changelog for
  2471. details. [Skotlex]
  2472. * Reenabled usage of mode MD_CHANGETARGET, so mobs with mode 0x200 will be
  2473. able to switch targets while attacking. [Skotlex]
  2474. * Some cleanups around usage of session[] in the map server, hoping that it
  2475. may fix some not very likely crashes. [Skotlex]
  2476. * Rewrote a few messy @ commands. [Skotlex]
  2477. * Fixed the homunc hungry timer being started when the homun data is
  2478. received from the char-server and the homunc is NOT 'active'. [Skotlex]
  2479. 2006/11/21
  2480. * Fixed the Auto-Berserk giving you back defense when it triggers during
  2481. berserk's HP penalty. [Skotlex]
  2482. * Some small changes in the pet ai to make it more responsive. [Skotlex]
  2483. * Rewrote the pet looting behaviour (taken from the mob's), pets are much
  2484. more smarter now when looting from multiple possible items. [Skotlex]
  2485. * Fixed pets/homunc trying to be deleted twice when they had 0 intimacy and
  2486. their master logs out. [Skotlex]
  2487. * Added support for specifying ammo type = 99 in the skill_require_db file,
  2488. it can be used to specify that any kind of ammo can be used with the skill,
  2489. but you NEED to have ammo equipped. [Skotlex]
  2490. * Corrected GS_DISARM, it is now a normal attack, which, when it connects,
  2491. has a chance to do strip weapon at a 3*lv% rate (modified by dex) [Skotlex]
  2492. * Fixed GS_PIERCINGSHOT, it should ignore defense [Skotlex]
  2493. * Corrected Gatling Fever costing SP when trying to turn it off. Also,
  2494. speed increases bonuses won't take effect while it's active. [Skotlex]
  2495. * Updated the main makefile with a new OPT line. It is commented by default
  2496. since it only works with GCC 4.X, when unset, it will hide away a huge
  2497. amount of warnings that have to do with stuff that is not gonna be
  2498. corrected in eA anyway. [Skotlex]
  2499. * Corrected TripleAction's damage. It should do 150%*3 instead of 100*3%
  2500. damage. [Skotlex]
  2501. * Updated GS_CRACKER's stun chance using Doddler's info as reference.
  2502. [Skotlex]
  2503. * GS_FLING won't reduce armor defense when used on players. [Skotlex]
  2504. * Moved ignoreAll to state.ignoreAll so it saves some space. [Skotlex]
  2505. * Cleaned up clif_parse_Wis to prevent crashes from forged packets
  2506. [Skotlex]
  2507. * Cleaned up the implementation of the ignore list so it's more efficient.
  2508. [Skotlex]
  2509. 2006/11/20
  2510. * Implemented NPC_DEFENDER. Reduces ranged Physical+Misc damage by 80%
  2511. [Skotlex]
  2512. * Improved the battle config reader so it accepts hexadecimal values.
  2513. Updated the monster_ai description to make use of this [Skotlex]
  2514. * Added monster_ai&0x200. When set, mob skill delays are shared. That is,
  2515. if the mob has several lines with the same skill, when the skill is used,
  2516. the delay will be set to all of them, not just the one entry used.
  2517. [Skotlex]
  2518. * Corrected NPC_BARRIER so it grants 100 def/mdef (and not just mdef)
  2519. [Skotlex]
  2520. * Weapon ATK bonuses will now only apply to watk and NOT watk2 on players
  2521. (on players watk2 is refine bonus) [Skotlex]
  2522. * Corrected NPC_KEEPING. it should give 90 def, not 100 [Skotlex]
  2523. * You now can't use other skills while a skill-induced "window" is up
  2524. (teleport, refining, etc). However, be warned that we aren't quite sure how
  2525. the server will clear this out if you decide to hit cancel on the window,
  2526. so skill-blockage is likely to happen (temporary solution: whenever you
  2527. change maps or warp the state is reset server-side). [Skotlex]
  2528. * Fixed itemskill variable being cleared before parsing the skill, this
  2529. causes auto-casted teleport to fail to skip the skill menu. It is now
  2530. cleared on castend_pos/id directly. [Skotlex]
  2531. * Skills with state 'move_enable' will now do a "walk path" check between
  2532. target cell/object and caster instead of a "shoot path" check, this would
  2533. fix skills like snap or charge from letting you "teleport" across pits.
  2534. [Skotlex]
  2535. * Raised the amount of skills that can stack on a single cell before the
  2536. "in-area/out-area" detection code breaks to 24 (from 8) [Skotlex]
  2537. * Fixed a crash in clif_SkillInfoBlock if the passed player already
  2538. disconnected. [Skotlex]
  2539. * Added limiting drop rate to 100% from item-bonuses that depend on the
  2540. mob's level so that "@autoloot 100" will catch them. [Skotlex]
  2541. 2006/11/19
  2542. * Removed security check since source level patch is applied.
  2543. * Reverted select(), created prompt().
  2544. * Hack protection from packet monkeys in clif_parse_NpcSelectMenu. [Lance]
  2545. * Added 'cancel' button parsing in buildin_select menu system. Now scripts will continue
  2546. to load if 'cancel' is pressed and 255 will be returned. [Lance]
  2547. 2006/11/17
  2548. * Corrected use of the party invitation reply packet, thanks to FlavioJS.
  2549. [Skotlex]
  2550. * Fixed potential hack by modifying packet of whispers. [Lance]
  2551. * Fixed potential crash in IRC processing message with '%' using *printf. [Lance]
  2552. * Fixed memory leaking caused by homun_data not freed when removed. [Lance]
  2553. * Fixed client not validating the chat-kick-request packet, which can cause
  2554. crashes. [Skotlex]
  2555. * Updated map_quit to handle removing of players who are not even
  2556. authenticated yet. [Skotlex]
  2557. * New connection requests are now also blocked when there's a player
  2558. already online but hasn't finished loading yet. [Skotlex]
  2559. * Because of these changes, the friendlist notification when people join
  2560. has been moved to LoadEndAck from pc_authok [Skotlex]
  2561. 2006/11/16
  2562. * Updated sql files [Toms]
  2563. * For the sake of avoiding confusion, all script events are named with prefix 'On'
  2564. from now on. [Lance]
  2565. * Edited atcommand and charcommand syntax. Now it doesn't need the useless
  2566. character name and ":". [Lance]
  2567. * Shadow Jump and Kirikage won't "move" you if you use them in GvG grounds.
  2568. Fixed Kirikage so it first warps you, and then you unhide. [Skotlex]
  2569. * Corrected Zeny Nage so the Zeny spent on the attack is always the exact
  2570. same value as the damage you are dealing. Also corrected it so it does half
  2571. damage when used on players. [Skotlex]
  2572. * Overlapping song/dances will now cause dissonance/ugly-dance level 1
  2573. instead of retaining the level of their song/dance. [Skotlex]
  2574. * Fixed wrong check in @petrename, thanks to The Ultra Mage.[Skotlex]
  2575. 2006/11/14
  2576. * Early Christmas present. 3 new "features" which were very easy to code,
  2577. and should help scripters tremendously. Eapp is quite a way from being
  2578. ready, so these can't hurt:
  2579. * Implemented Karma: It turns out that when someone has karma, the client
  2580. believes this character is "evil", and will give you a cursor sword on top
  2581. of them automatically. So now the code will let characters with karma to
  2582. fight each other. This enables duels and other types of restricted pvp
  2583. where only the characters with karma can hit each others, and the rest of
  2584. players with neutral karma cannot be affected. Note that Karma cannot be
  2585. negative, and it can have any value between 0 and 256 (any non-zero value
  2586. makes them appear evil on the client). For now, characters with karma can
  2587. hit each other regardless of karma value, but perhaps it may be better to
  2588. let them to hit each other ONLY if they have the same karma (the whole
  2589. duel implementation COULD be cleaned up using Karma instead!)
  2590. * Added mapflags partylock and guildlock, which lock the state of the
  2591. parties/guilds on said maps:
  2592. partylock: blocks user party requests to create/invite/leave/kick
  2593. guildlock: blocks user guild requests to create/invite/leave/expel/
  2594. make alliance/make opposition/delete alliance/delete opposition/
  2595. break guild
  2596. 2006/11/13
  2597. * Fixed a bug where the char-txt server was incorrectly saving memos,
  2598. causing character data to be lost on restart. [Skotlex]
  2599. * HP Conversion will fail when used at max SP. It should not display any
  2600. errors to the client. [Skotlex]
  2601. * Modified yet again the login procedure to enable character variables to
  2602. work on item scripts. It SHOULD work crashless now. Please report any
  2603. problems it may cause.
  2604. * Volcano/Deluge/Violent Gale are now interchangeable, in the sense that
  2605. as long as one of these is out, casting any of the three will not consume
  2606. gems, and will use the remaining time of the previous one. In turn, Land
  2607. Protector will now always consume gems on every cast. [Skotlex]
  2608. * Small cleanup in the Land protector code which may fix it not blocking
  2609. AoE skills. [Skotlex]
  2610. * Fixed the interpretation of "head_dir". Removed setting head_dir to match
  2611. character direction in the whole code. Now it is only reset to 0 (look
  2612. forward) when unit_setpos is invoked, or when a character begins walking.
  2613. Thanks to FlavioJS for figuring out how the client parses the head
  2614. direction. [Skotlex]
  2615. * Moved status_calc_pc back to pc_authok. [Lance]
  2616. 2006/11/11
  2617. * Fixed debug message in login_sql [KarLaeda]
  2618. 2006/11/10
  2619. * Deluge/Violent Gale/Volcano tiles will now fail to be placed on cells
  2620. that are already ocuppied by anything else. [Skotlex]
  2621. * status_is_immune will now return 0 or the amount of immunity of the
  2622. target. In which cases it returns 100 for WoH and the GTB bonus when they
  2623. have passed the gtb_sc_immunity setting. This enables targetted spells to
  2624. not "fail silently" unless GTB's magic reduction is 100. [Skotlex]
  2625. * Fixed Homunculus being spawned as soon as they arrive from the
  2626. char-server even if the Master has not spawned on the map yet. [Skotlex]
  2627. * AL_TELEPORT now fails when used on top of Land Protector. [Skotlex]
  2628. * Some minor cleanings in pc_setpos, it may (or not) help fix that
  2629. homunc-caused "map_addblock" error message. [Skotlex]
  2630. * Corrected fog of wall, so that the deleted/doubled-duration effects are
  2631. calculated on a cell-by-cell basis. [Skotlex]
  2632. * Updated Land Protector: It will now delete/block effects of ALL ground
  2633. skills EXCEPT: Song/Dances/Traps (encores are still blocked). Land skills
  2634. blocked/deleted by LP also can't be casted on top of an existing LP. The
  2635. code uses the inf2 value of the skill to determine if it is a
  2636. song/dance/trap. [Skotlex]
  2637. * Ganbantein, mimicking LP, will now also remove ensembles. [Skotlex]
  2638. * Fog of Wall will fail when casted on top of a Volcano/Violent Gale
  2639. [Skotlex]
  2640. * Applied FlavioJS's fix to the npc whisper system. [Skotlex]
  2641. 2006/11/09
  2642. * Fixed status-change loading not working. [Skotlex]
  2643. * Fixed permanent mob-spawn script-events not working. [Skotlex]
  2644. * AL_CURE won't confuse undead players. [Skotlex]
  2645. * Corrected the Fog of Wall check so that it lasts 2x when it is placed on
  2646. TOP of a suiton/deluge, not when the caster is on top of them. [Skotlex]
  2647. * Updated status_check_skilluse so that when the caster has a disabling
  2648. status change (stun/petrify/etc) it will block the skill in all cases
  2649. EXCEPT on cast-end when the skill is ground-targetted. [Skotlex]
  2650. * Fixed Health Conversion skill formula bug. [Lupus]
  2651. 2006/11/08
  2652. * Fixed Desperado's hit-rate, now it behaves as it should. [Skotlex]
  2653. * The GVG map-packet will now also be sent for guild dungeon maps.
  2654. [Skotlex]
  2655. * Added clif_gospel_info which displays info about the buffs you are
  2656. receiving. Thanks to Rayce for the packet information. [Skotlex]
  2657. * Fixed Spider Web not ending when hit by a fireelemental attack. [Skotlex]
  2658. * Cast-time reductions from status changes will not be executed until right
  2659. before casting, to prevent status changes from ending when attempting to
  2660. cast and the attempt fails (invalid cells, not enough sp, wrong target,
  2661. etc, etc) [Skotlex]
  2662. * Added check to prevent Wand of Hermod from seeking for a partner to
  2663. encore, since the partner is supposed to be the warp. [Skotlex]
  2664. * Corrected the mob spawn reading code so that the event-name can be up to
  2665. 50 characters long (which is the actual event length) and so that it can
  2666. read spaces within them, it will also strip the leading/trailing quotes if
  2667. you use them so that the event is actually found on mob-death (so you can
  2668. do stuff like "My NPC::OnDead" as a valid event). [Skotlex]
  2669. * Moved the homunc inherit speed from the master from status_calc_pc to
  2670. LoadEndAck, since the hom's speed matches that of the master each time the
  2671. master changes maps. [Skotlex]
  2672. 2006/11/07
  2673. * Applied FlavioJs's patch which enables colored console output for Windows
  2674. systems. It also includes a config setting called
  2675. "stdout_with_ansisequence" with which you can turn off the color codes (in
  2676. case you are logging all output) [Skotlex]
  2677. * Added error reporting when the max number of ground unit cells has been
  2678. reached (this may be the reason why sometimes it fails to recognize when
  2679. you step out of a song/dance/encore) [Skotlex]
  2680. * Added passing the Endure effect to other devoted people. Note that the
  2681. "hit count" is individual for each character, and only when it ends on the
  2682. Crusader himself will that force it to end on everyone else. It also will
  2683. not transfer on gvg grounds, but it does transfer in pvp. [Skotlex]
  2684. * Fixed Reflect-Shield triggering Auto-Guard instead on devoted chars.
  2685. [Skotlex]
  2686. * Added a check to prevent casting ground skills on a target and vice-versa
  2687. when said skill use packets are received. It really shouldn't be
  2688. exploitable, but doing that certainly makes the server print a lot of
  2689. "unknown skill used!" messages. [Skotlex]
  2690. * Fixed map_foreachiddb and map_foreachpc so they don't encapsulate the
  2691. variable arguments into a double va_arg list. Thanks to the Ultra Mage for
  2692. the tip. [Skotlex]
  2693. * Cleaned up the clif_hate/mob_info functions with the correct fields/usage
  2694. as explained by Rayce. [Skotlex]
  2695. * Implemented clif_feel_hate_reset packet to properly display the Angel of
  2696. the Sun/Moon/Stars, thanks again to Rayce for the relevant information.
  2697. [Skotlex]
  2698. * LP will again block all land-stuff from being placed down on top of it
  2699. for the exception of Song/Dance/Encores. [Skotlex]
  2700. 2006/11/06
  2701. * Reapplied 'fix equipment scripts which are based on character variables not
  2702. working.' [Lance]
  2703. * Multiple Gunslinger skill corrections, refer to
  2704. http://ro.doddlercon.com/guides/gunslinger.html for information source:
  2705. [Skotlex]
  2706. - Corrected Ground Drift. Splash range of 3x3, stackable and placeable
  2707. underneath others, cast time is 2 secs. It's considered ranged, and it's
  2708. bonus damage increase is defense ignoring, always neutral.
  2709. - Corrected Bull's Eye implementation, it should deal normal damage against
  2710. non brute/demi-human targets.
  2711. - GS_DUST is now considered a short-range attack.
  2712. - Implemented Desperado's hit rate based on distance to caster as it's
  2713. believed to behave.
  2714. - GS_TRACKING's range is no longer affected by Snake Eye.
  2715. - GS_FLING's defense reduction is now 5*lv%
  2716. * Suiton's Speed/Agi penalty will affect everyone when used in versus maps.
  2717. * Corrected Kaupe so it doesn't ends on the first part of Soul Destroyer.
  2718. [Skotlex]
  2719. * Applied some cleaning to the way Tatami Gaeshi knocks back. [Skotlex]
  2720. * Cleaned up the way mobskill_use checks for the correct event. It should
  2721. fix unlimited mob-skill-casting issues. [Skotlex]
  2722. * Removed the return code entry when logging GM reload-GM requests
  2723. (login-sql),it'll just be stored as zero. [Skotlex]
  2724. * Added a fix on socket.c to not pick INADDR_ANY when choosing our own IP.
  2725. [Skotlex]
  2726. * Applied the correction on maprespawnguildid so that it parses ALL players
  2727. and not just those on a map. [Skotlex]
  2728. * TK_JUMPKICK now dispels normal aspd/speed potions (not berserk pitched
  2729. ones) and Preserve will be unable to block this. [Skotlex]
  2730. * Soul Linkers are now immune to SA_DISPEL [Skotlex]
  2731. * You can now place everything (except magic skills) on top of LPs.
  2732. [Skotlex]
  2733. * Corrected Ganbantein to not touch song/dance/ensembles. [Skotlex]
  2734. * Status_calc_pc will refuse to execute if the player is still tagged as a
  2735. "new connection" and the invocation is not meant to be the first one.
  2736. [Skotlex]
  2737. * Swapped the order of checks in status_isimmune so that Wand of Hermod
  2738. skill blocking takes precedence over GTB's [Skotlex]
  2739. * Client packets will all be ignored while a player is not on a map until
  2740. the LoadEndAck packet is received. [Skotlex]
  2741. * Reverted changes, moved status_calc_pc(sd,1) back to pc_authok
  2742. since it causes problems. [Lance]
  2743. * Temperory fixed stability issue caused by initial status_calc_pc
  2744. being placed AFTER another status_calc_pc. [Lance]
  2745. 2006/11/05
  2746. * Updated sql files [Toms]
  2747. * Updated perl files acording to rev 9135 [Toms]
  2748. 2006/11/04
  2749. * Readded duel code in map_quit. Why it has been removed!? [LuzZza]
  2750. * Converted itemdb tables to use smallint. Credits to ALZ. [Lance]
  2751. 2006/11/01
  2752. * Reverted LK_Berserk HP requirement, as everything, including kRO X.2 and
  2753. pRO X.3, points that way. [Vicious]
  2754. 2006/10/31
  2755. * Fixed song/dance/encore cells not being placed down when casted on top of
  2756. a land Protector. [Skotlex]
  2757. * Update homunc's speed when master's speed changes, should avoid homunc's
  2758. speed = 0 on login (homunc's stats are calculated before master's stats) [Toms]
  2759. * When Kaizel (or super novice rebirth skill) triggers, you get debuffed
  2760. now. [Skotlex]
  2761. * Modified the player_cloak_check_type and monster_cloak_check_type
  2762. settings. 1 makes it check for walls, 2 makes cloaking NOT end on normal
  2763. attacks, and 4 makes cloaking NOT end when using skills. The default
  2764. setting for players is still 1, but for mobs the default has been changed
  2765. to 4. [Skotlex]
  2766. * Non-players can now use all skills while hidden. [Skotlex]
  2767. * Added a check to prevent adding negative damage to the total accumulated
  2768. damage in mob_damage. It could fix some exploits, even though mob_damage
  2769. should never be invoked with negative damage anyway. [Skotlex]
  2770. * Implemented the property where the first attacker get's double exp-share
  2771. than the others. Due to the way exp calculation is done, this bonus will
  2772. not apply when you use exp_calc_type 1 (damage/max_hp) instead of the
  2773. default (damage/total-damage). For now this bonus is done after calculating
  2774. who is the MVP character instead of before. [Skotlex]
  2775. 2006/10/30
  2776. * Fixed a little bug in event enqueue code [Toms]
  2777. * Updated the code so mobs can use ChainAction as a targetted skill.
  2778. [Skotlex]
  2779. * Added GroundDrift effects for Wind (Stun) and Fire (knockback). The
  2780. knockback value is unknown, so 3 is used for now. [Skotlex]
  2781. * Cleaned up some more the steal code, now you can't steal the last slot
  2782. regardless of skill level used. [Skotlex]
  2783. * Added consideration of Chain Action when cloning GunSlingers. [Skotlex]
  2784. * Modified battle_calc_return_damage to take the skill id as well, now
  2785. magic damage return will not work on skills tagged as ground or self
  2786. targetted. [Skotlex]
  2787. * Fixed Gank not working at all with the default max steal tries setting.
  2788. [Skotlex]
  2789. * Soul Drain won't work with skills tagged as self-targetted. [Skotlex]
  2790. * Improved the Suiton code so that the walk/agi penalty only applies to
  2791. enemies of whoever casted the skill. [Skotlex]
  2792. * Moved the initial status_calc_pc call to when you finish loading the map,
  2793. should fix equipment scripts which are based on character variables not
  2794. working. [Skotlex]
  2795. * Fixed getcharid according to samples and docs. [Lupus]
  2796. Thanks to joshuaali for pointing it out. eAPP has no such bug
  2797. 2006/10/27
  2798. * Fixed mob-skill event "skillused" not triggering at all. [Skotlex]
  2799. * Summoned mobs will only be removed from a map if their master is also
  2800. removed (dynamic mobs) [Skotlex]
  2801. 2006/10/26
  2802. * Updated sql files [Playtester]
  2803. * Experimental tweak to npc_parse_function - Overwrite existing functions. [Lance]
  2804. 2006/10/25
  2805. * Cleaned up some more the event dequeue code, it will no longer clear out
  2806. the npc_id if there's no events waiting to be executed (why does it clears
  2807. the npc_id anyway?) [Skotlex]
  2808. * Because of possible conflicts with this change and the on-login script,
  2809. now the on-login script is executed when the player has finished loading
  2810. into their start-up map rather than as soon as receiving the registry
  2811. variables from the char-server. [Skotlex]
  2812. * Some cleaning of the pc_eventtimer and pc enqueue code, it should fix
  2813. some memory leaks when the event counter does not matches with the actual
  2814. number of queued timers during logout. [Skotlex]
  2815. * Fixed "skill_sp_override_grffile: yes" causing crashes when parsing
  2816. Homuncuus/Guild skills. [Skotlex]
  2817. * Made the exp bonus settings be adjustable: [Skotlex]
  2818. - exp_bonus_attacker: Indicates how much additional exp a mob gives per
  2819. additional attacker (eg: 10 -> +10%*attacker)
  2820. - exp_bonus_max_attacker: Indicates at which number of attackers the bonus
  2821. is capped (eg: 5 -> 5 attackers, so a mob yield the same exp whether 5 or
  2822. 10 people attack it)
  2823. - Changed the way the party_even_share_bonus setting works. It now uses a
  2824. simple linear bonus increase (eg: 10 -> +10%*party member)
  2825. - The defaults are as explained by Tharis: +25%/attacker, capped at 12
  2826. attackers, no party bonus. The first two can be found in exp.conf, the last
  2827. one was left in party.conf
  2828. * MG_STONECURSE and NPC_PETRIFYATTACK now use time1 to specify the
  2829. "petrifying time". This value has been set to 5 seconds. [Skotlex]
  2830. * Now when SC_STONE is triggered from status-change cards, it's petrifying
  2831. duration will be passed as 0, causing the minimum (1 sec) to be used.
  2832. [Skotlex]
  2833. * Got rid of clones in src: old Novice Grounds map -> new_zone0? [Lupus]
  2834. 2006/10/24
  2835. * Removed again your mdef reducing "petrifying" time as apparently it can't
  2836. be reduced by mdef. [Skotlex]
  2837. * Cleaned up the "show_steal_in_party" setting so it only takes effect when
  2838. the item was successfully stolen (there was no point in telling you the
  2839. item couldn't be stolen due to being overweight) [Skotlex]
  2840. * Cleaned up the pc_steal_item implementation (again). It now uses a more
  2841. random, simple approach in each steal attempt. [Skotlex]
  2842. * Changed the way the skill_steal_max_tries work. Now it actually MEANS the
  2843. max number of steal tries, use 0 to disable (unlimited tries). [Skotlex]
  2844. 2006/10/23
  2845. * Added a bunch of important indexes when dealing with the log tables.
  2846. Added upgrade_svn9050.sql which adds these indexes as well. [Skotlex]
  2847. * Expanded the family check to work as it should, exp-share-range is
  2848. respected, and the child is not considered for it (thanks to TheUltraMage
  2849. for the investigation) [Skotlex]
  2850. * Double Casting will no longer fail when used. [Skotlex]
  2851. * Modified SC_STONE so that the duration of the "petrifying" time is 5 secs
  2852. reduced by your natural resistance to petrify (which is mdef%) [Skotlex]
  2853. * Modified the meaning of the third column in the skill_require_db. Instead
  2854. of MaxHP, this is now called MaxHPTrigger. This column (which was
  2855. previously unused by all skills) signals the limit HP% that you can have to
  2856. be able to use the skill. For example, setting it to 20 means the skill is
  2857. unusable if you have more than 20% life (note that this is merely a
  2858. threshold setting, it won't actually substract HP when used!) [Skotlex]
  2859. * Adjusted LK_BERSERK so you can only use it when you have 20% or less
  2860. life. [Skotlex]
  2861. * Removed NJ_TOBIDOUGU adding damage to W_HUUMA weapons which somehow got
  2862. readded. [Skotlex]
  2863. * When nonplayers use Cloaking, it will be forced to level 10 since mobs
  2864. shouldn't have movement/attack restrictions while walking cloaked.
  2865. [Skotlex]
  2866. 2006/10/20
  2867. * Made HAMI_CASTLE use clif_slide rather than clif_fixpos. This should
  2868. fix clientside problems when castling between two positions the (client)
  2869. path finding can't find a walkable bath between anymore. [blackhole89]
  2870. * Fixed the Homunc not spawning next to you after receiving it's data from
  2871. the char-server. [Skotlex]
  2872. * Fixed Charge Atk being able to go through chasm/pits. [Skotlex]
  2873. * Moved the homunculus DB information from the player structure to the
  2874. homun structure. Modified the homunculus creation packets to hold this
  2875. information during creation, also, all initial values are handled by the
  2876. map-server, the char server only assigns it a homun ID. [Skotlex]
  2877. WARNING: This is yet untested! It's very possible something could had
  2878. broken after changing the format/size of the homunc creation packets.
  2879. * Added config setting "summon_flora_setting", which it you can decide now
  2880. two things: a. Whether or not players can harm your floras outside versus
  2881. grounds, and b. Whether or not you can summon out and mix different types
  2882. of plants at the same time. [Skotlex]
  2883. * Likely fixed pc_steal_item always failing to steal (it was attempting to
  2884. steal random item IDs...) [Skotlex]
  2885. * Cleaned up a bit the mob on-death event so that when the killer is a
  2886. homunculus, it's master will be taken. Also, the variable killerrid will be
  2887. set before running the script to specify who delivered the final blow. If
  2888. the killerrid matches with the script attached player, you can be sure your
  2889. player did the final blow to the mob, otherwise, the attached player is who
  2890. did the most damage to the mob. [Skotlex]
  2891. 2006/10/19
  2892. * Cleaned up the log.c file. [Skotlex]
  2893. * Fixed log_chat not recording anything if the server is compiled in SQL
  2894. mode and sql_logs is turned off (it should then record to a plain txt file)
  2895. [Skotlex]
  2896. * Fixed SG_FRIEND, it should be triggering when Monks do Combo Finish (not
  2897. triple blows), and the trigger rate increase should be based on your known
  2898. level of SG_FRIEND, not TK_COUNTER. [Skotlex]
  2899. * Phantasmic arrow now knockbacks even if it misses. [Skotlex]
  2900. * Adjusted the way Monk combo times work. The combo time is now always
  2901. 300ms (adjusted by combo_delay_rate) which takes effect inmediately AFTER
  2902. your current skill's canact-delay (which is why the particular skill delays
  2903. were moved to skillcast_db) [Skotlex]
  2904. * Modified skill_delayfix so it performs the can-act reduction from agi/dex
  2905. for combos there. [Skotlex]
  2906. * Modified pc_steal_item so that it behaves more closely to the way it does
  2907. on Aegis. [Skotlex]
  2908. 2006/10/18
  2909. * Added a overflow check when calculating party exp share. [Skotlex]
  2910. 2006/10/16
  2911. * Adjusted UTSUSEMI/BUNSINJYUTSU so that they block range/melee weapon
  2912. attacks and only melee misc attacks. This isn't 100% correct, but it's a
  2913. better approximation to the way these skills behave. [Skotlex]
  2914. * Emergency call &16 (disable skill from nowarpto maps) will now NOT block
  2915. Emergency Call if that map is also a gvg-castle map. Makes it safe to turn
  2916. on this option to prevent usage from special maps (like Lhz3) without
  2917. crippling the skill during WoE. [Skotlex]
  2918. * Applied most of Mpeg's work on Ninja Skills. For information see:
  2919. http://gpegon.free.fr/ea/ninja_10-15-06_mpeg.txt [Skotlex]
  2920. * When reinvoking a combo-time, the previous combo time will be terminated.
  2921. This could fix the ongoing difficulties pulling off Monk combos. [Skotlex]
  2922. * Fixed Esma-state not ending after casting it. [Skotlex]
  2923. * Fixed @hominfo displaying intimacy on a 1/10k scale. [Skotlex]
  2924. 2006/10/14
  2925. * Homun info window to show crit value. As default, homun does NOT crit,
  2926. as monsters do not crit. This is purely for display purpose for players
  2927. to identify their homon's luk value. [Vicious]
  2928. 2006/10/13
  2929. * Base attack for non players is now calculated as str + [str/10]^2 (it
  2930. does not has +dex/5+luk/5 which players do have) [Skotlex]
  2931. * Fixed the char-sql server trying to read the gms off a "gm_db" config
  2932. setting stead of "login_db" [Skotlex]
  2933. * Corrected Throw Arrow/Musical Strike's damage formula [Skotlex]
  2934. * Altered Trick Dead. It doesn't prevents skills from being casted on you
  2935. now, but damage-based skills will do no damage. [Skotlex]
  2936. * Made the battle_config.attack_attr_none apply to pets when using the
  2937. "fixed damage" pet skill scripts. [Skotlex]
  2938. 2006/10/12
  2939. * made @killmonster make the mobs drop items again. [Skotlex]
  2940. * Added a temporary message when Angel of the Sun, Moon and Stars trigger
  2941. so you know it triggered. [Skotlex]
  2942. * When slaves_inherit_speed is set (which is also the default), homun will
  2943. have the same speed of their master when spawned. [Skotlex]
  2944. * When using Hatred and you already have a hate target, your current hate
  2945. target is displayed now. [Skotlex]
  2946. 2006/10/11
  2947. * Cleaned up the char-server code when the last point of a player is not
  2948. found. First it'll check if there's any mapserver online, and then, if
  2949. there is, it'll look for the major cities. If this fails, then the player
  2950. will be told server is closed instead of trying to send him to a "random
  2951. map". Will fix the char-server printing the misleading message "map
  2952. server not found, sending to major city" when in reality there just
  2953. aren't any map servers connected. [Skotlex]
  2954. * Corrected the mob damagelog structure so that you can't exploit it by
  2955. switching characters. [Skotlex]
  2956. 2006/10/09
  2957. * Fixed crash when char-server sends to a "random" map-server online on
  2958. connect. Thanks to TheUltraMage for pointing it out. [Skotlex]
  2959. * Should have fixed being petrified not reducing your defense and
  2960. increaseing your mdef. [Skotlex]
  2961. * Fixed SC_NOCHAT printing the "skills are now available" message twice on
  2962. natural expiration. [Skotlex]
  2963. 2006/10/08
  2964. * Updated sql files [Playtester]
  2965. 2006/10/06
  2966. * Updated Land Protector to block absolutely every land-based skills with
  2967. the exception of Encores/Dances. [Skotlex]
  2968. * Disabling status abnormalities will now reset a mob's target. [Skotlex]
  2969. * Mob morphing also resets their target now. [Skotlex]
  2970. * Monk combos no longer can ignore skill delay (delay skill for all their
  2971. combo-related skills is ASPD) [Skotlex]
  2972. * Now you can trade while in a chatroom. [Skotlex]
  2973. * Fixed homun-txt reading when the file has DOS line-type delimiters (\r\n)
  2974. [Skotlex]
  2975. 2006/10/05
  2976. * skill_blown will now trigger on-touch npcs on the landing tile. [Skotlex]
  2977. * Max trade distance has been reduced from 5 to 2. [Skotlex]
  2978. * Undisguising will now resend the cart-contents. [Skotlex]
  2979. * Added function npc_unload_duplicates(), it unloads all npcs that are a
  2980. duplicate of the passed one. For use with @unloadnpc to prevent crashes
  2981. when you unload the npc that has duplicates. [Skotlex]
  2982. 2006/10/04
  2983. * Bowling bash now always hits twice regardless of situation. [Skotlex]
  2984. * Added an underflow check to prevent sending to the client negative mdef2
  2985. value (for Frenzy'ed characters) [Skotlex]
  2986. * Modified pc_jobchange so that it automatically removes
  2987. peco/falcon/cart/homun if the new job you are changing to does not possess
  2988. the required skill for them. [Skotlex]
  2989. 2006/10/03
  2990. * Fixed a possible crash with @reloadmobdb due to pet loot timers.
  2991. [Skotlex]
  2992. * Fixed a possible crash and a memory leak on the login-SQL server when
  2993. parsing unban requests. [Skotlex]
  2994. * Renamed setting delay_dependon_dex to delay_dependon_agi, the delay of
  2995. skills is reduced now (when enabled) by AGI instead of DEX, which makes a
  2996. lot more sense than DEX. [Skotlex]
  2997. 2006/10/02
  2998. * Modified item-granded status resistance reduction to behave as explained
  2999. by Vicious (Ragnarok Monthly magazine) [Skotlex]
  3000. * Added the opt3 values to Eske [Skotlex]
  3001. * Fixed the txt->sql converter only saving the very first character
  3002. permanent variable. [Skotlex]
  3003. * Fixed the txt->sql converter saving account-wide variables as
  3004. character-wide ones. [Skotlex]
  3005. * Renamed nopenalty mapflag to noexppenalty. Using nopenalty will turn
  3006. on/off both noexppenalty and nozenypenalty now. [Skotlex]
  3007. 2006/10/01
  3008. * Removed the speed adjustment per level of Increase/Decrease Agility
  3009. [Skotlex]
  3010. * Fixed humunculi skill exploit, thanks to mr.rkit [Lupus]
  3011. 2006/09/30
  3012. * Rewrote the txt->sql converter. It now links directly to the char server
  3013. files so that it should get auto-updated with any code changes in the
  3014. later. [Skotlex]
  3015. * The converter will now also convert: account-wide variables, parties,
  3016. guilds, guild storage and guild castles. At this point the only two things
  3017. not converted are login-server-wide account variables (##, they belong to
  3018. the login converter) and homunculus (the SQL save function is messy and
  3019. doesn't lends itself to be integrated with the converter the way all the
  3020. other functions are). [Skotlex]
  3021. * misceffect2 will no longer cause the effect on top of the source object
  3022. when it is the fake npc. [Skotlex]
  3023. * Added check so that Frost Nova doesn't hides hitting animation on
  3024. targets. [Skotlex]
  3025. * Added the missing brackets around the trade logs condition check, thanks
  3026. to Coltaro. [Skotlex]
  3027. 2006/09/29
  3028. * Spurt state will now trigger on Soul Linkers as well. [Skotlex]
  3029. * Added a check un unit_run when unit_walktoxy fails. Should fix running
  3030. getting you stuck sometimes when running on diagonals near obstacles.
  3031. [Skotlex]
  3032. 2006/09/28
  3033. * Merged the necessary changes to make the script engine support negative
  3034. constants (db/const.txt). Thanks to Rayce (from jA) for the code. [Skotlex]
  3035. * Cleaned up the skill.c code to take into account when skill_unitsetting
  3036. returns null (skill failed), fixes a possible crash with Wand of Hermode
  3037. [Skotlex]
  3038. 2006/09/27
  3039. * Cleaned up status_get_party/guild_id, it should also fix a possible crash
  3040. when invoking such a functio on a masterless pet. [Skotlex]
  3041. * Sharp-Shooting will now display a skill animation. [Skotlex]
  3042. * The no_spawn_on_player setting will now also work for static mobs, but
  3043. only if the setting is set to 100 or higher. [Skotlex]
  3044. 2006/09/26
  3045. * Yet again messed with the packet sent during a splash attack, but this
  3046. time taking into account the packets that eA was using some many revisions
  3047. ago. Tests are needed to see if Magnum Break/Grimtooth don't spam the skill
  3048. animation anymore, and to see if GrandCross didn't break it's animation as
  3049. well. [Skotlex]
  3050. * Added function skill_dance_switch which handles converting overlapping
  3051. song/dances to dissonance/ugly dance. It should make the overlapping area
  3052. now behave completely like the mentioned song/dances (taking into account
  3053. interval and target type changes). [Skotlex]
  3054. * Updated battle_check_target so that non-offensive skills cannot be used
  3055. on a homun except for the homun and it's master. [Skotlex]
  3056. * Steal zeny won't work on treasure chests now. [Skotlex]
  3057. 2006/09/25
  3058. * Added an ugly check so that Heal will display 0 when healing a berserked
  3059. character (and it will again display full heal amount when healing a player
  3060. who's at full life) [Skotlex]
  3061. * Disabled again client-self-muting since it's causing too much trouble.
  3062. [Skotlex]
  3063. * Merged FlavioJS's script patch which should fix stuff like "mes ();"
  3064. causing crashes. [Skotlex]
  3065. * Item group reading will now complain when a line doesn't has enough
  3066. fields. [Skotlex]
  3067. * Fixed #baselevelup adding instead of substracting status points when used
  3068. with negative levels. Also made it reset your stats if there wasn't enough
  3069. to substract from. [Skotlex]
  3070. * Applied FlavioJS's suggestion of expanding WFIFOPOS to also take the
  3071. direction. This had the side effect of fixing the direction missing from
  3072. the mob spawn packet, which explains why all npcs face north when you are
  3073. within sight while doing a @reloadscript. [Skotlex]
  3074. * Changed the order of packets in TK_HIGHJUMP, may fix the reports of
  3075. getting stuck when jumping into a warp. [Skotlex]
  3076. * Changed a bit the code of marionette control, where a redefined local
  3077. variable may be the cause of mob-targetted Marionette Control stacking
  3078. stats up. [Skotlex]
  3079. 2006/09/24
  3080. * When the code auto-guesses that a skill should require ammo, it will
  3081. accept any type of ammo for using it instead of only arrows. Fixes Magnum
  3082. Break usage on Gunslingers. [Skotlex]
  3083. 2006/09/22
  3084. * Probably fixed a signed/unsigned mismatch warning on the new socket code.
  3085. [Skotlex]
  3086. * Fixed the "map server claims to have char online, but this other map
  3087. server also has it tagged as online" message triggering in some cases where
  3088. it shouldn't. [Skotlex]
  3089. * Fixed some maps in db/mapindex.txt being under the wrong id and added comments
  3090. so this will not happen again. [Zephiris]
  3091. --- ATTENTION! ---
  3092. People running TXT servers will have to tell their players to redo their /memo
  3093. points since the map ids of the old file were wrong.
  3094. 2006/09/21
  3095. * Fixed a bug on "select" when skipping empty entries when the selected
  3096. entry is the last. [Skotlex]
  3097. * Improved a bit RFIFOFLUSH as suggested by Harbin. [Skotlex]
  3098. 2006/09/20
  3099. * A mob's HP is set temporarily to 0 before invoking it's on-death script,
  3100. prevents said scripts being able to "rekill" the mob indefinitely (if stuff
  3101. like killmonster is used within) [Skotlex]
  3102. * Some small cleanups in chat.c [Skotlex]
  3103. * Fixed party_sub_count (TK_POWER) failing when the idle_no_share setting
  3104. was disabled. [Skotlex]
  3105. * Enabled Star Gladiators and Soul Linkers to do /doridori [Skotlex]
  3106. 2006/09/19
  3107. * Fixed nocommand mapflag causing the "you can't use commands on this map"
  3108. message to trigger one very single chat, instead of only for actual @/#
  3109. command invocation. [Skotlex]
  3110. * Added support for skipping empty string menu entries for the select()
  3111. command (just as `menu` has it already) [Skotlex]
  3112. * Fixed pc_set_hate_mob letting you place mobs on any of the three
  3113. positions regardless of size [Skotlex]
  3114. * The double continuation error will now display both scripts that
  3115. triggered it. [Skotlex]
  3116. * Loading the storage from the char-server will fail if player is already
  3117. tagged in final save state. [Skotlex]
  3118. * Removed setting ban_spoof_namer, sending invalid global-talk packets will
  3119. now just kick the player out of the server. [Skotlex]
  3120. * Added echoing messages back to self when using @/# commands on whispers
  3121. and party/guild messages, to prevent the client from muting yourself.
  3122. [Skotlex]
  3123. * Fixed some gcc4 warnings [Toms]
  3124. 2006/09/18
  3125. * Fixed Spider Web fire damage bonus. [Skotlex]
  3126. * Made Global chat always reply back to you even on @/# commands, this
  3127. prevents the client from muting yourself due to "hack". However, this same
  3128. fix isn't easily applicable to @ commands invoked from whispers or
  3129. party/guild messages, those are still pending. [Skotlex]
  3130. * Merged Meruru's update to socket.c, which includes a rewritten parse
  3131. function, which should hopefully be more efficient than the previous code.
  3132. [Skotlex]
  3133. * The new code includes support for two config settings
  3134. (packet_athena.txt): frame_size, which can be used to alter the logic
  3135. packet-size allowed by the code, and mode_neg, which when set to yes, sets
  3136. TCP_NODELAY on all connections (defaults to yes). [Skotlex]
  3137. * High-Jump is usable everywhere now, except that on maps where it
  3138. previously failed, now will just make you jump in place. [Skotlex]
  3139. * Fixed TK_RUN as per packets provided by AuronX. [Skotlex]
  3140. * Moved the equipment/card resistances to status ailments outside of
  3141. status_get_sc_def, so that they are applied only to rate, not duration.
  3142. [Skotlex]
  3143. * Modified the Asura code (again), hopefully movement sprite issues are
  3144. fixed now [Skotlex]
  3145. * @reloadscript scripts will no longer eliminate mobs with no respawn data.
  3146. But watch out for possible bugs (I think someone mentioned 1 extra
  3147. treasure box will spawn when you use it? This needs testing!) [Skotlex]
  3148. * Made speed_add_rate a linearly stacking increase. [Skotlex]
  3149. * Corrected a possible overflow when using show_mob_info to display the
  3150. mob's up as a percent. [Skotlex]
  3151. * Corrected the documentation for checkoption/checkoption1/checkoption2
  3152. [Skotlex]
  3153. * Reenabled client requesting to self mute, as the whole knockback packet
  3154. issues of the past which were causing players to mute themselves when being
  3155. knockback is no longer there. [Skotlex]
  3156. 2006/09/17
  3157. * Fixed NPC_INVISIBLE's cloak ending after attacking once. [Skotlex]
  3158. * Fixed SG_FUSION being castable without Soul Link state. [Skotlex]
  3159. * Moved the item-use restriction SC checks from clif.c to pc_use_item,
  3160. fixed Gravitation blocking potion usage on it's area of effect. [Skotlex]
  3161. * Sphere Marines and Summoned Flora are now immune to class-changing.
  3162. [Skotlex]
  3163. 2006/09/16
  3164. * Added monster_ai&256. When set, a monster will pick a random starting
  3165. position to begin checking versus it's skills, otherwise, it will always
  3166. begin checking from the beginning. [Skotlex]
  3167. * Fixed the status change duration reduction equation was was totally
  3168. wrong, thanks to k3dt [Skotlex]
  3169. 2006/09/15
  3170. * Now mobs won't do a distance check to lose their target on every ai
  3171. iteration, but only when they finish walking (unless you set monster_ai&1)
  3172. [Skotlex]
  3173. * The chase distance before a mob gives up following a player has been
  3174. increased from view-size (range2) to min-chase (range3). [Skotlex]
  3175. * Reverted the Summon Flora change where all plants were being summoned in
  3176. one go. [Skotlex]
  3177. * Moved the weapon repair effect to where it belongs (after successfully
  3178. repairing an item) [Skotlex]
  3179. * Added config setting "friend_auto_add" (battle/player.conf), if set, when
  3180. you accept someone as your friend, both characters will show up on each
  3181. other's friend list. [Skotlex]
  3182. 2006/09/14
  3183. * Changed Extremity Fist's code to make you actually walk past your target,
  3184. which displays a much more correct "animation" for the skill. Thanks to
  3185. HiddenDragon for the information and code. [Skotlex]
  3186. * Updated the item_db search functions so that when returning the
  3187. dummy-item, it first updates the nameid to match the requested one, this
  3188. prevents pc_additem later on giving you an item with ID 500 instead of the
  3189. ID requested. [Skotlex]
  3190. * Added a clif_skill_nodamage packet when using Repair Weapon, just to see
  3191. what happens. [Skotlex]
  3192. * Likely fixed "half" of the alliance being saved, which ends up in guilds
  3193. that can attack another, but not viceversa. [Skotlex]
  3194. * Added deleting of saved Status changes on character delete for the
  3195. Char-TXT server. [Skotlex]
  3196. * Fixed the can-act delay never being checked when requesting to use
  3197. Homunculus Skills. [Skotlex]
  3198. * Fixed warmth skills draining SP of the target, not the caster. [Skotlex]
  3199. * When TK_DODGE triggers, it will no longer delay your attack or movement.
  3200. [Skotlex]
  3201. * Estimation /Sense/ whatever will no longer hide the vit bonus to mdef2,
  3202. as reported by Playtester. [Skotlex]
  3203. * Updated Summon Flora to summon the max number of possible plants on one
  3204. cast. It will consume as many bottles as monsters summoned. Also cleaned up
  3205. the function to be usable by non players. [Skotlex]
  3206. * Shadow Jump no longer goes over walls. [Skotlex]
  3207. * battle_calc_gvg_damage will be invoked in gvg maps regardless of woe
  3208. time. [Skotlex]
  3209. * NPC_MENTALBREAKER now zaps matk*lv SP based on observations by Tharis.
  3210. [Skotlex]
  3211. * md->class_ will be changed on mob-class-change to fix all class-change
  3212. related bugs. On respawn, the spawn data will be used to revert to the
  3213. original class. [Skotlex]
  3214. * Improved the pet skillbonus timer for "eternal bonuses" cases where the
  3215. bonus delay is 0. [Skotlex]
  3216. 2006/09/13
  3217. * SC_CHANGE cannot override itself anymore. This fixes being able to
  3218. "recast" the skill while it's still active to lengthen the duration AND
  3219. reheal the target. [Skotlex]
  3220. * Changed a bit the dnsbl lookup in the login servers to make it faster.
  3221. [Skotlex]
  3222. * Moved the pc rate modifiers from items
  3223. (hp/sp/matk/hit/flee/cri/flee2/def2/mdef2/def/def2/speed) from
  3224. status_calc_bl_sub_pc to status_calc_pc, as it simplifies code vastly, and
  3225. also fixes Osiris card not applying to said bonuses. [Skotlex]
  3226. * Fixed pc_damage_delay_rate not working, thanks to Orn. [Skotlex]
  3227. * Modified the nocommand mapflag so you can specify the GM range that is
  3228. blocked from using commands (eg: "prontera.gat mapflag nocommand 40"
  3229. disables commands to characters in the GM range 0~39) [Skotlex]
  3230. * Modified the char-server TXT whisper system to use the online_db to know
  3231. to which map server forward whispers, instead of just sending the whisper
  3232. to every map server. [Skotlex]
  3233. * Readded the setting TCP_NODELAY on socket.c to see if it fixes the
  3234. walk-lag issue. [Skotlex]
  3235. 2006/09/12
  3236. * Modified the login SQL server so that case insensitive lookups use "where
  3237. name = BINARY 'name'" instead of "where BINARY name = 'name'", since this
  3238. way the name index should be used, and performance will no longer be
  3239. heavily affected. [Skotlex]
  3240. * Modified main.sql to add 4 missing indexes (thanks to ErkDog): char_id on
  3241. the tables memo/friends, and online/name on the char table. Added
  3242. upgrade_svn8728.sql to add these indexes to already existing tables.
  3243. [Skotlex]
  3244. * Updated convert_engine.sql to use TYPE instead of ENGINE to be compatible
  3245. with Mysql 4 installations. [Skotlex]
  3246. * Moved the morph restrictions from skill_additional_effect to
  3247. mob_class_change, so that SA_MONOCELL will not convert clones, emperium, or
  3248. treasure boxes. [Skotlex]
  3249. * Fixed 'range' might be used uninitialized warning [Toms]
  3250. * Added Jaguar's sql script to convert all tables to MyISAM. It's located
  3251. in sql-files/convert_engine.sql WARNING: Using MyISAM is much faster than
  3252. InnoDB, but you are strongly recommended to backup your database before
  3253. switching engines since we don't know if eA is fully coded to work
  3254. correctly with MyISAM yet. [Skotlex]
  3255. * Added manual deletion of sc_data entries when deleting a character
  3256. (char-SQL) [Skotlex]
  3257. * Updated main.sql to use pure MyISAM tables, removed all foreign keys.
  3258. [Skotlex]
  3259. * Updated battle_switch to use strncmpi instead of strcmpi, it makes it so
  3260. using "yessir" will match "yes", this is actually needed because if you set
  3261. a config setting to "yes " (notice the trailing space), then the map config
  3262. engine fails to read it right, and will set the config setting to 0 (no).
  3263. [Skotlex]
  3264. * Some corrections to hate_mob cleanup when triggering the Angel stuff. [Skotlex]
  3265. * Updated the show_mob_info setting to add another space to the separating
  3266. pipes, so that each field is separated by " | " instead of " |". [Skotlex]
  3267. * Homunculus intimacy will go back to 500 on evolution. [Skotlex]
  3268. * Baphomet splash damage will now hit nearby enemies regardless of flee
  3269. (but the initial attack still has to connect for the splash to trigger)
  3270. [Skotlex]
  3271. 2006/09/11
  3272. * Modified set_nonblocking and setsocketoptions in socket.c, using eApp's
  3273. code as reference. Hopefully should improve performance somewhat. [Skotlex]
  3274. * Added a comment explaining what a comment is to login/char/map config
  3275. files, as well as the main script config file. [Skotlex]
  3276. * Modified SG_FEEL so that it works the same way that in Aegis
  3277. (packet-wise) [Skotlex]
  3278. * Added a comment to explain how to "remove" a string variable from the
  3279. msg_athena entries. [Skotlex]
  3280. * Summoned and slave mobs won't show up on @showmobs anymore. [Skotlex]
  3281. * Moved Spider Web damage bonus from battle_calc_damage to battle_attr_fix,
  3282. so that damage will be doubled based on the actual attack element.
  3283. [Skotlex]
  3284. * Adjusted autospell cards to trigger only on physical weapon attacks.
  3285. [Skotlex]
  3286. * Adjusted a bit the heal code, it should now show either the full heal
  3287. amount, or 0, depending on whether the target was healed at all or not
  3288. (this also means it shows 0 if you try to heal a full-life character.. but
  3289. it's the closest I've gotten to make it display 0 on Berserked chars)
  3290. [Skotlex]
  3291. * Memorize will be consumed even on instant cast spells now. [Skotlex]
  3292. * Berserk will end now if hit and remaining hp is less or equal to 100.
  3293. [Skotlex]
  3294. * Guild Aura will be removed on sc-load to prevent Guild Masters from
  3295. getting that bonus from the old implementation. [Skotlex]
  3296. * Added D-Kalck's fix of the TXT -> SQL converter [Playtester]
  3297. 2006/09/10
  3298. * Thanks to KarLaeda, added missing function in @showmobs [Lupus]
  3299. - Script function 'query_sql': In the TXT version it doesn't fill the array
  3300. and always return -1. Added for scripts compatibility. Your scripts
  3301. won't crash in TXT version. They can work it around.
  3302. I suggest we need a function getversion()
  3303. * Updated item_db.sql and mob_db.sql [Playtester]
  3304. 2006/09/09
  3305. * Added a crash protection in case mapfreeblock unlock tries to free a null
  3306. pointer. [Skotlex]
  3307. * Moved perfect_hiding from state to special_state, so that it clears out
  3308. when you remove your pet. [Skotlex]
  3309. * Probably fixed the Taekwon Rest skills. [Skotlex]
  3310. * Fixed a npc-timer memory leak on npc_unload ("[Warning]: ers_obj_destroy:
  3311. X entries missing, continuing destruction. Manager for entries of size
  3312. 16.") [Skotlex]
  3313. 2006/09/08
  3314. * Unified the rest and ganster paradise code into a single function.
  3315. [Skotlex]
  3316. * Moved the Happy State trigger to the regen function, it now triggers at
  3317. the same time SPTIME does. [Skotlex]
  3318. * Cleaned up SG_HATE, hope it works now. [Skotlex]
  3319. * Removed sg_miracle_skill_duration, replaced it with
  3320. sg_miracle_skill_min_duration and sg_miracle_skill_max_duration, to specify
  3321. a range for the duration of the skill. [Skotlex]
  3322. * Added upgrade_svn8675.sql in case, for some reason, your guild table
  3323. still has the emblem_data field as a 'blob' with "NOT NULL" specified.
  3324. [Skotlex]
  3325. * Fixed alliance/opposition making not cancelling out map-server-side when
  3326. the guild already had max number of alliances/oppositions (thanks to k3dt)
  3327. [Skotlex]
  3328. 2006/09/07
  3329. * Fixed SC_BERSERK setting Hp to 100 when dispelled by unnatural means (eg:
  3330. wand of hermod) [Skotlex]
  3331. * Cleaned up the doridori parse clif function. [Skotlex]
  3332. * Merged some of mpeg's work on NJ skills [Skotlex]
  3333. * Removed the Warmth "stacking" code. [Skotlex]
  3334. * Added back the effect of /doridori to skill-SP regen [Skotlex]
  3335. * Implemented a rough version of Angel of the Sun/Moon/Stars, it has a low
  3336. chance of triggering on doridori-boosted SP-regen events. However, it has
  3337. no client-side messages yet (need to add these in) [Skotlex]
  3338. * Added sg_angel_skill_ratio to specify rate at which the Angel skill
  3339. triggers. [Skotlex]
  3340. * Added unit_cancel_combo which takes care of ending a combo time and
  3341. resuming normal attack 'inmediately' [Skotlex]
  3342. * Cleaned up some the SG_HATE code, you can't change hate targets anymore.
  3343. [Skotlex]
  3344. 2006/09/06
  3345. * Fixed the memset in status_calc_pc, corrects some mysterious bugs such as
  3346. item-drop bonuses suddenly not working anymore. [Skotlex]
  3347. * Corrected SC_INCREASEAGI and SC_DECREASEAGI speed-change formula.
  3348. [Skotlex]
  3349. * Fixed Aex Aeterna ending on Soul Breaker's first half. [Skotlex]
  3350. * Applied Orn's modification on speed increases/reductions with increase/
  3351. decrease agi [Toms]
  3352. 2006/09/05
  3353. * Removed setting mob_show_hp, it's been replaced now by mob_show_info,
  3354. which can be used to specify what kind of info should be displayed from a
  3355. mob. Current options are two different formats for Hp display, and current
  3356. level (monster.conf). [Skotlex]
  3357. * Fixed Signum Crucis Def reduction being 10+2*lv% instead of 10+4*lv%
  3358. [Skotlex]
  3359. * Applied the Ultra Mage's suggestion to have the map server strip trailing
  3360. spaces/comments from the config files. It will also now print out when an
  3361. unknown config setting is found. [Skotlex]
  3362. * Fixed status change resistance not being invoked at all for pretty much
  3363. all cases. [Skotlex]
  3364. * Corrected SC_INTRAVISION not starting. [Skotlex]
  3365. * Fixed crash when attempting to read a Label as a string on a script
  3366. (thanks to End of Exam) [Skotlex]
  3367. * Fixed possible crash when changing a chat-room's owner (thanks to End of
  3368. Exam) [Skotlex]
  3369. * Fixed dispell removing SC_NOCHAT [Skotlex]
  3370. * Small fix which should correct skill_attack damaging hidden characters
  3371. when it shouldn't. [Skotlex]
  3372. * Fixed connect_until field being a smallint rather than int in the login
  3373. table (upgrade with upgrade_svn8630.sql) [Skotlex]
  3374. 2006/09/04
  3375. * Fixed crash when using Adaptation during an Encore. [Skotlex]
  3376. * Should have fixed manner being reset to 0 on logout while muted.
  3377. [Skotlex]
  3378. * Removed status_get_sc_tick, duration and chance are now both handled by
  3379. status_get_sc_def (this means status change duration and success rate
  3380. both will always follow the very same formula) [Skotlex]
  3381. * Fixed mob-kill experience getting screwed up when characters who did
  3382. damage die/logout at the moment the mob dies. [Skotlex]
  3383. * Should have fixed "sleep", thanks to Lance for figuring out the error.
  3384. [Skotlex]
  3385. * SC_REFLECTSHIELD will now be passed to devoted characters at cast-time.
  3386. [Skotlex]
  3387. * Added a check to make a mob's level 1 if the read level from the db is
  3388. less than it. [Skotlex]
  3389. * status_calc_misc will now be invoked in status_calc_bl even on the first
  3390. call, since status could have gone up due to skill bonuses. [Skotlex]
  3391. * Moved max HP/SP calculations to before invoking status_calc_misc
  3392. [Skotlex]
  3393. * Simplified distance and check_distance to use "aegis" methods (greater of
  3394. dx/dy = distance), there's a new define in map.h called CIRCULAR_AREA, when
  3395. set, the previous method is used, and "for each in range" calls will also
  3396. check for distances, making most ground skills and battle system use real
  3397. circles instead of squares. [Skotlex]
  3398. 2006/09/03
  3399. * Fixed SC_BERSERK's no regen penalty lasting pretty much forever.
  3400. [Skotlex]
  3401. 2006/09/02
  3402. * SC_REGENERATION's val4 now holds the RGN flag of what is blocked rather
  3403. than blocking all types of regen. [Skotlex]
  3404. * LK_BERSERK will now only block natural regen on state-end. [Skotlex]
  3405. * SC_EXTREMITYFIST/SC_DANCING/SC_EXPLOSIONSPIRITS will only block natural
  3406. sp regen and not skill regen [Skotlex]
  3407. * SC_REGENERATION blocking will be cancelled on logout now. [Skotlex]
  3408. * Corrected SCB_LUK not updating SCB_BATK as well. [Skotlex]
  3409. 2006/09/01
  3410. * Corrected script_commands description of getequipid, it returns -1, not 0
  3411. on fail. [Skotlex]
  3412. * Fixed the mob-id check during pet_db loading, it will also now print when
  3413. a pet is not loaded due to having an invalid mob class specified. [Skotlex]
  3414. * The "delete_timer error/no such timer" report will now print the related function [Toms]
  3415. * The Clearing unused stack report will now print the related NPC [Toms]
  3416. * The duplicate npc report will now print the related file name [Toms]
  3417. * Added config setting "partial_name_scan", which specifies whether @ given
  3418. names should use a partial string lookup or absolute name lookup. Defaults
  3419. to no (gm.conf) [Skotlex]
  3420. * Expanded status_calc_misc so it may also calculate the batk of characters
  3421. as well as their regen data (if they have it) [Skotlex]
  3422. * Fixed a memory leak when using charsave_method:1 [Skotlex]
  3423. * Soul Breaker will now be affected by Lex Aeterna on both parts of the
  3424. attack. [Skotlex]
  3425. * Status changes with no skill and no SCB* data will now go through if they
  3426. have an SI* icon. This should fix SC_MIRACLE [Skotlex]
  3427. * Reverted switching a mob's adelay/amotion when the later is longer than
  3428. the former, now both get updated to amotion. [Skotlex]
  3429. 2006/08/31
  3430. * Moved the intimacy penalty of HFLI_SBR44 and HVAN_EXPLOSION to
  3431. skill_counter_additional_effect [Skotlex]
  3432. * Simplified skillnotok_hom by using an invocation to skillnotok [Skotlex]
  3433. * Hopefully fixed BD_ADAPTATION [Skotlex]
  3434. * Homun won't lose any intimacy on death now. [Skotlex]
  3435. * Homun will be saved together with the master now (as long as the homun is
  3436. active) [Skotlex]
  3437. * Modified the error reporting in map_freeblock_unlock so that when there's
  3438. an error, the reported line number is the file's linenumber plus the
  3439. object's type *10000. This is for debug information to help track down the
  3440. already-freed error. [Skotlex]
  3441. * pc_adopt will now preserve the kid's job/job-level/experience. This means
  3442. that if you adopt a Swordman level 45, it will become a baby-swordman level
  3443. 45, with the exact same exp as before. [Skotlex]
  3444. * Fixed new mob's name not sent to the client when the mob is morphed [Toms]
  3445. * Added setting attack_walk_delay which specifies whether a character
  3446. should (or not) be able to move inmediately after starting a normal attack
  3447. (battle.conf). Defaults to 0 since that's what Aegis uses. [Skotlex]
  3448. * Fixed @summon's delete timer being screwed up. [Skotlex]
  3449. * Cleaned up a bit the summon script command. [Skotlex]
  3450. * Fixed the clone script command's delete-timer being screwed up. [Skotlex]
  3451. 2006/08/30
  3452. * Skill required-state will now only be checked on cast-begin, not
  3453. cast-end. [Skotlex]
  3454. * Added a check in status_calc_pc to prevent player rate adjustments from
  3455. from going below 0. [Skotlex]
  3456. * Removed sending normal-damage packets instead of skill packets for
  3457. splash-damaged skills, since... well, that's how Aegis does it. [Skotlex]
  3458. * Updated HLIF_CHANGE to work as explained by Tharis -> It now adds 30*lv
  3459. vit and 20*lv int, is dispelled on warp, and can-act delay is 5+5*lv
  3460. minutes. Hp/Sp is no longer set to 10 after a forced expiration. [Skotlex]
  3461. * Fixed up char-sql compilation. [Skotlex]
  3462. * Added a message to @clearweather stating when climate changes will
  3463. dispel. [Skotlex]
  3464. * Corrected @hidenpc saying that it's command name was "@npcoff" [Skotlex]
  3465. * Updated itemdb reading on the char-sql server so that it reads both
  3466. item_db and item_db2 files (totally untested yet) [Skotlex]
  3467. 2006/08/29
  3468. * Added printing out whenever the irc-module attempts to connect, to debug
  3469. whether the map-server lag is due to this or not. [Skotlex]
  3470. * Mobs will now always chase players using hard-path seeks. [Skotlex]
  3471. * monster_ai&1 now only signals whether mobs should update their target
  3472. cell while chasing more frequently (rather than being state-driven like
  3473. Aegis) [Skotlex]
  3474. * Changed the defaults of view_range_rate and chase_range_rate to 120 to
  3475. aproximate better Aegis's view ranges (which are square areas and not
  3476. circles) [Skotlex]
  3477. * Applied Mpeg's work on GS [Toms]
  3478. ( http://gpegon.free.fr/ea/gunslinger_08-29-06_mpeg.txt )
  3479. * Fixed a syntax error in @showmobs [Toms]
  3480. * Added @showmobs. It shows selected mobs on your mini-map (excluding
  3481. mini-bosses & MVP) thanks to KarLaeda for the command [Lupus]
  3482. 2006/08/28
  3483. * Modified the dancing code and Moonlit Petals in particular, so that it is
  3484. treated as an ensemble like any other, it will just knockback people when
  3485. they step into it. [Skotlex]
  3486. * The memory leak reports will now print out in the logs also the revision
  3487. they belong to. [Skotlex]
  3488. * Cleaned up the scriptable npc-shop code, it should be crash-proof now.
  3489. [Skotlex]
  3490. * Added TK level-up buffs to SG too, and extended them to 10 min [DracoRPG]
  3491. * Added "Barefeet Mastery" effect to TK_RUN (thanks Tharis for both) [DracoRPG]
  3492. * Changed the produce_db format, now there's a skill-lv column right after
  3493. the skill-id column to specify required skill-level to craft this item.
  3494. [Skotlex]
  3495. * Modified the skill produce_db code to take into account the new skill-lv
  3496. requirement. [Skotlex]
  3497. * Fixed exp bonuses applying twice for the job-exp [Skotlex]
  3498. * @reloadbattleconf will now also update the ragsrvinfo table on the
  3499. char-server. [Skotlex]
  3500. * Fixed homun hp/sp growth rates stacking with HP/SP passive increasing
  3501. skills. [Skotlex]
  3502. 2006/08/27
  3503. * Fixed undefined reference to 'malloc_set' in log.c [Toms]
  3504. * Updated svn-revision reading, now it can read the new svn file system [Toms]
  3505. * Fixed a bug with homunc which could spawn on a non-walkable cell [Toms]
  3506. 2006/08/26
  3507. * Optional macro MEMSET_TURBO for faster low-level memory initializations. [Lance]
  3508. * Small bug fix in read_homunculus_expdb (a warning was always displayed) [Toms]
  3509. * Small adjustment on the mob_ai code which could fix mobs not chasing you
  3510. if you hit them from the maximum possible diagonal distance. [Skotlex]
  3511. 2006/08/25
  3512. * Cleaned some the skill unit removal added flag so that it signals whether
  3513. the skill is being force-removed, or it has "naturally expired". [Skotlex]
  3514. * The following skills will display a normal attack animation now:
  3515. NPC_WATERATTACK, NPC_GROUNDATTACK, NPC_FIREATTACK, NPC_WINDATTACK,
  3516. NPC_POISONATTACK, NPC_HOLYATTACK, NPC_DARKNESSATTACK,
  3517. NPC_TELEKINESISATTACK, NPC_SPLASHATTACK
  3518. * Skills that require a weapon and consume spirit spheres will no longer be
  3519. auto-tagged to require ammo. [Skotlex]
  3520. * Now MISC skills with delay 0 will also use the attack delay (if the skill
  3521. is tagged to do damage) [Skotlex]
  3522. * Added script commands roclass/eaclass to enable scripts to access eA's
  3523. job format. Read script_commands.txt and ea_job_system.txt for a more
  3524. complete explanation of how this job system works. [Skotlex]
  3525. * Added a flag to skill_delunitgroup, skill_delunit & skill_unit_onlimit.
  3526. If 1 is passed, it will avoid UNT_WARP_ACTIVE to be transformed in
  3527. UNT_WARP_WAITING and will destroy it. [Toms]
  3528. ( To avoid such crash : http://www.eathena.ws/board/index.php?showtopic=114102
  3529. when the code need an empty slot and the oldest one is UNT_WARP_ACTIVE )
  3530. 2006/08/24
  3531. * Little cleanup on homunc's code [Toms]
  3532. * Modified @reloadmobdb & @reloadskilldb to reload homunc's db too [Toms]
  3533. * Now when a mob's adelay is set to be less than the amotion, both values
  3534. will be swapped (this is an attempt to understand how those mobs actually
  3535. work on aegis) [Skotlex]
  3536. * script command "isrefine" will no longer return always false for equip
  3537. positions above 6 (this has not been needed since the addition of the
  3538. refine column to tbe item_db many months ago) [Skotlex]
  3539. * Added NPC_CRITICALSLASH to the list of skills that display as a normal
  3540. attack. [Skotlex]
  3541. * Reverted the previous change, changed the pet capture code to try to
  3542. capture a mob based on their view class rather than actual class.
  3543. [Skotlex]
  3544. * Fixed the md->class_ variable not being updated when a mob's class is
  3545. changed. [Skotlex]
  3546. * Added setting clear_skills_on_warp to specify when a character's
  3547. land-based skills are deleted when the caster changes maps. Defaults to all
  3548. types. [Skotlex]
  3549. * Should have fixed Brandish Spear not passing the flag to skill_attack,
  3550. causing it to do miserable damage. [Skotlex]
  3551. * Warp Portal will no longer be removed when caster steps through it (this
  3552. is left to the new clear_skills_on_warp setting) [Skotlex]
  3553. * Cleaned up status_percent_change to switch equations when the target has
  3554. high hp to prevent overflows, also it will directly take hp/maxhp when a
  3555. rate of 100 or higher is passed to prevent calculations. [Skotlex]
  3556. * Traps and Land Elemental fields are no longer automatically removed on
  3557. map change (handled now by clear_skills_on_warp) [Skotlex]
  3558. * traps_setting &2 no longer does anything (handled now by blah blah)
  3559. [Skotlex]
  3560. * Applied some change from mpeg on Ninja Skills [Toms]
  3561. * Put HVAN_Explosion based on max_hp instead of current hp [Toms]
  3562. 2006/08/23
  3563. * Fixed mob_clone_spawn completely ignoring the mode variable. [Skotlex]
  3564. * Fixed Energy Coat reducing and consuming more than it should when you
  3565. have 100% SP [Skotlex]
  3566. * Cleaned up getmapxy script function, also added support for type 4 so
  3567. that it returns a player's homunculus position if such exists. [Skotlex]
  3568. * SC_ARMOR_ELEMENT looks like gone away from status_change_start since ... rev 6791.
  3569. Try to reimplement it. [Toms]
  3570. * Fixed HVAN_EXPLOSION [Skotlex]
  3571. * Frost Nova won't display a nodamage skill packet (still need to sort out
  3572. a way to fix the splash damaged packets) [Skotlex]
  3573. * Fixed a possible SIGSEGV on buildin_maprespawnguildid if the map is unknown [Toms]
  3574. * Added debug on "Inifity loop" to know which script is making this loop [Toms]
  3575. 2006/08/22
  3576. * More fixes to the splash code. Kamaitachi and Sharpshooting should
  3577. display correctly now. [Skotlex]
  3578. * Fixed a crash on the mobspawn script command. [Skotlex]
  3579. * Made SC_FLEET increase batk as well as watk. [Skotlex]
  3580. * Fixed gcc warning [Toms]
  3581. * Fixed AM_REST not closing the homunc status window [Toms]
  3582. * Fixed SC_NEN according to Mpeg [Toms]
  3583. * Added a ShowStatus("Terminating...\n") on login-server_sql [Toms]
  3584. * Some corrections to make Tatami Gaeshi work correctly. [Skotlex]
  3585. * Fixed SBR44 doing 100% more damage than it should. [Skotlex]
  3586. * Some more work on the splash skill code. Now splash-damaged enemies
  3587. should show no animation at all, just the damage-number, while only the
  3588. targetted character should still display the full skill animation.
  3589. [Skotlex]
  3590. * Modified the homun-txt file-save format to separate the name from the
  3591. rest of fields with tabs (like character saving does), this may fix homun
  3592. save/loading when using non-latin characters on the name, but be warned
  3593. that it also means the previous homun-data files are lost! (unless you
  3594. replace the comma before the start of a name with a tab) [Skotlex]
  3595. * getnameditem will now also work on stackable items [Skotlex]
  3596. * Corrected battle_calc_weapon_attack so that all skills ignore your
  3597. left-hand weapon, and that the Katar's double-attack damage bonus for the
  3598. offhand damage applies ONLY on normal attacks. [Skotlex]
  3599. * Fixed Resurrect Homunculus's % to 20*lv% [Skotlex]
  3600. * Added SQL update which should remove \' from guild names [Toms]
  3601. * Added option to disable character deletion of certain levels [Lupus]
  3602. check char_athena.conf for this option format
  3603. 2006/08/21
  3604. * Some more cleaning up of the splash skill code. Now the passed hit value
  3605. for the splash targetted mobs is 9 instead of 5, this allows multi-hitting
  3606. splash skills to display the number of hits correctly. [Skotlex]
  3607. * Fixed call homunc bug when the homunc was vapo and the master has change
  3608. of map [Toms]
  3609. * Fixed SQL-Guild Creation, guild name was escaped 2 times [Toms]
  3610. * Some cleaning of the splash skills. Updated skill-attack to enable again
  3611. passing of flag 0xF000 which signals that the skill level sent to the
  3612. client should be -1 (no skill name shouted). Should (hopefully) clear/clean
  3613. up a bunch of splash damage skill animation-related packets. [Skotlex]
  3614. * Homun saving won't cap hp/sp to max hp/sp since a homun can have higher
  3615. hp/sp than the one stated in the db (due to skill bonuses or status
  3616. changes) [Skotlex]
  3617. * Cleaned up some more the regen_data structure, so that
  3618. skill/sitting-skill related data is optional (since only players have it).
  3619. [Skotlex]
  3620. * Fixed AM_RESURRECTION, thanks to RockmanEXE for %HP values [Toms]
  3621. * Fixed HAMI_CASTLE, HAMI_DEFENCE & HLIF_AVOID [Toms]
  3622. * Adjusted Glittering's success rate to 20+10*lv% [Skotlex]
  3623. * Corrected isequipped() so that cards will not be tagged as "used up"
  3624. unless all the specified items were found. [Skotlex]
  3625. * Fixed a confusion in skill_attack using the src instead of dsrc for some
  3626. calls, which was causing some problems with the KAITE check from AoE
  3627. spells. [Skotlex]
  3628. * Fixed ASC_BREAKER's misc damage part not having the ignore-element flag
  3629. set. [Skotlex]
  3630. * Moved homunc battle conf from misc.conf to homunc.conf [Toms]
  3631. * Some cleaning in skill.c in regard to homun skills. [Skotlex]
  3632. * Madness Canceller now stacks with other aspd bonuses, just like Berserk
  3633. does. [Skotlex]
  3634. * Removed config setting "muting_players", and expanded the manner_system
  3635. config to specify how having negative manner (mute) affects a player (see
  3636. battle/misc.conf). [Skotlex]
  3637. * Expanded the pk_mode setting from no/yes to 0/1/2. 1 is normal pk_mode,
  3638. if 2 is used, it makes killing players give you a loss of 5 manner points.
  3639. [Skotlex]
  3640. * Fixed WS_WEAPONREFINE always failing when at less than job 50. [Skotlex]
  3641. * Fixed the Autosave routine not working when there's only one player
  3642. online. [Skotlex]
  3643. * Disabled command @rain since the client no longer supports it anyway.
  3644. [Skotlex]
  3645. * Fixed delitem not checking for the first slot's card, also optimized it
  3646. so that it doesn't checks on the other slots. [Skotlex]
  3647. 2006/08/20
  3648. * Added a check during mob_db loading so that the six basic stats, max hp
  3649. and max sp are never below 1, as this could cause crashes when using
  3650. certain skills. [Skotlex]
  3651. * Gravitation now only blocks the caster from using potions. [Skotlex]
  3652. * Corrected Madness Canceller letting you walk while the effect lasts.
  3653. [Skotlex]
  3654. * Splitted yet again ASC_BREAKER into a two-part attack. This time the
  3655. int-based damage is a MISC type attack, and gets reduced by skills as such.
  3656. [Skotlex]
  3657. * Fixed "int format, long unsigned int arg" warning [Toms]
  3658. * Fixed a warning when using cap_value(x, 0, x) on an unsigned value [Toms]
  3659. * Added clif_skill_fail for homunc to skill_castend_id & skill_castend_pos [Toms]
  3660. * Fixed homunc skill 8016 not considered as homunc skill [Toms]
  3661. * @useskill will now cause your homun to use the skill instead of you if
  3662. the skill is a Homun skill and you have an active homunculus. [Skotlex]
  3663. * Reduced the Success Chance of GS_FLING to 10+10*lv% (Playtester told me
  3664. that Vicious told him the chance was much lower like that) [Skotlex]
  3665. * Fixed some Homunc issues with HR servers (capping some values) [Toms]
  3666. * Added @hominfo command to obtain real values (not capped ones) [Toms]
  3667. 2006/08/19
  3668. * Fixed @homlvup bug [Toms]
  3669. * Fixed AM_REST & AM_RESU consumming SP if they fail [Toms]
  3670. * Fixed homunc spawning bug (they was spawned after an AM_REST + master warp for example)[Toms]
  3671. * Fixed GS_GROUNDDRIFT [Skotlex]
  3672. * Increased chance of GS_DESPERADO connecting to 20% [Skotlex]
  3673. * Fixed battle_calc_base_damage being called for the left hand even for
  3674. non-dual-wielding attacks. left-hand damage was being set to 0 later
  3675. anyway, so no exploit existed. [Skotlex]
  3676. * Moved the weapon_atk_rate bonus to battle_calc_base_damage so that it'll
  3677. apply correctly when dual-wielding different types of weapons. [Skotlex]
  3678. * Fixed job-mask 0x100000 in the item_db enabling Dancers/Bards to use the
  3679. items (0x80000 should be for them and 0x100000 should be currently unused)
  3680. [Skotlex]
  3681. * Fixed a possible sigsegv when deleting lif under Mental Change [Toms]
  3682. * Fixed HAMI_CASTLE [Toms]
  3683. * Fixed HLIF_CHANGE [Toms]
  3684. * Updated HLIF_BRAIN skill [Toms]
  3685. * Fixed homunculus intimacy on feeding [Toms]
  3686. * Added homunculus_friendly_rate battle config [Toms]
  3687. * Some compilation warnings fixed [Toms]
  3688. * Added skill's required item check on homunc skills [Toms]
  3689. * Add Condensed Red Potion as a required item for HLIF_HEAL [Toms]
  3690. 2006/08/18
  3691. * Little code cleanup on last fix [Toms]
  3692. * Fixed HLIF_HEAL healing the homunc instead of the master [Toms]
  3693. * Fixed HLIF_AVOID not increasing walk speed of master [Toms]
  3694. * Fixed the atk_rate (Turtle General Card) bonus not working on
  3695. dual-wielders. [Skotlex]
  3696. * Made HLIF_HEAL a self skill that auto-selects target to caster's master.
  3697. [Skotlex]
  3698. * Implemented SC_BLOODLUST and SC_CHANGE, cleaned up HLIF_CHANGE [Skotlex]
  3699. * Applied a correction to HVAN_EXPLOSION [Skotlex]
  3700. * Fixed Homun ASPD calculation being able to underflow and give you min
  3701. speed. [Skotlex]
  3702. * Added monster_ai&128 to make aggressive mobs ignore that behaviour of
  3703. always picking Homun targets above player targets regardless of who is
  3704. closer. [Skotlex]
  3705. * Fixed homun info packet being unable to display HP/SP correctly once the
  3706. values are above 32k. [Skotlex]
  3707. * Applied Mpeg's work on ninja [Toms]
  3708. * Fixed @homlvup [Toms]
  3709. * Added guild_aura (skill.conf) setting so you can specify when it works
  3710. and if it works on the guild-master itself. Defaults to working all the
  3711. time on everyone except GM. [Skotlex]
  3712. * Little code cleanup [Toms]
  3713. * Cleaned merc_hom_evolution to avoid free'ing/realloc'ing [Toms]
  3714. * Fixed "args of aFree is freed pointer" on Homunc deletion [Toms]
  3715. * Changed unit_free so that it receives which cleartype should be used when
  3716. the character is still on a map. Used this on status_damage so that mobs
  3717. that do not respawn when killed will properly display the death animation.
  3718. [Skotlex]
  3719. * Fixed Energy Coat consuming 10x less SP per hit than it should.
  3720. * Fixed signed/unsigned comparison issues with natural heal system [Toms]
  3721. 2006/08/17
  3722. * Vaporize will no fail when the homun is dead. [Skotlex]
  3723. * Corrected thhe double free issue that occurs when a homun dies and has no
  3724. intimacy left. [Skotlex]
  3725. * Fixed the charsave_method:1 saving/loading exp as signed ints rather than
  3726. unsigned. [Skotlex]
  3727. * Applied use of structure regen_data for a unified regen module. Natural
  3728. and skill-heal is handled by this structure, while sitting-skill-heal is
  3729. still player dependant (mostly because the other object types can't sit)
  3730. [Skotlex]
  3731. * Cleaned up the status calc code for homun by moving it from
  3732. status_calc_bl_sub_homun to status_calc_homun (where it should had always
  3733. been) [Skotlex]
  3734. * Updated SQL files [Playtester]
  3735. * Corrected map_random_dir algorithm [Toms]
  3736. * Fixed homunc natural heal and little code cleanup [Toms]
  3737. * Changed AM_CALLHOMUN Skill to spawn the homunc at 1 cell from his master [Toms]
  3738. 2006/08/16
  3739. * Fixed being unable to recast Adrenaline Rush to reset the duration
  3740. timers. [Skotlex]
  3741. * Cleaned up skill_get_range2 so that using range 0 for non-self skills
  3742. uses the caster's attack range. [Skotlex]
  3743. * Fixed AM_CALLHOMUN checking for an embryo when you have a vaporized
  3744. homun. [Skotlex]
  3745. * Spirit of Wizard will now consume an item 7321 each time it blocks
  3746. reflected magic. [Skotlex]
  3747. * Added script command jobname, retrieves a given's class name as per the
  3748. appropiate msg_athena.txt entry (this command should had been added years
  3749. ago) [Skotlex]
  3750. * Fixed null-pointer crash on Evolving a homunculus. [Skotlex]
  3751. * @produce now can make any kind of equipment [Skotlex]
  3752. * Made HLIF_AVOID and HAMI_DEFENCE cause the status change on both caster
  3753. and target. [Skotlex]
  3754. * AM_REST shouldn't be checking for a range now (since it's a self skill)
  3755. [Skotlex]
  3756. * Updated mob_ai so that mobs will use their rude-attacked skill when they
  3757. can't reach their current target. [Skotlex]
  3758. * Fixed the default txt config making pets be saved to the homun file
  3759. instead of to the pet file. [Skotlex]
  3760. * Now arrow-consuming skills where your main weapon is a whip or musical
  3761. instrument WILL count as arrow-type attacks, using the atk of the arrow and
  3762. all related bonuses. [Skotlex]
  3763. * Fixed some homun timer initialization code. [Skotlex]
  3764. 2006/08/15
  3765. * Applied multiple fixes which should take care of making homun save/load
  3766. work on TXT now. [Skotlex]
  3767. * Added Gatling Fever's batk bonus. [Skotlex]
  3768. * Some cleaning in status_damage which should prevent trying to free
  3769. already free'd pointers when unit_remove_map invokes unit_free (when
  3770. status_damage was going to invoke unit_free anyway) [Skotlex]
  3771. * Delete homunc's skills from sql when the homunc is destroyed [Toms]
  3772. * Homunc Timers should be disabled when the homunc is vaporized or dead an re-enabled on call/resu [Toms]
  3773. * Updated vc-project files to compile with the new int_homun files.
  3774. [Skotlex]
  3775. * Hopefully fixed the crash when using charsave_method = 1 [Skotlex]
  3776. * Moved s_pet structure from map_session_data to pet_data, this enabled the
  3777. removal of a few redundant values in the pet_data structure (name, class,
  3778. equip) [Skotlex]
  3779. * Cleaned up some of the pet related @/# commands, same for some script
  3780. commands. [Skotlex]
  3781. * Pet offensive skills who's inf value is self will be casted on the pet
  3782. now (for stuff like Grand Cross) [Skotlex]
  3783. * Added homun saving/loading support to char-TXT. Note that this is
  3784. completely untested, so it may be as good as broken. [Skotlex]
  3785. * Added a crash-fix on status_calc_bl_sub_homun to abort in case the homun
  3786. has no master (need to clean up this function later) [Skotlex]
  3787. * Tested char-txt load/save, it seems to be working fine, but you should
  3788. STILL backup, as I only launched the server (read old character format),
  3789. closed it down (saved into the new format) and relaunch it (read the new
  3790. format) and it didn't give problems (but there's still the possibility of
  3791. some field being read in the incorrect offset or such). [Skotlex]
  3792. * Updated the char save structure for char-TXT servers so that the homun id
  3793. will be saved, now also the map info (last point, save point, memo maps)
  3794. are now saved using the mapindex rather than the string. BACKUP BEFORE
  3795. UPDATING since this code isn't yet tested. [Skotlex]
  3796. * Cleaned up a bit the char-saving code, added overflow crash prevention in
  3797. case there are more memos than the max-allowed saved. [Skotlex]
  3798. * AM_CALLHOMUN can now be used to recall vaporized homuns. [Skotlex]
  3799. * AM_RESURRECTHOMUN will now fail when the homun is vaporized. [Skotlex]
  3800. * Added SCB_DYE which marks which status-changes need a forced cloth dye
  3801. change to 0 due to sprite issues. Currently only NJ_BUNSINJYUTSU's status
  3802. uses it. [Skotlex]
  3803. * Asura Strike now moves you to the target on fail always (unless the
  3804. target does not exists or is in another map or there's a obstacle on the
  3805. way) [Skotlex]
  3806. * Corrected skill_attack_area hitting dead characters on it's splash range.
  3807. [Skotlex]
  3808. * Swapped the values for OPTION_XMAS and OPTION_FLYING. This should enable
  3809. SG to show the fly animation again, even if sometimes others will see him
  3810. as Santa. As for xmas cloth, it shouldn't make much of a difference since
  3811. the view class is changed to christmas anyway. [Skotlex]
  3812. * Made AM_CALLHOMUN and AM_RESURRECTHOMUN be like the wedding skills, where
  3813. they automatically pick a spot around you. [Skotlex]
  3814. * Cleaned up some the AM_RESURRECTHOMUN code. Hopefully it works now.
  3815. [Skotlex]
  3816. * Cleaned up some the hom evolution code. [Skotlex]
  3817. * Fixed SIGSEGV with homunc save [Toms]
  3818. 2006/08/14
  3819. * Removed support for negative autosave intervals, instead added a
  3820. minsave_interval setting which specifies which is the minimum time between
  3821. character saves. Default to 100ms (map_athena.conf). [Skotlex]
  3822. * Sacrifice no longer shows damage to self. [Skotlex]
  3823. * When Asura fails, the skill display will still come off. [Skotlex]
  3824. * Lots of cleaning of the Homun-code. Perhaps the crashes as of late will
  3825. be fixed now (reusing AM_CALLHOMUN seems to be the cause of them)
  3826. [Skotlex]
  3827. * Increased Run's walk speed bonus to 25->50% [Skotlex]
  3828. * Modified emergency_call setting to allow for more specific configuration
  3829. (woe/non-woe, gvg-grounds/non-gvg-grounds, disable from nowarpto maps), see
  3830. skill.conf for details. [Skotlex]
  3831. * Fixed script engine allowing scripts to set a player's zeny to negative
  3832. values. [Skotlex]
  3833. * Fixed setting hide_woe_damage making even "miss" attacks seem to connect.
  3834. [Skotlex]
  3835. * When readjusting the fame-list, the last entry's id is also reset (may
  3836. fix characters appearing more than once on it?) [Skotlex]
  3837. 2006/08/13
  3838. * Removed @itemcheck as it was totally pointless. [Skotlex]
  3839. * Corrected states killer/killable being easily dispellable. [Skotlex]
  3840. * Fixed the totally wrong text messages being used for @killer/@killable
  3841. related atcommands, added appropiate entries to msg_athena [Skotlex]
  3842. * Magic and Misc attacks will now get type "flee" when they do less than 1
  3843. damage, this blocks them from causing additional status effects when they
  3844. are blocked. [Skotlex]
  3845. * Cleaned up a bit the Basilica code, it should now properly end when you
  3846. walk. [Skotlex]
  3847. * Fixed some logs not working when you enabled all logs. [Skotlex]
  3848. * Corrected unmute being a level 60 command by default (should be 80)
  3849. [Skotlex]
  3850. * Corrected the mapif_parse_PartyChangeMap function to correctly update
  3851. level-range when someone logs on/off, fixes being unable to set even-share
  3852. on once it's been broken even when the characters out of range logoff.
  3853. [Skotlex]
  3854. 2006/08/11
  3855. * Fixed Kagebunshin no Jutsu crashing for dyes > 0; though this solution
  3856. might seem hackish (changing clothes colour to 0 when it starts while
  3857. storing original colour back in val4, restoring original dye upon
  3858. end), I believe this is the best way there currently is to solve
  3859. the issue. [blackhole89]
  3860. * Fixed Dancers/Bards being able to use normal attacks while performing.
  3861. [Skotlex]
  3862. 2006/08/10
  3863. * Fixed the item group bonus not working. [Skotlex]
  3864. * Fixed songs/dances always being considered overlapped with themselves.
  3865. [Skotlex]
  3866. * Added some additional song/dance overlap code that should correctly
  3867. change the effect of songs/dances when they overlap. [Skotlex]
  3868. * Added a check so that the status-change packet is always send to self
  3869. when the inflicted char is a player disguised. [Skotlex]
  3870. * Code cleanup on homunc, they stay in memory until player disconnect or
  3871. homunc destruction [Toms]
  3872. * Corrected Advanced Jobs HP bonus from 30% -> 25% [Skotlex]
  3873. * Hopefully fixed family-party-even-share not breaking when a member logs
  3874. out. [Skotlex]
  3875. * Should have fixed the login-sql crash when passed user-name's length is
  3876. beyond the limit. [Skotlex]
  3877. * Changed setting attack_attr_none to affect all neutral-element attacks.
  3878. Basicly, this setting is now used to determine who can hit for full damage
  3879. always when using neutral-attacks (defaults to non-players) [Skotlex]
  3880. * Fixed two instances in the login-sql server where the ip in the log-login
  3881. table was being stored backwards. [Skotlex]
  3882. * Now when a skill's range is 0 and the skill is NOT casted on self, it
  3883. will take the basic weapon's range (without Vulture/Snake Eye bonus).
  3884. [Skotlex]
  3885. * Now when a duration is not specified, sc_start/sc_start2/sc_start4 will
  3886. try to guess the duration by extracting it from the skill_db (it uses
  3887. skill_get_time on whatever skill is associated to the status-change using
  3888. val1 as skill-level) [Skotlex]
  3889. * Some cleanups on trade_tradeaccept to prevent packets being resent when
  3890. they shouldn't. [Skotlex]
  3891. * Fixed syntax error in 'guild' create table statement [Toms]
  3892. 2006/08/09
  3893. * Fixed Asura not wasting all SP away when it fails on cast-end. [Skotlex]
  3894. * Fixed homunc skill up bug [Toms]
  3895. * Adjusted some the dance/song/encore code so that the source of an
  3896. ensemble will always get checked, so that walking out of an ensemble skill
  3897. should make it end now. However, it's likely this is not completely solved
  3898. yet and will require further tweaking. [Skotlex]
  3899. * Added crash protection to the mob_db txt reading when the mob_db file has
  3900. lines with insufficient number of columns. [Skotlex]
  3901. * Moved the class-change code from battle_calc_weapon_attack to
  3902. skill_additional_effect. Alchemist summons now also have a chance of
  3903. triggering polymorphing. [Skotlex]
  3904. * Removed the code which was auto-setting attacks that do no damage to type
  3905. FLEE, since that was disabling status-effects which should incur even when
  3906. the damage was blocked. [Skotlex]
  3907. * Trade requests will now fail when either character is unable to act
  3908. (character in storage, vending, interacting with an npc, petrified, etc)
  3909. [Skotlex]
  3910. * Heard skotlex voice, changed all msg_table[] into msg_txt() in atcommand.c [Toms]
  3911. 2006/08/08
  3912. * Fixed the char-server not invoking the party_calc_state function when the
  3913. third party-member is added to a party, hence failing to check for families
  3914. and disabling even share from them unless all three relog first (state is
  3915. correctly calculated when party is first loaded). [Skotlex]
  3916. * Crash-protections in the mail-checking function. [Skotlex]
  3917. * Some additional parenthesis on equipment check in pc_equipitem, seems to
  3918. have fixed the mid/lower headgear-sprites not showing up. [Skotlex]
  3919. * Added back missing state set to prevent Ankle-Snare from being retrieved
  3920. after the target dies. [Skotlex]
  3921. * Fixed compilation warning [Toms]
  3922. * Added a check to handle Spider Web as a targetted skill. If there's more
  3923. than one character on the targetted cell, a different one may get trapped,
  3924. but it will mostly do as it is now. [Skotlex]
  3925. * Added check to Asura so that it will move you to the target when it fails
  3926. ONLY when you can cast the skill on the target (not stunned, asleep, target
  3927. not hidden, etc) [Skotlex]
  3928. * Changed the map_freeblock_unlock code so that when there's an "already
  3929. free'd pointer" error, the memory manager will print out the invoking
  3930. function rather than map_freeblock_unlock, this should help fix it up next
  3931. time it happens and is reported. [Skotlex]
  3932. * Casting Kaensin will clear out Suiton and viceversa now. [Skotlex]
  3933. * Fixed drop-rates (@whodrops) getting duplicates when you use @reloadmobdb
  3934. [Skotlex]
  3935. * Fixed unjailing not sending characters to Prontera. [Skotlex]
  3936. * Fixed yet again AS_SPLASHER doing full damage on all characters. Now you
  3937. can use the NK split damage value in the skill_db if you want damage
  3938. divided by the amount of targets rather than by 2. [Skotlex]
  3939. * Fixed crash on the battle_drain functions. [Skotlex]
  3940. * Cleaned up HAMI_CASTLE, HLIF_AVOID, HAMI_DEFENCE so that it's usable by
  3941. other types of objects other than Homunculus. [Skotlex]
  3942. * Cleaned up the Asura Strike code so that the SP/Spheres/States is not
  3943. consumed when the skill fails due to Fog of Wall. [Skotlex]
  3944. * When a negative delay for a skill is specified, this delay is now added
  3945. on top of the character's amotion rather than adelay [Skotlex]
  3946. * Modified main.sql to make the guild table allow NULL on the emblem data.
  3947. [Skotlex]
  3948. * Added file conf-tmpl/Changelog.txt to log config changes. [Skotlex]
  3949. 2006/08/07
  3950. * Fixed the login-sql server replying to the change-sex packet with the
  3951. wrong gender, causing the char-server to screw-up job-change updates.
  3952. [Skotlex]
  3953. * Cleaned up the apparent mess that is pc_skill. Hopefully it SHOULD work as
  3954. described on the docs now, this should also fix adopting not correctly
  3955. giving the family-related skills. The flag value of skill should be: 0 to
  3956. set the skill (if skill level is 0, this removes a learned skill), 1 grants
  3957. the skill as an item bonus which is temporary, and 2 will add a skill bonus
  3958. like 1, except the skill level adds up to whatever level already known of
  3959. that skill. [Skotlex]
  3960. * Fixed EQP_WEAPON related code messing up with both weapon AND shield.
  3961. [Skotlex]
  3962. * Cleaned up the Asura code so that when the skill fails your
  3963. SP/Spheres/Fury are all taken away always, as well as moving you next to
  3964. the target (as long as the target still exists within a reachable path from
  3965. your position) [Skotlex]
  3966. * SC_GUILDAURA is now removed on logout. [Skotlex]
  3967. * Fixed Venom Splasher doing half-damage instead of full-damage to the
  3968. "exploding" character. [Skotlex]
  3969. * Hopefully fixed the party_even_share cast-overflow bug as reported by
  3970. Adobe. [Skotlex]
  3971. * Standarized the autosave interval setting to be always in seconds
  3972. regardless of type. [Skotlex]
  3973. * Moved the "bosses can't be knockback" logic from battle_calc_* functions
  3974. and placed it on skill_blown. [Skotlex]
  3975. * Some parenthesis cleanup before invoking battle_calc_base_damage, could
  3976. be fixing the current issue with arrow attacks not adding the arrow damage.
  3977. [Skotlex]
  3978. * Fixed the map_search_freecell error which was making mobs fail to
  3979. respawn. [Skotlex]
  3980. * Added in Lupus's suggestion of not making multi-slot headgears set all
  3981. slot view-ids, which supposedly causes the client to re-draw the headgear
  3982. multiple times on characters. [Skotlex]
  3983. * Fixed HT_BLITZBEAT hitting neutral characters when it auto-triggers.
  3984. [Skotlex]
  3985. * Simplified the Tatami Gaeshi code. [Skotlex]
  3986. * Fixed AS_SPLASHER doing full damage on everyone except targetted char
  3987. instead of the other way around. [Skotlex]
  3988. * Fixed KAENSIN clearing out SUITON cells and viceversa. [Skotlex]
  3989. * The spawn area is now seen as range rather than absolute for mob spawn
  3990. lines. This means that x,y,10,10 will spawn the mob on a 21x21 grid around
  3991. the given x,y point. [Skotlex]
  3992. * Some clean up of the mob-spawn code. Now you can specify negative areas,
  3993. so that a spawn location such as 100,150,0,-1 will spawn a mob always on
  3994. x=100, but any Y value of the current map. [Skotlex]
  3995. * Reflected damage will now also have a chance of draining hp/sp. [Skotlex]
  3996. * Adjusted the order in which option/sc change packets are sent to match
  3997. Aegis's [Skotlex]
  3998. * Added script command getpartyleader through which you can retrieve
  3999. various information of a party's leader. See doc/script_commands.txt for
  4000. further information. [Skotlex]
  4001. * mpeg's Ninja work [Vicious]
  4002. * Adjusted Battle_check_target so that alchemist summoned mobs are
  4003. targetted by everyone as long as 1. The top-level master is a player and 2.
  4004. the actual attacker is not a mob-type. [Skotlex]
  4005. * Added config force_random_spawn which overrides the spawn-files defined
  4006. coordinates to make all mobs always spawn randomly on the map. [Skotlex]
  4007. * SC_SPEEDUP0 is no longer dispellable by SA_DISPEL [Skotlex]
  4008. 2006/08/06
  4009. * Updated item_db.sql & mob_db.sql to latest. [Toms]
  4010. * Little fixes on homunc (hp/sp are now saved and init stats changed) [Toms]
  4011. 2006/08/04
  4012. * Added a commented piece of code at the end of clif_parse_LoadEndAck which
  4013. will update your direction to wherever you were facing before warping.
  4014. Should this be the default? Nearby people DO see you facing on the same
  4015. direction before warping, it's only your client that will always see you
  4016. facing north on spawn (the spawn packet does contain direction
  4017. information). [Skotlex]
  4018. * Updated @mobinfo to display slots in the drop information. [Skotlex]
  4019. * Fixed flag.elefix not being respected in battle_calc_misc_damage.
  4020. [Skotlex]
  4021. * Some code cleanups in battle_calc_damage. [Skotlex]
  4022. * Modified bAddItemHealRate so it can receive both item-id and item-group
  4023. values (since the first item-id is +500, there's no risk of mixing them
  4024. up). [Skotlex]
  4025. * Removed settings enemy_critical_rate, homun_critical_rate. Added settings
  4026. enable_critical (defaults to specify only players), mob_critical_rate and
  4027. critical_rate. The last applies to all non-mobs and non-players
  4028. (battle/battle.conf) [Skotlex]
  4029. * Removed settings mob_npc_warp, mob_warpportal. Replaced with setting
  4030. mob_warp which specifies which types of warp can a mob step into
  4031. (battle/monster.conf) [Skotlex]
  4032. * Enabled Mastery damage on Soul Breaker again, moved adv katar mastery out
  4033. of the mastery function so that it may apply to all skills except Soul
  4034. Breaker. [Skotlex]
  4035. * Changed name of the setting log_pick to log_filter since that's what it
  4036. does now. [Skotlex]
  4037. * Modified enable_logs so that instead of a 0/1 setting, you can specify
  4038. which kind of events to log (so you can use a combination), see log_athena
  4039. for the bitmask configuration. [Skotlex]
  4040. * Cleaned a bit the contents of log_athena.conf
  4041. * Hide/Chasewalk will again stop screaming skill name. [Skotlex]
  4042. * Soul Breaker will no longer receive Mastery damage. [Skotlex]
  4043. * Fixed warning:'type' might be used uninitialized in this function [Toms]
  4044. 2006/08/03
  4045. * Added a check to skip the experience share of characters who are dead or
  4046. on another map. [Skotlex]
  4047. * Reverted the previous change, chasewalk has no icon, only the str-bonus
  4048. has that fist icon now. [Skotlex]
  4049. * Allowed chase-walk to display a skill animation when using it. [Skotlex]
  4050. * Readjusted the Chasewalk icon to be as it should be. [Skotlex]
  4051. * GS_DESPERADO is now a short-range attack skill. [Skotlex]
  4052. * Changed the Battle-Orders icon to be the Strength Up icon (for
  4053. Chasewalk's str bonus). [Skotlex]
  4054. * Fixed using the right-hand weapon's size modifiers regardless of which
  4055. weapon's damage was being calculated in regards to. [Skotlex]
  4056. * Simplified the ignore-size check by making the Weapon Perfection check be
  4057. done when specifying the flag, also moved the size-fix property of riding
  4058. spear-knights to status_calc_pc. [Skotlex]
  4059. * Changed SI_CHASEWALK value to 119 as concluded by LoneWolf [Skotlex]
  4060. * Corrected clif.c sending the raw mdef2 value to the client instead of
  4061. first substracting the "secret vit/2" bonus from it. [Skotlex]
  4062. * Added a damage cap to CR_ACIDDEMONSTRATION of INT_MAX/2 to prevent
  4063. overflows. It is not capped to INT_MAX because damage increasing skills
  4064. would cause it to still overflow afterwards. [Skotlex]
  4065. * Fixed NPC_CRITICALSLASH not being considered as a Critical hit by the
  4066. code. [Skotlex]
  4067. * Added RUDE_ATTACKED_COUNT so you can easily adjust how many rude-attacks
  4068. should happen before a mob uses the rude-attacked skill. Value has been set
  4069. to 2 for now. [Skotlex]
  4070. * Now when a mob changes target (to someone they can hit) their
  4071. rude-attacked count won't be reset, but instead will be reduced by one.
  4072. [Skotlex]
  4073. * SC_SPEEDUP0 can now stack with the other speed raising buffs. [Skotlex]
  4074. * Some adjustments so that the last-skill-used will be correctly cleared
  4075. when your combo-time ends. [Skotlex]
  4076. * Fix a bug in atcommand_charspeed [Toms]
  4077. * Fixed a logic error preventing from cooking anything [DracoRPG]
  4078. * Cleaned up the last NJ update code. [Skotlex]
  4079. * Added @ command `charspeed` [Skotlex]
  4080. * Fixed @jailfor using MAP_PRONTERA as jail instead of MAP_JAIL [Skotlex]
  4081. * Removed case for GS_SPREADATTACK on damage packets to see if the skill
  4082. displays correctly now. [Skotlex]
  4083. * Corrected Deluge/Volcano/V. Gale overlaps so that the placing tiles are
  4084. removed, NOT the ones who were already placed. [Skotlex]
  4085. * Made SC_SPEEDUP0 and SC_SPEEDUP1 use different icon IDs, to fix
  4086. icon-confusion when both are enabled at a time. [Skotlex]
  4087. * Mob rude-attacked count is not reset now on picking a new char (gotta
  4088. investigate this further) [Skotlex]
  4089. * Changed atoi to strtoul for guild-experience's field [Toms]
  4090. * Fixed a bug in int_storage.c, temp array doesn't have the good size [Toms]
  4091. 2006/08/02
  4092. * Modified yet again SC_SILENCE after iRO tests from Entwined on IRC.
  4093. Silence now ONLY blocks skills from being used, it will not stop on-going
  4094. casts. [Skotlex]
  4095. * Updated status_cast_cancel to also include silence (so the cast bar is
  4096. cancelled if you are silenced during it) [Skotlex]
  4097. * Updated the way SC_SILENCE works. From what I remember (from previous
  4098. forum discussions) it: 1- Always blocks skills from being used. 2- Will
  4099. only block a skill when the cast-bar ends IF the skill is targetted. If
  4100. anyone wants to debate to get this changed, make an appropiate forum topic
  4101. in the svn development area to discuss. [Skotlex]
  4102. * Added a check in the walking code when triggering skills.
  4103. NPC_SELFDESTRUCTION will no longer cancel walking, it will instead resend
  4104. the walk packet, this effectively causes the mob to start walking
  4105. (clientside) while the cast-bar is showing. [Skotlex]
  4106. * Fixed a logic error on battle_get_master which was causing infinite
  4107. loops.. [Skotlex]
  4108. * Fixed homunculus error message [Toms]
  4109. * Rewrote pc_payzeny to not use doubles, it may more accurately prevent
  4110. charging a player more zeny than they can withhold. [Skotlex]
  4111. * Fixed failing to create Deadly Poison Bottles damaging 50% of your max
  4112. life instead of 25% [Skotlex]
  4113. * Added the missing status-change flags to SC_FREEZE to signal it should
  4114. modify def and magic def [Skotlex]
  4115. * Little add on NJ_HUUMA [Toms]
  4116. * Merged Mpeg's work on Ninja skills [Toms]
  4117. * Fixed Martyr's Reckoning having a cap damage of 32k. [Skotlex]
  4118. * Now you can teleport in Thanatos Boss room, but you can't respawn there [Playtester]
  4119. * Fixed Defender Raising Walk speed instead of diminishing it. [Skotlex]
  4120. * Added a check on status-change load to prevent loading speed-affecting
  4121. status when their speed adjustment is 0 (prevents division by zero)
  4122. [Skotlex]
  4123. * Code cleanup & optimization on guild part of char-server [Toms]
  4124. * Fixed script code data not being free'd if a player quits in the middle
  4125. of a script. [Skotlex]
  4126. * Modified run_script so that when there are leaks, it will report the
  4127. place where run_script was called from as source rather than the inner code
  4128. of run_script (for debugging purposes) [Skotlex]
  4129. * Made recursive master check the default (otherwise it messes skill -> pet
  4130. -> player kind of herarchies) and cleaned up some the battle_get_master
  4131. code to prevent infinite loops in the weird case someone specifies that
  4132. their master is itself. [Skotlex]
  4133. * Recoded the GuildAura code to use val3 & val4, allowing much greater stat
  4134. bonuses (in case someone wants to get Guild Skill level 20 or something
  4135. crazy like that) [Skotlex]
  4136. * Updated battle_check_target so that all alchemist summoned mobs can be
  4137. target by everyone. [Skotlex]
  4138. * Cleaned up skill_check_condition_mob_master_sub, it will now count both
  4139. total number of summoned mobs and amount that belong to the same type.
  4140. [Skotlex]
  4141. * Corrected AM_CANNIBALIZE so it will fail if you already have plants of
  4142. another type out. [Skotlex]
  4143. * Using NPC_SELFDESTRUCTION no longer will make the caster stop walking.
  4144. [Skotlex]
  4145. * Removed SI_GUILDAURA, and replaced it with SI_LANDENDOW, now
  4146. Volcano/Deluge/V. Gale will get that funky icon instead. [Skotlex]
  4147. * Changed clif_hominfo to receive both sd and hd as parameters
  4148. * Some redundancy cleaning in mercenary.c [Skotlex]
  4149. * Moved updating of sd->mercenary.hp from merc_damage to pc_makesavestatus.
  4150. [Skotlex]
  4151. 2006/08/01
  4152. * Miscellanous fixes which make the Marine Sphere self destruction work as
  4153. best as I can. It only has one flaw: It self-destructs instantly after
  4154. walking because if I make it use self-destruction with a cast-bar,
  4155. client-side the object stops moving inmediately... [Skotlex]
  4156. * Modified unit_walktoxy and NPC_RUN to enable running even when the caster
  4157. does not has the MD_CANMOVE bit on. [Skotlex]
  4158. * PF_MINDBREAKER will now silently fail if you try to use it on someone who
  4159. already has the status active. [Skotlex]
  4160. * Cleaned up yet again skill_landprotector, now new cells of
  4161. Deluge/Volcano/V.Gale will delete previous cells when they are recasted on
  4162. top of each other. [Skotlex]
  4163. * Summoned Marine Spheres no longer get the MD_CANMOVE bit. [Skotlex]
  4164. * Cleaned up some more the SC_JAILED code [Skotlex]
  4165. * merged in atcommands jailfor, jailtime, charjailtime. Thanks to Meruru
  4166. and Coltaro for the code. [Skotlex]
  4167. * Cleaned the code of atcommands jail and unjail [Skotlex]
  4168. * Be warned that the code MAY contain bugs as I adjusted it to save the
  4169. character's position before jailing, allowing the automatic unjailing to
  4170. warp you back to the exact spot you were at before being jailed. [Skotlex]
  4171. * Should have fixed the cooking sets not displaying all cooking available
  4172. items. [Skotlex]
  4173. * Figured out and fixed the issue with Volcano/Deluge/Violent Gale not
  4174. really working. Thanks to Mpeg for noting it out. [Skotlex]
  4175. * Modified Self Destruction, so that Marine Spheres in non-versus maps will
  4176. hurt only enemies, while in all other situations this skill will hurt
  4177. everyone around them. [Skotlex]
  4178. * Expanded setting debuff_on_logout so that &1 removes negative buffs and
  4179. &2 removes positive buffs. [Skotlex]
  4180. * Food status boosts will no longer end on death, but they will end when
  4181. you respawn or logout. [Skotlex]
  4182. * Added battle config file status.conf, moved some settings from skill.conf
  4183. and battle.conf to it since they are entirely Status-Change related.
  4184. [Skotlex]
  4185. * Added the missing lines to enable script command "kickwaitingroomall"
  4186. [Skotlex]
  4187. * Magic Rod's can-act delay will no longer be applied when you absorb a
  4188. spell. [Skotlex]
  4189. * Fixed Don't Forget Me increasing speed instead of decreasing it. [Skotlex]
  4190. * Modified setlabel so that the script engine barks when you are trying to
  4191. use the same label name as a constant or variable name. [Skotlex]
  4192. 2006/07/31
  4193. * Fixed the subnet 0 mask being reset to 0 when someone goes up on the fame
  4194. rankings. [Skotlex]
  4195. * Updated Poison React chance to counter and number of counters as per
  4196. skill description updates. [Skotlex]
  4197. * Fixed Sharpshooting being counted as a magic attack, and hence, using
  4198. your MATK as base damage. [Skotlex]
  4199. * Fixed NPC_STOP id value in skill_cast_db [Skotlex]
  4200. * Bladestop will no longer stop when you push either of the characters
  4201. around. [Skotlex]
  4202. * Fixed Enchant Poison having a near 100% chance of poisoning target on
  4203. attack. [Skotlex]
  4204. * Little fix on duel [Toms]
  4205. * Added possibility to restrict duel usage to same map [Toms]
  4206. * Merged mpeg's fix on ninja skills [Toms]
  4207. * Corrected a status_get_race call which should be status_get_race2 in misc
  4208. attacks. [Skotlex]
  4209. * Moved the Devotion code to the top of the SC list in status_damage,
  4210. meaning that now stuff like being asleep or confused won't end if you are
  4211. hit, but the damage is absorbed by devotion. [Skotlex]
  4212. * Added the Soul Link of Rogue speed bonus to Chase-Walk. Since there's no
  4213. information of how much the bonus should be, it currently is a conservative
  4214. 10%. [Skotlex]
  4215. * Fixed a possible crash in the main script engine when restoring previous
  4216. script. [Skotlex]
  4217. * Fixed sleep.tick not being set back to 0 before resuming execution, which
  4218. leads to scripts that are continously executed even when they already ended
  4219. (they do nothing but waste resources) [Skotlex]
  4220. * Fixed a pair of free -> aFree used on stacks, which would lead to memory
  4221. manager reporting leaks where there aren't. [Skotlex]
  4222. * Removed incorrect "Waterball range+1 when standing on suiton" feature.
  4223. [Skotlex]
  4224. * Corrected the Speed update code to prevent sending "walk to xy" packets
  4225. twice when the affected character is a player. [Skotlex]
  4226. * Expanded mob can't move warning to print out where this mob was stuck at
  4227. (map, x,y) [Skotlex]
  4228. * Fixed segmentation fault in status_change_end, vd wasn't initialized [Toms]
  4229. 2006/07/30
  4230. * NPC_INVISIBLE will now use Cloaking of a level +9 of the used skill
  4231. level, so that at level 1 they can attack, use skills and receive no
  4232. walking penalty. [Skotlex]
  4233. * Mob casted Sanctuary will no longer always heal it's targets regardless
  4234. of element/race [Skotlex]
  4235. * Status change packets will now use as criteria for sending the actual
  4236. view_class instead of player/not-player. This will fix status-changes
  4237. displaying improperly on clones, and also possible crashes with disguised
  4238. players. [Skotlex]
  4239. * Merged mpeg's fix on ninja skills and SA_VOLCANO,SA_DELUGE,SA_VIOLENTGALE [Toms]
  4240. * Added bNoMiscDamage setting so you can specify misc-damage blocking from
  4241. skills. Modified battle_calc_damage so that even Pressure and similar
  4242. skills will be affected by this setting. [Skotlex]
  4243. * GS skill updates/fixes [Vicious]
  4244. * Force all users offline in sql when char-server starts [Toms]
  4245. 2006/07/29
  4246. * Removed ugly struct cast in login.c [Toms]
  4247. * New version of buildin_query_sql which accept more than one column and
  4248. can return the number of rows. See script_commands.txt for more details. [Toms]
  4249. * Fixed nullpo in merc_hom_skillup [Toms]
  4250. * Added a return value to buildin_rid2name if rid is invalid [Toms]
  4251. * Made the SQL ping interval default to 7 hours. [Skotlex]
  4252. * Made skill_unitsetting remove the group when no unit-cells were placed
  4253. down. basicly this means that if landprotector blocks all tiles, the group
  4254. will be removed from memory, preventing said group from counting to the
  4255. total number of skills you can set. [Skotlex]
  4256. * Fixed segmentation fault in script engine when calling something which is not a function [Toms]
  4257. * Fixed segmentation fault in script engine when activating DEBUG_RUN flag [Toms]
  4258. 2006/07/28
  4259. * Added Ishizu's code to check ammo type on attack. No more using Grenade
  4260. rounds with Guns. [Skotlex]
  4261. * offensive heal/sanctuary will only happen when the source of the heal is
  4262. a player, mob/pet casted heal will now always heal regardless of target.
  4263. [Skotlex]
  4264. * Shield Chain will now ignore the 'ice-pick' defense piercing bonus.
  4265. [Skotlex]
  4266. * Self destruction will now hit all characters in range, not just enemies.
  4267. [Skotlex]
  4268. * Cleaned up the NJ update code: [Skotlex]
  4269. - Restored code which was removed (stuff like SC_SKA)
  4270. - Fixed possible crashes on some NJ skills if used by non-players.
  4271. - Fixed most NJ magic spells doing more damage than they should.
  4272. - Fixed ZenyNage being able to do more damage than zeny you have.
  4273. - Cleaned up skill setting code for Suiton and Kaensin
  4274. * Some cleaning of battle_drain, Evil Druid card should work now. [Skotlex]
  4275. * Made status_damage allow damaging of objects not on a map, this should
  4276. fix pet-catching making the mob never respawn again. [Skotlex]
  4277. * Casted nothl to (unsigned int) in sprintf functions, IP is 32bits and sql field the same :) [Toms]
  4278. * Fixed "warning: `list' might be used uninitialized in this function" in char/char.c@3032 [Toms]
  4279. * Fixed "uninitialized local variable 'i' used" in skill.c and "warning: suggest explicit braces to avoid ambiguous `else'" in battle.c [Toms]
  4280. * Fixed "warning: long unsigned int format, unsigned int arg" in parse_login (login_sql\login.c) [Toms]
  4281. * Fixed sign warnings in login/login.c [Toms]
  4282. * Fixed "conversion from 'double' to 'int', possible loss of data" [Toms]
  4283. * Fixed "warning: redefinition of [ushort/uint/ulong]" [Toms]
  4284. * Fixed duplicate case value on NJ_SUITON [Toms]
  4285. 2006/07/27
  4286. * Fixed a memory leak when there exists more than one user function with
  4287. the same name, added the appropiate warning when this happens. [Skotlex]
  4288. * Added reporting source file when an npc shops item's price is
  4289. exploitable. [Skotlex]
  4290. * The picklog will now record negative values for items sold to npcs.
  4291. [Skotlex]
  4292. * Added inmediate position and hp-bar update when a character joins a
  4293. party. [Skotlex]
  4294. * Added missing SC information to NPC_CHANGEUNDEAD [Skotlex]
  4295. * Added config setting party_update_interval so you can specify how often
  4296. the party-mate minidots should be updated (defaults to 1 sec). [Skotlex]
  4297. * Removed a bunch of broken comments in skill.c [Skotlex]
  4298. * Synced the script.c file with as much data as possible from jA's:
  4299. [Skotlex]
  4300. - A lot of functions were moved around, a bunch of indentation and
  4301. space-usage changes were done to make it easier to diff against their
  4302. files.
  4303. - Miscellanous addition and corrections were applied.
  4304. - Largest one is likely a restructuring of run_script_main, which hopes to
  4305. solve the memory leaks.
  4306. - script engine now uses the setjmp functions to restore memory state when
  4307. there's an error parsing scripts, which means that script errors won't
  4308. cause the map-server to inmediately bail out anymore.
  4309. - NOTE that the amount of changes is pretty extensive, so DON'T USE THIS on
  4310. a live server. Update only to help test and debug to see if the script
  4311. engine memory leaks are gone.
  4312. * Added a cleanup routine on shutdown to remove all characters from memory
  4313. for whom the save ack has not returned from the char-server yet. [Skotlex]
  4314. * Now when you set the guardian's HP, if the guardian is spawned, it's HP
  4315. will be updated accordingly (and if you set it to 0, the guardian is
  4316. killed) [Skotlex]
  4317. * Added functions status_set_hp/status_set_sp to set hp/sp to a given
  4318. value. Applied usage of these on the Berserk and Soul Change code.
  4319. [Skotlex]
  4320. * Added config setting "party_hp_mode" (battle/party.conf) which determines
  4321. method to use to update party-mate hp bars. Aegis style is to update HP
  4322. bars whenever HP changes, while eAthena style is to update it together with
  4323. the map party dots. Defaults to aegis style. [Skotlex]
  4324. * Fixed packet 0x22a having the manner and opt3 packets in inverted
  4325. offsets. [Skotlex]
  4326. * Readded the check which prevents Cloaking from activating when your
  4327. learned level is less than 3 and you aren't next to a wall. [Skotlex]
  4328. * Some cleanups to the Frenzy/Berserk status change, it should probably
  4329. work correctly now. [Skotlex]
  4330. * Removed a redeclared variable i in the parsing of the fame list (char-sql
  4331. server) which seems to be the cause of the random memory corruptions.
  4332. [Skotlex]
  4333. * Updated item_db.sql to latest. [Toms]
  4334. * Fix homunc & code cleanup [Toms]
  4335. - Timer problems on delete_timer
  4336. - Intimacy problem (overflow & new values)
  4337. - Homunc deleted if intimacy < 0
  4338. - base exp is now given to master
  4339. - Homunc sometimes not saved
  4340. 2006/07/26
  4341. * Fixed a memory leak when reading the item_db txt. [Skotlex]
  4342. * Applied the necessary changes to make @partyoption reflect it's changes
  4343. on the alt+p window. [Skotlex]
  4344. * Modified party_item_share_type config setting so that using 1 disables
  4345. item-sharing from non-mob loot (player dropped items or pet loot) and 2
  4346. enables round-robin instead of random sharing. Using 3 obviously is
  4347. enabling both 1 and 2. [Skotlex]
  4348. * Added battle_get_master which returns the master bl of a given object.
  4349. [Skotlex]
  4350. * Recoded battle_check_target to use battle_get_master, the src/target
  4351. switch has been split into two, so that actual target and master target are
  4352. seperately treated (same for source). [Skotlex]
  4353. * Added support for "sc_end -1" which will clear all status changes. Added
  4354. the constant SC_ALL so you can use in scripts "sc_end SC_ALL;" instead.
  4355. [Skotlex]
  4356. * @pettalk will now fail when muted. [Skotlex]
  4357. * Enabled changing of equipment while stunned/asleep/petrified/etc [Skotlex]
  4358. 2006/07/25
  4359. * Cleaned up run_script_main to properly free previous stack-data when
  4360. running scripts. Note that scripts may still leak memory when run by
  4361. non-players and they don't reach the "END" state, however I am not sure how
  4362. this case should be handled, so it's left as it is for now. [Skotlex]
  4363. * Added a missing ntohl call in the loginlog code. [Skotlex]
  4364. * Added a check when buying from npcs to allow buying of item_avail items.
  4365. [Skotlex]
  4366. * Fixed duel accept invite sending the packet before the duel data is set
  4367. (resulting in a packet that noone receives). Thanks to Toms for finding it
  4368. out. [Skotlex]
  4369. * Fixed a possible crash when you dual-wield and the total damage is 0.
  4370. [Skotlex]
  4371. * Added Toms's perl scripts item_db.pl and mob_db.pl (they are in tools/),
  4372. they convert the txt databases into sql. [Skotlex]
  4373. - Usage: "script" < "input file" > "output file". eg: ./tools/item_db.pl < db/item_db.txt > sql-files/item_db.sql
  4374. * Updated the sql files since now it's quick [Skotlex]
  4375. 2006/07/24
  4376. * Re-updated the mob_db.sql to latest. [Skotlex]
  4377. * Cleaned up the skill_landprotector function to correctly block only magic
  4378. skills from being placed on land protectors. [Skotlex]
  4379. * Corrected itemdb_group so that it will not return the random item givers
  4380. (should give priority to actual item groups, so that the item heal bonuses
  4381. work correctly) [Skotlex]
  4382. * Cleaned up the Mistress Card related code so that the no-gemstone bonus
  4383. reduces item requirements by one rather than totally skip them. [Skotlex]
  4384. * Cleaned up the logs "can log"function to use the IT constants. Also
  4385. corrected the "only log large amounts" setting not working on negative
  4386. values (trades). [Skotlex]
  4387. * Adjusted skill_castfix_sc so that Suffragium will get consumed even on
  4388. instant cast skills, but Memorize won't. [Skotlex]
  4389. * BladeStop will now end when either of the characters is moved (knocked
  4390. out?) around. [Skotlex]
  4391. * Moved the Zeny penalty code from respawn to pc_dead. [Skotlex]
  4392. * Added a check to prevent Deluge/Volcano/Violent Gale from being placed on
  4393. top of each other. Reverted the previous 'fix' where atk was being
  4394. increased based on armor element rather than element of attack. [Skotlex]
  4395. * Removed the noreturn mapflag check from script command warp. [Skotlex]
  4396. * Homuculus cleanup [DracoRPG]
  4397. - Replaced nullpo's in parse functions by silent checks
  4398. - Removed server-side effect for menu option 0 (view status window...
  4399. why does the client send us the packet since we don't care? -_-)
  4400. - Rewrote intimacy underflow checks so they are really effective (no
  4401. need to check if an unsigned is < 0, it won't work... check before!)
  4402. * fixed unban unblocking players as well. [Skotlex]
  4403. * Fixed Volcano/Deluge/Violent Gale increasing damage based on element of
  4404. attack instead of defense element of attacker. [Skotlex]
  4405. * Cleaned up the code of Magic Rod, fixed it not giving SP. [Skotlex]
  4406. * Moved the code of Hermod and Basilica to castend_pos2 so it should work
  4407. now. [Skotlex]
  4408. * Modified the code of Ankle Snare so the status ends on unit's time-limit
  4409. rather than when the snared object moves away. [Skotlex]
  4410. * Re-worded the water check of ST_WATER skills. [Skotlex]
  4411. * Allowed sc-cast reductions to be processed even when cast-time is instant
  4412. (to let suffragium end even on instant-cast skills) [Skotlex]
  4413. 2006/07/23
  4414. * Modified setting skillrange_by_weapon (skill.conf) to be a
  4415. per-object-type setting instead of yes/no. The default now is that
  4416. weapon-based skills will take the attacker's range for non-players.
  4417. [Skotlex]
  4418. * Changed the default of skillrange_by_distance to include homunculus.
  4419. [Skotlex]
  4420. * Fixed buildin_isequip not working correctly with non-cards. [Skotlex]
  4421. 2006/07/22
  4422. * Updated mob_db.sql to latest. [Skotlex]
  4423. * Applied Toms's suggested corrections to homun code. [Skotlex]
  4424. * Corrected Cannibalize/Marine Sphere ignoring the selected summon spot.
  4425. [Skotlex]
  4426. * Fixed looting pets ignoring the item pick-up priority of other players.
  4427. [Skotlex]
  4428. * Should have fixed a signess warning in login txt. [Skotlex]
  4429. 2006/07/21
  4430. * Added blocking of @me when muted or in berserk status. [Skotlex]
  4431. * Corrected the @follow timer not being deleted on logout. [Skotlex]
  4432. * Applied the homunculus code fixes provided by Toms. [Skotlex]
  4433. * battle_check_target will now tag homunculus as invalid target when the
  4434. source is a skill-type object. [Skotlex]
  4435. * Added a check on pc_equipitem so that when the client specifies to equip
  4436. a weapon on the right hand when the left hand is available, the weapon will
  4437. be sent to the left hand instead (when dual-wielding is possible,
  4438. obviously). Same for the left/right accessories. [Skotlex]
  4439. * Added the necessary checks so that Suiton makes Fogwall have double
  4440. duration, and to make water-requiring skills to consume their cells.
  4441. [Skotlex]
  4442. * Corrected the loadmap event description to specify that the mapflag
  4443. required is actually "loadevent", NOT "loadmap"! [Skotlex]
  4444. * Now when the char-txt server does not finds a requested party, it will
  4445. clear out said party id of all characters (will help prevent massive
  4446. spamming/overhead when for some reason the party file needs to be deleted).
  4447. [Skotlex]
  4448. * Combo skills (inf = self, inf2 = no target self) no longer check range if
  4449. you use them while your attack-timer is still active. [Skotlex]
  4450. * Added back a map_freeblock call in skill_delunitgroup which caused a
  4451. memory leak when removed... [Skotlex]
  4452. * Added a check to prevent Blind from ending while standing on a fog of
  4453. wall. [Skotlex]
  4454. * The mob Slave ai will be executed now even when the slave has a target.
  4455. This will allow for "instant" warping to the master when it changes maps or
  4456. teleports. if the slave has a target already, it won't unlock it and chase
  4457. back to the master or anything like that. [Skotlex]
  4458. * Removed a couple of checks that prevents item ids above 20000. However,
  4459. remember that the max id is still ~32k or the client is the one who's gonna
  4460. crash! [Skotlex]
  4461. 2006/07/20
  4462. * Added source reporting when you do an invalid int&str or str&int
  4463. operation on a script. [Skotlex]
  4464. * Fixed the intif party creation packet having the incorrect size sent,
  4465. hence causing the leader's level to be read as garbage (which caused the
  4466. "impossible to even share" bug). [Skotlex]
  4467. * Added pc_check_weapontype to do a proper skill weapon check that takes
  4468. into account dual-wielding. That is, if a skill can be used with
  4469. daggers/axes, you'll be able to use the skill when dual-wielding them.
  4470. [Skotlex]
  4471. * Corrected Cloaking level 1-2 not letting you move across walls. [Skotlex]
  4472. * updated cloaking code so that when you set "enable cloaking without
  4473. walls", the code will consider you as "always next to a wall", thus you get
  4474. the wall-speed bonus always. [Skotlex]
  4475. * Applied the fix to homunculus name saving... [Skotlex]
  4476. * Added battle config settings agi_penalty_target and vit_penalty_target,
  4477. they define which object types will get vit/flee reductions when
  4478. multi-targetted and defaults to only players (battle/battle.conf) [Skotlex]
  4479. * Added the dummy intravision case for the changeoption packet 0x229
  4480. [Skotlex]
  4481. * Corrected Fog of Wall so that all targetted offensive skills (not only
  4482. those who do damage) will fail on cast-end 75% of the time. [Skotlex]
  4483. * corrected @homlevel up and one entry in the homun exp table as reported
  4484. on the forums by Albator. [Skotlex]
  4485. * Added the SQL fix to Homunculus skill learning/saving bug [DracoRPG]
  4486. * Added a status_check_skilluse on skill_attack_area call to prevent splash
  4487. damage skills from hitting hidden/trickdead/etc characters. [Skotlex]
  4488. * Corrected fog of wall to behave as best known currently: [Skotlex]
  4489. - Only takes effect when targetting a character inside it
  4490. - -50hit/-75% damage when using normal-ranged attacks
  4491. - -25% damage from all damage skills
  4492. - 75% chance of all targetted damage skills of failing.
  4493. * Should have fixed @refine applying multiple times to equipment that uses
  4494. multiple equip slots. [Skotlex]
  4495. 2006/07/19
  4496. * Fixed the inf code update breakage which was blocking all offensive
  4497. skills. [Skotlex]
  4498. * Added battle setting homun_critical_rate (defaults to 0) [Skotlex]
  4499. * Removed enemy_str/pet_str/enemy_perfect_flee and replaced them with
  4500. enable_perfect_flee which specifies which objects can have perfect flee and
  4501. enable_baseatk which specifies which objects can have a base attack value
  4502. (both in battle.conf) [Skotlex]
  4503. * Modified the targetted skill logic to enable offensive skills to be
  4504. targetted at party/guild members if the appropiate inf2 value is set.
  4505. [Skotlex]
  4506. * Added checks to make adding items to inventory/cart fail when a char is
  4507. in finalsave state. [Skotlex]
  4508. * Fixed parse_names on irc.c crashing when receiving a null argument.
  4509. [Skotlex]
  4510. * Modified the parsing of the names line, since some servers will send @
  4511. instead of = when separating the information. [Skotlex]
  4512. * Fixed the homun creation sql statement. Why noone else did so before?
  4513. [Skotlex]
  4514. * When enabling/disabling hiding/unhiding an npc, if the npc is a warp, it
  4515. will use clearchar and spawn packets instead of changeoption. Thanks to
  4516. Toms for the fix. [Skotlex]
  4517. * Corrected Trim chars to block 'enter', as explained by the Ultra mage.
  4518. [Skotlex]
  4519. * When the client passes account version 0, the login server will set it to
  4520. 1 now. [Skotlex]
  4521. * Corrected the HP bar scaling when HP is above Short Max. It should
  4522. display fine for any HP value now. [Skotlex]
  4523. * Added a check when the mob's adelay is shorter than the amotion, in which
  4524. case the adelay will be changed to the amotion value. [Skotlex]
  4525. * Some minor mapflag changes. [MasterOfMuppets]
  4526. 2006/07/18
  4527. * Added atcommand @partyoption, lets you alter the party item-distribution
  4528. type on the go. Usage is "@partyoption <pickup share> <item distribution>",
  4529. where both arguments can be 0/1, yes/no, etc. [Skotlex]
  4530. * Updated @changeleader and @partyoption to use msg_Athena entries.
  4531. [Skotlex]
  4532. * Added character 013 (enter) to the list of characters that are always
  4533. removed from new character names. [Skotlex]
  4534. * Fixed a crash when trying to extend TK's infinite combo feature. [Skotlex]
  4535. * Corrected Poison React to counter regardless of distance, and to use the
  4536. skill's 50+5*lv% counter chance (instead of 100%). [Skotlex]
  4537. * Corrected Venom splasher's splash damage [Skotlex]
  4538. * You now can't move/attack/use-skills when using Cloaking of a level less
  4539. than 3 [Skotlex]
  4540. * Fixed compilation of mercenary.c [Skotlex]
  4541. * Corrected Fog of Wall's "targetted spells fail 75% of the time" feature
  4542. by making it behave like GTB, that is, you just get a skill-failed on
  4543. cast-end, no skill-animation at all. [Skotlex]
  4544. * Added a proper check to make aggressive mobs never override homun targets
  4545. regardless of distance. [Skotlex]
  4546. * Removed a bunch of homun-related variables that are not needed at all.
  4547. The alive condition is removed, now the code checks for the hp value to
  4548. know if the homun is alive or not. [Skotlex]
  4549. * Cleaned up a bit the skill-id function, homun skill checks (such as delay
  4550. and skill-lv learned) should be correct now. [Skotlex]
  4551. * Added a proper check to make aggressive mobs never override homun targets
  4552. regardless of distance. [Skotlex]
  4553. * Fixed giving the 100% damage bonus when no-splash-targets are found in
  4554. the blown path to Grandcross instead of Bowling Bash. Bowling Bash damage
  4555. equation becomes then +50*lv% rather than +40*lv% when there's no
  4556. splash-damage (the 50*lv% figure is custom, all we know is that level 10
  4557. does 600% instead of 500% damage). [Skotlex]
  4558. 2006/07/17
  4559. * Updated mob_db.sql to current mob_db.txt data. [Skotlex]
  4560. * The char-server will allow off-line character saves when said char is
  4561. tagged for final-save (this is the scenario when the char-map reconnect).
  4562. [Skotlex]
  4563. * Should have fixed the Cart Termination damage code to be scaled correctly
  4564. when you change the max cart weight. Thanks to The Ultra Mage for the error
  4565. clarification. [Skotlex]
  4566. * Implemented Grandcross weird property where if there's noone on the path
  4567. it'll hit twice for the skill's reported damage, and when there is (or you
  4568. can't knockback the target) it'll do a splash attack that hits twice for
  4569. 500% to all affected targets. [Skotlex]
  4570. * Some cleaning of the combo code. TK Rankers will now get their combo-time
  4571. extended each time they trigger a kick, enabling them to do "unlimited
  4572. combos". [Skotlex]
  4573. * Modified the autosave function to use a sweep across the player db
  4574. instead of across connected clients. This will cause non-connected players
  4575. (like autotraders) to also be saved on a regular interval, may help with
  4576. possible data-loss from said characters on unclean shutdowns. [Skotlex]
  4577. * Removed the code that forces aggressive mobs to go after a Homun instead
  4578. of their master (no reason why there should be such a condition). [Skotlex]
  4579. * Some sign quest map flag updates [MasterOfMuppets]
  4580. * atcommand_follow is now more verbose. [Adam]
  4581. * Manually added int_homun.c to the VS8 char_sql project, *should* work [DracoRPG]
  4582. * Orn's fix to the very critical skill level up bug [DracoRPG]
  4583. * Updated mob_db.sql to current mob_db.txt data. [Skotlex]
  4584. * Added Orn's lil fix on homun [Vicious]
  4585. * Added Homunculus system, enjoy! [orn aka Nylou]
  4586. - WARNING: This currently only works with the SQL version, as the TXT char-server
  4587. has no code for it at the moment. You TXT server won't break, but the char-server
  4588. will complain of an unknown packet if you try to get an Homunculus
  4589. * Updated nomemo mapflags based on info from http://ro.doddlercon.com/images/memo.jpg [Poki#3]
  4590. 2006/07/15
  4591. * Small change in conf/battle/player.conf to say that 199 is max aspd allowed
  4592. (Haplo says that there are many reports of having over 200 is giving errors) [Evera]
  4593. 2006/07/13
  4594. * Kaahi no longer shows the heal effect to everyone. [Skotlex]
  4595. * Eska no will cause defense to change randomly every second. [Skotlex]
  4596. * Tuned up some more NJ_KAENSIN based on Tharis's information. [Skotlex]
  4597. * Corrected NJ_KAENSIN as per description. [Skotlex]
  4598. * Fixed a leaking map_freeblocklock on skill_del_unitgroup. [Skotlex]
  4599. * Changed the default save interval to 5 minutes. Added support for
  4600. specifying fixed save-intervals by using negative values. [Skotlex] EG:
  4601. - Save interval set to 300 (5 minutes): all characters will be saved in
  4602. equal time-slots, so that everyone is saved every 5 minutes regardless of
  4603. number of players online.
  4604. - Save interval set to -1000 (1000 ms): One character will be saved every
  4605. second, regardless of amount of characters online.
  4606. The new fixed-time-slots method is meant for larger servers, so that they
  4607. can control the saving-induced stressed on the char-server.
  4608. * Fixed @storeall and @charstoreall failing when the target character
  4609. already had the storage open. [Skotlex]
  4610. * Reverted temporarily the Cart Termination equation until it can be
  4611. fixed... [Skotlex]
  4612. * Fixed script command "recovery". [Skotlex]
  4613. 2006/07/12
  4614. * Fixed a small typo in my code [Zido]
  4615. * Added negative value in bonus exploit fix for more stat bonuses [Zido]
  4616. * Fixed exploit in pc_bonus there are no checks that check that the value being
  4617. added onto a status don't make it go below zero, which means if you have a mineral
  4618. card and reset stats it reduces your base attack to lower than zero, making it
  4619. go up to 64000. Fixed by adding a check for SP_BASE_ATK, although i recommend
  4620. doing it for other status bonuses also [Zido]
  4621. * Recoded NJ_BAKUENRYU to behave as I understand it best from the
  4622. skill-description (since Haplo told me this skill doesn't really has video
  4623. information or anything...) [Skotlex]
  4624. * Fixed NJ_TATAMIGAESHI to use ground-tiles rather than "for each in path"
  4625. calls. The skill should be working correctly now, except for the fact that
  4626. the correct "unit id" is missing (this is what would give the ground tile
  4627. it's correct display). Temporarily it is using 0xba until the correct value
  4628. is found. [Skotlex]
  4629. * Added back the undead check to turn undead/resurrection to prevent
  4630. damaging non-undead targets, removed it from the battle damage section.
  4631. [Skotlex]
  4632. * Resurrection will now silently fail when used on non-undead + not-dead
  4633. characters. [Skotlex]
  4634. * Poem of bragi/magic String's base delay reduction at level 10 (or above)
  4635. is now 50% instead of 3*lv%. [Skotlex]
  4636. * status_damage will no longer fail when the target is not on a map AND the
  4637. flag is 2 (charge rather than damage). Fixes SP-draining status changes
  4638. ending suddenly when in-between maps. [Skotlex]
  4639. * Fixed the IP value being apparently incorrectly casted before inserting
  4640. into the loginlog table on "connect success" events. [Skotlex]
  4641. * Fixed Cart Termination's damage. [Skotlex]
  4642. * Added the missing check to remove character from memory when logging out
  4643. and using the charsave_method which saves character map-server-side.
  4644. [Skotlex]
  4645. 2006/07/11
  4646. * Fixed inverted check which was preventing you from buying more than 1
  4647. from any stackable item.... [Skotlex]
  4648. * Should have fixed the crash in intif gm message... [Skotlex]
  4649. * Fixed GTB card only working while you had a status-change active.
  4650. [Skotlex]
  4651. * Fixed being unable to compound cards in armor. [Skotlex]
  4652. * Made @monsterignore be an universal ignore. Means you cannot be targetted
  4653. as an enemy by anything. Also added alias "@battleignore" which does the
  4654. same as monsterignore. [Skotlex]
  4655. * Fixed magic power setting your min matk as max-matk. [Skotlex]
  4656. * Modified the packets involved in @fakename in hopes it'll refresh
  4657. correctly on nearby clients now. [Skotlex]
  4658. * Fixed clif_parse not checking for func_parse before sending data to the
  4659. connected clients. This in turn required various code-rewrites in: [Skotlex]
  4660. - duel related messaging functions (added clif targets DUEL/DUEL_WOS).
  4661. - intif whisper to gm function
  4662. - day/night timers
  4663. - Rewrote the parse_console function to stop allocating/deallocating memory
  4664. on every call.
  4665. - Modified chrif_charselectreq to receive the player's ip among the data.
  4666. * Added function clif_disp_message, which is the same as
  4667. clif_disp_onlyself, except you can specify the targets (it sends a
  4668. guild-chat packet) [Skotlex]
  4669. * Fixed the subele bonus (elemental reduction) being applied to the element
  4670. of the attacker instead of the element of the attack. [Skotlex]
  4671. * mob skills now won't trigger on unit_stopwalking calls. [Skotlex]
  4672. * Coded @reset. [Skotlex]
  4673. * Reenabled @changesex [Skotlex]
  4674. * Added function pet_create_egg which handles creating pet eggs correctly
  4675. (when passed item id is indeed a valid petegg). Applied this on @createitem
  4676. and getitem. [Skotlex]
  4677. * Cleaned up code of @item [Skotlex]
  4678. * Cleaned up the itemdb_isequip functions. itemdb_isequip will now return
  4679. if the item is equipable by players, itemdb_isstackable returns if the item
  4680. can be stacked, and itemdb_isidentified returns if the item should drop
  4681. identified. [Skotlex]
  4682. * Added defines CARD0_PET/CARD0_FORGE/CARD0_CREATED to identify if a given
  4683. item has "invalid" cards, added define function itemdb_isspecial to
  4684. simplify this check. [Skotlex]
  4685. * Removed itemdb.c considering item ids above 20000 as invalid. [Skotlex]
  4686. * Cleaned up script commands getitem and card-counting related ones.
  4687. [Skotlex]
  4688. * Cleaned up a bit more pc_isequip [Skotlex]
  4689. * Added script function warpportal(x,y,targetmap$,targetx,targety).
  4690. This creates warp portals as in the skill unit as a volatile alternative
  4691. to static warp portals. [blackhole89]
  4692. * Modified the login-sql server to do the ip-ban check only on the
  4693. auth-packets instead of on every packet. [Skotlex]
  4694. 2006/07/10
  4695. * Corrected Warp Portal being unable to warp people who are standing on it
  4696. on the moment it triggers. [Skotlex]
  4697. * Fixed @follow stopping the moment you are warped. [Skotlex]
  4698. * Fixed pc_additem messing with the equip field of the passed item data.
  4699. Fixes the famous "equip stuff on your arrow slot" bug. [Skotlex]
  4700. * Fixed cart-termination crashing the server if you used level 16 of it.
  4701. [Skotlex]
  4702. * Fixed check_connect_login_server check in char-sql server. Fixes
  4703. char-server not reconnecting to the login server. [Skotlex]
  4704. * Login-sql server will no longer change an account's state to "7" when
  4705. banning a player. This should fix being able to use @ban to clear out a
  4706. @blocked player. Players will now be identified as banned only through the
  4707. banned-until timestamp. [Skotlex]
  4708. * Fixed a crash when using Gospel... [Skotlex]
  4709. * The on-place function won't be invoked on setting ground skills if the
  4710. group's tick is greater than the current tick. As Buuyo pointed out, this
  4711. should fix Sanctuary and Gospel taking effect inmediately instead of after
  4712. "x" amount of ms as they should. [Skotlex]
  4713. * Added login-char packet 0x2737. Sets all characters offline (login-server
  4714. side). [Skotlex]
  4715. * Cleaned up char server "set all offline" implementation to remove only
  4716. characters from the map-server from which the packet was invoked. It will
  4717. also now correctly kick/set-character offline from the map-server if they
  4718. are connected. [Skotlex]
  4719. * Cleaned up the char-sql reconnect code. It no longer sets everyone to
  4720. offline. [Skotlex]
  4721. * Removed setting "kick_on_disconnect", servers will no longer kick
  4722. characters out when there's a disconnection. Instead, it'll use the most
  4723. logical approach: Set characters into a "lost" state when there's a
  4724. disconnection, on reconnect, resent the list of online-characters, do a
  4725. sync, and let the difference be characters to be removed. Also, the
  4726. map-server won't release character data until it's saved and the ack
  4727. returns from the char-server to prevent data loss (all this data is resent
  4728. on reconnect for saving anyway). [Skotlex]
  4729. * Added a check in pc_equipitem so that when switching weapons and you have
  4730. the skill_range_by_weapon setting active, the skill info block (which
  4731. includes range) will be resent when the new weapon to equip has a range
  4732. different than the previous one. [Skotlex]
  4733. * One closer inspection, removed that clear in itemdb_reload for a foreach
  4734. call again. And modified itemdb_load to scrap the dummy item entry from the
  4735. item_db and replace it with proper data for the item. [Skotlex]
  4736. * itemdb_reload will clear the itemdb before reloading info instead of only
  4737. clearing the scripts now. [Skotlex]
  4738. * Some cleaning of skill_castend_pos2, fixed Gospel, and a
  4739. map_freeblock_unlock misplacement. [Skotlex]
  4740. * Sense/Estimation will now display the mob info window to all party
  4741. members in the same map. [Skotlex]
  4742. 2006/07/08
  4743. * Fixed the new addeff structure not working well with SC_STONE (because
  4744. SC_STONE is 0, which was by default not handled as a valid value).
  4745. [Skotlex]
  4746. * Added back the TF_MISS walking speed bonus to assassin type classes (how
  4747. did that got lost?) [Skotlex]
  4748. * Fixed mobinfo displaying exp as signed ints rather than unsigned.
  4749. [Skotlex]
  4750. * Added status_check_visibility to check if an object is within range of
  4751. view of another. Nothing more, nothing less. It's used by unit movement to
  4752. check whether you can continue chasing your target or not when the "chase
  4753. target" directive is given. [Skotlex]
  4754. * Fixed the char table having party/guild_id as smallint when they need int
  4755. there. Thanks to hermematon for pointing it out (use svn_ugprade7580.sql)
  4756. [Skotlex]
  4757. * Applied k3dt fixes to pet-hatching, ice-wall check, and wedding skills.
  4758. [Skotlex]
  4759. * Fixed endow skills calling the skill no damage packet twice. [Skotlex]
  4760. * Fixed a crash on warpwaitingpc when the chat-room is empty. [Skotlex]
  4761. 2006/07/07
  4762. * Fixed the Warm Skills [Skotlex]
  4763. * Removed the debug message when a player logs out and is removed from
  4764. memory, it is working fine (tested normal logging off and autotrade). [Skotlex]
  4765. * Corrected the pet-armor field of the pet not being updated on
  4766. equip/unequip of accessories, making them not show up inmediately. [Skotlex]
  4767. * Status_calc_bl will no longer stop you from attacking/walking when the
  4768. mode is changed unless the new mode no longer includes
  4769. "can-attack"/"can-move" respectively. [Skotlex]
  4770. * Should have fixed clif_item_sub to properly store pet egg/armor data.
  4771. There should be no more "random refine levels" bugs related to these.
  4772. [Skotlex]
  4773. * itemdb_exists will now return NULL for item_id 0. [Skotlex]
  4774. * Added a check to free a character from memory when changing map servers.
  4775. [Skotlex]
  4776. * Okay, added a chrif_save_ack packet to the char-server so now the map
  4777. server will know once a character was "final saved", and only then the
  4778. character will be removed from memory. On char-server reconnection, all
  4779. chars that are in final-save state are resent to save (if they are still in
  4780. memory, it's because the ack hasn't gotten here from the char-server). This
  4781. should effectively block all dupe problems due to heavy inter-server lag,
  4782. however as it's untested, it currently prints some debug messages when
  4783. people are saved and then removed from memory. Need testers so this can be
  4784. debugged and merged to stable! [Skotlex]
  4785. * Now, when the login-char connection is cut, the char-server won't set
  4786. everyone offline on reconnect, instead it will send the list of online
  4787. accounts to the login server. [Skotlex]
  4788. * Modified the error on the char-sql server to set chars online when it
  4789. receives a save packet from a character tagged as offline (until it can be
  4790. figured out why this is happening) [Skotlex]
  4791. * Fixed signed/unsigned comparison issues in the char txt/sql server.
  4792. [Skotlex]
  4793. * Fixed the cooking success chances. Thanks to Ishizu Chan. [Skotlex]
  4794. * Added a temporary band-aid to prevent executing the script of non-arrows
  4795. when they are equipped on the arrow-slot (until the actual cause of why
  4796. pc_unequipitem is not working correctly is discovered/fixed) [Skotlex]
  4797. 2006/07/06
  4798. * Modified the party_data structure on the map server to remove some
  4799. redundant data. Added a party_data structure on the char-server to hold a
  4800. more complete set of information about parties. Added to the party_member
  4801. structure the class of each member so that the map server can do the
  4802. appropiate checks even if the character is on another mapserver/offline.
  4803. Due to the format changes in the party structure, txt servers will have to
  4804. wipe their party file... (sql save format has not been changed) [Skotlex]
  4805. * Added function char_family to check if there's a family state given the
  4806. three character ids, instead of doing individual checks all the time.
  4807. [Skotlex]
  4808. * Rewrote all the item restriction functions so that they will take into
  4809. account slotted card restrictions as well. [Skotlex]
  4810. * Added no_skill_delay setting, when set, affected object types will have
  4811. the minimum skill delay for all skills. Defaults to mobs, since they
  4812. don't have skill delays. [Skotlex]
  4813. * Cleaned up pc_equipitem. When dual wielding or equipping accessories, if
  4814. the client actually specifies one of the two positions, it will be taken
  4815. into account (now, does the client actually does this?) [Skotlex]
  4816. * Fixed GrandCross and similar skills. [Skotlex]
  4817. * FogWall will now also affect the caster. [Skotlex]
  4818. 2006/07/05
  4819. * Updated NJ_KAENSIN by Saycyber21 [Vicious]
  4820. * Updated @refine to take account of MAX_REFINE, thanks to Omega... GM
  4821. Designer. [Skotlex]
  4822. - Also optimized the @refine loop for better performance.
  4823. 2006/07/04
  4824. * Fixed compile issue for NJ_BAKUENRYU, by Saycyber21. [Vicious]
  4825. * Implemented Saycyber21's some NJ work. Untested. :D [Vicious]
  4826. * Implemented cooking chances. Chance of success is 70% - 7*(dish-lv)% +
  4827. 12*(cooking set-lv)%. Exception: When using the legendary cooking set,
  4828. success chance is 100% regardless of dish. [Skotlex]
  4829. * Added battle config setting emergency_recall, specifies behaviour of that
  4830. skill (skill.conf): 0 - Disabled. 1 - can't be used in nowarpto maps. 2 -
  4831. Can be used everywhere. [Skotlex]
  4832. * Removed the NPC/Dance/Song inf2 check of AbraCadabra. whether a skill can
  4833. come out or not is entirely decided by the abra db file now. [Skotlex]
  4834. * Added structure s_addeffect to handle status change additions. Cleaned up
  4835. relevant code. It is now possible to specify ANY status change, not just
  4836. the basic ones. NOTE that the code is proof-read, but untested! [Skotlex]
  4837. * Added support for bonus3 bAddEff/bAddEffWhenHit as follows: [Skotlex]
  4838. bonus3 bAddEff/bAddEffWhenHit, <SC value>, <rate>, <target flag>.
  4839. Target flag is 0: Self. 1: Enemy. 2: Both.
  4840. * Added these descriptions to doc/item_bonus.txt [Skotlex]
  4841. * Added a check when joining a chat to make sure the target object is of
  4842. type BL_CHAT. [Skotlex]
  4843. 2006/07/03
  4844. * Cleared up the bAutoSpellWhenHit description in doc/item_bonus.txt
  4845. [Skotelx]
  4846. * Fixed Phantasmic Arrow and Magical Bullet not being correctly tagged as a
  4847. ranged arrow-type attack. [Skotlex]
  4848. * Updated help.txt and help2.txt, thanks to Inuyasha for providing the
  4849. updated files. [Skotlex]
  4850. * Char-server SQL won't perform the reconnect cleanup routines when
  4851. kick_on_disconnect is disabled. [Skotlex]
  4852. * Renamed summons_inherit_effects to summons_trigger_autospells as the
  4853. setting now only makes the attacks of the slaves trigger the autospells of
  4854. the master (as it should be). [Skotlex]
  4855. * Corrected code capping no_spawn_on_player to 50 when the max should be
  4856. 100. [Skotlex]
  4857. * Warmth will dispel when warping now (or else the effect is left on the
  4858. ground) [Skotlex]
  4859. * Fixed reading of the refine_db not working right when MAX_REFINE is
  4860. increased from 10. [Skotlex]
  4861. * Some more cleaning to the implementation of Abracadabra [Skotlex]
  4862. * Fixed a compile warning in login sql/txt [Skotlex]
  4863. * Fixed pc_makesavestatus not setting your logout position. [Skotlex]
  4864. * Fixed two dances becoming BA_DISSONANCE instead of DC_UGLYDANCE.
  4865. [Skotlex]
  4866. * Added the missing +100% damage modifier of Enchant Deadly Poison.
  4867. [Skotlex]
  4868. * Fixed SkillStatusChangeTable not working correctly for Homun/Guild
  4869. skills. [Skotlex]
  4870. 2006/06/30
  4871. * Fixed a typo in msg_athena.conf, "This item cannot be drop" -> "This item cannot be dropped" [MasterOfMuppets]
  4872. * Added a check to prevent equipped items from being traded. [Skotlex]
  4873. * Added UF_SONG (0x400) to differentiate songs from dances. [Skotlex]
  4874. * Added preliminar support for making a Song+Dance turn into BA_DISSONANCE
  4875. cells. Beware of potential bugs as it's untested. [Skotlex]
  4876. * Added mapflag "nochat" to prevent chatting rooms from being created.
  4877. [Skotlex]
  4878. * Corrected some of the sleep checks when the char id does not matches with
  4879. the char-id expected by the script engine. [Skotlex]
  4880. * Cleanup in itemheal related code, fixed the item heal group bonus not
  4881. working on Groups beyond 7. [Skotlex]
  4882. * Fixed pet's loot not being moved to your inventory on logout. [Skotlex]
  4883. 2006/06/29
  4884. * Made the map server send list of characters online to the char-server on
  4885. reconnection regardless of "kick_on_disconnect" setting, as otherwise, a
  4886. temporary disconnection would make the char-server tag all characters
  4887. offline and refuse to save them afterwards. [Skotlex]
  4888. * Fixed guild storage being "eternally in use" if you quit/logout before
  4889. closing it. [Skotlex]
  4890. * Ending SC_CLOAK/SC_HIDE/SC_CHASEWALK will now trigger ontouch npcs.
  4891. [Skotlex]
  4892. * [Fixed]
  4893. - Scripting system screwing up script position after mixing timers with menus.
  4894. - NPC attached AI mobs display as alive when dead.
  4895. - View data not updating after buildin_unitdeadsit.
  4896. [Improved]
  4897. - NPCE_LOADMAP to execute after all (area) objects are sent to the player.
  4898. - Simplified scripting system. sd will now use pointer to the script state itself.
  4899. [Lance]
  4900. 2006/06/28
  4901. * changed:
  4902. dynamic_pass_failure_ban_how_many:from 3 to 7
  4903. dynamic_pass_failure_ban_how_long:from 60 to 5
  4904. as in official servers. [Musashiden]
  4905. * Added a check in script command "set_option" so that invoking
  4906. "set_option(0)" removes Cart/Peco/Falcon, as expected by scripts. [Skotlex]
  4907. * Added trade-range check on trade start. [Skotlex]
  4908. * Added inf2 4096 (INF2_ALLOW_ENEMY) which is to be used in conjunction
  4909. with INF2_PARTY_ONLY/INF2_GUILD_ONLY when said skill should ALSO be allowed
  4910. to be used on enemies. [Skotlex]
  4911. * Cleaned up a bit the code for @item [Skotlex]
  4912. * Fixed character/storage being sent to be saved TWICE when you logged out
  4913. while the storage is opened. [Skotlex]
  4914. * Added save_settings map config. Specifies after which events do
  4915. characters get saved (defaults to all): 1 - Trade successful, 2 - Vending
  4916. transaction, 4 - Closing storage/guild storage, 8 - hatching a pet.
  4917. [Skotlex]
  4918. * Changed the mob drop rate adjust function to receive a signed int
  4919. argument. Probably will fix those drops with 0% becoming 100% [Skotlex]
  4920. * Corrected Musical Strike having a different damage equation from Throw
  4921. Arrow. [Skotlex]
  4922. * Added state rewarp to players. It gets set when a pc_setpos call is
  4923. triggered while the player is changing maps so that when the player finish
  4924. loading the map, it is inmediately rewarped to where it has been
  4925. rewarped/recalled to. [Skotlex]
  4926. 2006/06/27
  4927. * Map server will now resent the whole list of online characters to
  4928. char-server on reconnect when the kick_on_disconnect setting is active.
  4929. [Skotlex]
  4930. * Cleaned up and optimized the IP sync code. New login_athena config
  4931. setting sync_ip_interval specifies how often to sync the ip. The default is
  4932. 0 (disabled). [Skotlex]
  4933. * Added mapflag "loadevent", now load-map script events will ONLY trigger
  4934. on maps with this mapflag on, rather than every map. [Skotlex]
  4935. * High Jump can now be used in all versus maps. [Skotlex]
  4936. * Added Kaite's opt3 value, taken from jA [Skotlex]
  4937. * Added state dirty == 2 to storages. Signals when a storage was sent for
  4938. final saving. Said storage is removed from memory after the ack from the
  4939. char-server, and they are sent to save if the map/char servers reconnect
  4940. before the ack arrives. In short: they are guaranteed to be saved after a
  4941. char logs out. [Skotlex]
  4942. * Put pay_arche.gat in the "no experience lost" mapflag file. [MasterOfMuppets]
  4943. 2006/06/26
  4944. * Corrected the element of hunter traps. [Skotlex]
  4945. * Deadly Poison now also reduces def2 by 25% [Skotlex]
  4946. * Cleaned up a bit skill_moonlit, Moonlit Petals should work correctly now.
  4947. [Skotlex]
  4948. * Fixed @mi displaying always 0 instead of the mob's class. [Skotlex]
  4949. * Rough implementation of Ground Drift according to description and jA
  4950. info. [Skotlex]
  4951. * Implemented Tatami Gaeshi using skill description and jA implementation
  4952. for reference. [Skotlex]
  4953. * Merged Mitternacht's max_heal/max_heal_lv config settings. [Skotlex]
  4954. * Removed support of packet 0xc3 on the new packet versions. Thanks to
  4955. Meruru for pointing out they aren't being used anymore. [Skotlex]
  4956. * Autospells will now again check for the skill's nk value, so that skills
  4957. tagged "nodamage" skills will not trigger autospells. [Skotlex]
  4958. * Corrected clif_item_sub so that pet eggs will correctly be sent as
  4959. equipment (fixes them showing up "broken" and with random refine levels)
  4960. [Skotlex]
  4961. * [Added]:
  4962. - buildin_unitkill just for kicks. [Lance]
  4963. 2006/06/23
  4964. * [Optimized]:
  4965. - Setting of variables with defined scope in some frequently executed script
  4966. events.
  4967. [Added]:
  4968. - Missing script_require_trigger flags for some power hungry events.
  4969. * Updated mob_db.sql and item_db.sql to latest. [Skotlex]
  4970. * Modified pc_setoption so that it will correctly update sprite AND clothes
  4971. color when mounting/unmounting changing into/from xmas/wedding sprites.
  4972. [Skotlex]
  4973. * Allowed itemdb_exists to return the dummy item. Enables "invalid" items
  4974. to be sold, traded, dropped, etc. [Skotlex]
  4975. * Corrected ASC_BREAKER. Int-based damage is applied after attribute fixes
  4976. and before card reductions. The skill now completely disregards left
  4977. hand weapon. [Skotlex]
  4978. * Standarized PF_MEMORIZE to be 50% cast time on all skills (instead of
  4979. -50% for targetted skills and -66% for ground skills >.>) [Skotlex]
  4980. * Cleared up the comment on what item_check does and how it works.
  4981. [Skotlex]
  4982. * Changed setting for skill_nocast flag 16. It is no longer a "pk-mode map"
  4983. setting, it's now a clone-forbidden skill. That is, skills with the flag 16
  4984. will never be copied by clones. If you use a PK-mode server, use flag 2 now
  4985. to forbid skills from common maps. [Skotlex]
  4986. * Default skills from not being cloned are Magnus Exorcism and Turn Undead.
  4987. * The map search free cell will now use the size of the map # of tries
  4988. before giving up when the spawn area is the whole map. Added a check to
  4989. inmediately give up when the number of spawn retries has reached the max
  4990. specified (no_spawn_onplayer = 100). [Skotlex]
  4991. * Cleaned up a bit the clone code to account for the unit flags
  4992. UF_NOPC/UF_NOMOB when the skill is not ground-based (accounts for self
  4993. skill that causes a ground-tile to be placed, like Dances). [Skotlex]
  4994. * Added pc_bonus_autospell_del, gives support for removing autospell
  4995. effects. When a negative rate is specified, it will decrease the chance of
  4996. casting (eg: You have two different cards with autospell Heal +20% each,
  4997. then do autospell -30. The second card will be cancelled, and the first one
  4998. will become Heal +10%) [Skotlex]
  4999. * npc_timers now will not restore the previous timer data when there's no
  5000. players attached (when it's strictly an npc timer). This should reenable
  5001. the old behaviour of getnpctimer returning the total ellapsed time since
  5002. "startnpctimer" even after the last label has been reached. However, this
  5003. behaviour won't apply to player-attached timers. [Skotlex]
  5004. * [Fixed]:
  5005. - MAPREGSQL overloading SQL table with temperory map registries.
  5006. - Incorrect perfomance calculation for MAPREGSQL loading and saving. [Lance]
  5007. 2006/06/22
  5008. * Guessed and added support for the packets 0x22a (idle) and 0x22b (spawn).
  5009. This should complete the required packets for PACKETVER 7. [Skotlex]
  5010. * Added support for the PACKETVER 7 packets in the "dummy" current
  5011. intravision implementation. [Skotlex]
  5012. * Fixed @autoloot being off by 0.01% when entering a manual value.
  5013. [Skotlex]
  5014. * Restored the "Secret" behaviour of Blast Mine and Claymore Trap where
  5015. each target is hit N times (where N is the number of mobs in the splash
  5016. area at the moment of triggering). [Skotlex]
  5017. * Updated the tools/stackdump script to also handle sig-plugin generated
  5018. backtraces. Now it will also auto-determine whether the exe needs a .exe at
  5019. the end or not. Help me test it as I want this script on stable NOW :X
  5020. [Skotlex]
  5021. * Usage is "stackdump <login/char/map> <txt/sql> [number]". When a number
  5022. is given, sig-plugin stackdumps are assumed, otherwise it parses the normal
  5023. stackdump as before. [Skotlex]
  5024. * Corrected autoloot so that you can specify rate with decimal precision
  5025. ("@autoloot 0.01" should work) [Skotlex]
  5026. 2006/06/21
  5027. * [Removed]:
  5028. - Redundant mob name copying. (it's already copied in mob_parse_dataset) [Lance]
  5029. * [Fixed]:
  5030. - Compilation warnings and errors.
  5031. [Improved]:
  5032. - Changed and moved IP sync status messages to elaborate more. [Lance]
  5033. * Tested and fixed resolve_hostbyname. Applied said function around most of
  5034. the code where needed. Removed includes for the OS/network system pretty
  5035. much from every file (our socket.c file should handle this) [Skotlex]
  5036. * Made the GM mute request bypass the manner_system setting. [Skotlex]
  5037. * Applied use of parse_hostbyname() in chrif.c to fix compilation errors.
  5038. [Skotlex]
  5039. * status_percent_change will now account for when the target's max hp/sp is
  5040. above INT_MAX. [Skotlex]
  5041. * [Added]:
  5042. - DNS (WAN) sync for those pesky disconnections (dynamic ip renewal). [Lance]
  5043. 2006/06/20
  5044. * Some cleaning up of OPTION related code. OPTION_XMAS and OPTION_FLYING
  5045. really ARE the same value clientside! (totally stupid), therefore I've
  5046. opted from removing the flying animation since it really just displays as
  5047. Xmas for others (and the correct fix involves adding a bunch of
  5048. class-change packets...) [Skotlex]
  5049. * Updated skill_require_db to place the Zeny requirements of ZenyNage and
  5050. Fling. [Skotlex]
  5051. * Fixed crash when non-players use ZenyNage. Added the correct Zeny check
  5052. in skill_check_condition, fixed the skill so that it's damage is based on
  5053. whatever zeny is specified in skill_require_db. [Skotlex]
  5054. * Can-act delay will not be reset when warping now. [Skotlex]
  5055. * Fixed Quagmire not altering walking-speed. [Skotlex]
  5056. * Silence now blocks skills both on begin/end casting. [Skotlex]
  5057. * Updated status_calc_bl so that when walking speed changes, the character
  5058. is made to rewalk so that the new speed takes effect inmediately. [Skotlex]
  5059. 2006/06/19
  5060. * Added Ayothaya to nopenalty and nopvp mapflags. [Evera]
  5061. * Combo-used Skills with State "move_enable" will now override the "can't
  5062. move delay". Fixes Break-Fall -> Jump-Kick. [Skotlex]
  5063. * Some more cleanups of battle_calc_damage to account for absorbed damage
  5064. reductions. [Skotlex]
  5065. * Moved back Soul Drain code from mob_dead to skill_counter_additional_effect.
  5066. Now we are back to where the skill animation does not shows, but you DO
  5067. get SP T.T' [Skotlex]
  5068. * Some cleanups and corrections in battle.c to account for negative
  5069. (absorbed) damage. [Skotlex]
  5070. * Fixed fame-list updating crashing char-sql server when the given char-id
  5071. just got into ranking. [Skotlex]
  5072. * Added missing Arunafeltz maps with information from NLZ [Evera]
  5073. 2006/06/18
  5074. * [Fixed]:
  5075. - Typo in status.c add_sc() using 'skill' instead of 'sk' as index, resulting in
  5076. filling the SkillStatusChangeTableArray with junk data.
  5077. - > NEEDS CONFIRMATION < Ends casting if player is knocked with freezing/stun/whatever
  5078. - Typo in parse_frommap. [Lance]
  5079. * [Fixed]:
  5080. - clif_initialstatus using SHRT_MAX instead of USHRT_MAX for status_point.
  5081. * [Temperory Fixed]:
  5082. - Crashing of SQL char-server in parse_frommap case 0x2b01. [Lance]
  5083. * [Removed]:
  5084. - Large part of scripted mob control commands are removed.
  5085. - Large part of scripted player control commands are removed.
  5086. - Scripted mob slaves changing master ID.
  5087. [Added]:
  5088. - Unit control commands.
  5089. - CALLBACK_NPCCLICK for scripted mobs, added this to db/const.txt too.
  5090. - Macro RECURSIVE_MASTER_CHECK in battle.c
  5091. [Modified]:
  5092. - buildin_skilluseid and buildin_skillusepos -> buildin_unitskilluseid
  5093. and buildin_unitskillusepos.
  5094. - md->callback_flag to short (double word). [Lance]
  5095. 2006/06/17
  5096. * Devotion absorbed damage will now appear to come from oneself (instead of
  5097. the original attacker changing directions towards the Crusader) [Skotlex]
  5098. * Updated clif_refres to send inventory, cart, and weight info. [Skotlex]
  5099. * Fixed intif_guild_memberinfoshort to not leave a dangling pointer when
  5100. someone logs out <.< [Skotlex]
  5101. * Changed some mapflags related to the eye of hellion quest. [MasterOfMuppets]
  5102. * [Added]:
  5103. - buildin_checkcell, buildin_mobwarp, buildin_pcattack.
  5104. [Improved]:
  5105. - buildin_skilluseid and buildin_skillusepos to accept a few more arguments.
  5106. - mob_script_callback to return sucess value [Lance]
  5107. * Fixed the party HP packets to send max HP 10000 and scale HP accordingly
  5108. when the player's HP doesn't fits in the packet's field. Fixes HP bars not
  5109. correctly displaying the % of life when max HP is above 32k. [Skotlex]
  5110. 2006/06/16
  5111. * Fixed option value being reset'ed on login (fixes cart/peco/falcon being
  5112. lost) [Skotlex]
  5113. * Corrected @speed to alter your base speed instead of battle one. Means
  5114. the change remains for much longer (until status_calc_pc is invoked, which
  5115. could be due to equipping/unequipping stuff) [Skotlex]
  5116. * Modified the bNoMagicDamage/bNoWeaponDamage bonuses to be a 0-100
  5117. setting. Meaning you can do bonus bNoMagicDamage,50; To make all magic
  5118. damage be reduced by half. This bonus stack, so two cards with
  5119. bNoMagicDamage,50 will give magic immunity. [Skotlex]
  5120. * Removed setting gtb_pvp_only and replaced it with gtb_sc_immunity which
  5121. specifies the threshold before the bNoMagicDamage starts blocking support
  5122. statuses as well. ie: gtb_sc_imunity: 75 will mean that "bonus
  5123. bNoMagicDamage,70;" reduces magic damage by 70%, but does not blocks heal
  5124. or support status, while "bonus bNoMagicDamage,80;" does. [Skotlex]
  5125. * Removed db_tables.sql as it's no longer used. [Skotlex]
  5126. * the mvp_sd is removed when the mob is the emperium and there's no
  5127. killer/exp-awarded (assumed killed by script), this prevents the on-kill
  5128. event from triggering and giving the castle to whoever damaged the most the
  5129. emperium without destroying it. [Skotlex]
  5130. * [Added]:
  5131. - Custom slave mobs to inherit the callback_flag.
  5132. - Added option #25 to buildin_setmobdata to set the callback_flag. [Lance]
  5133. * [Improved]:
  5134. - Cleaned up Custom Mob Script Callback codes. Looks much better now :B. [Lance]
  5135. 2006/06/15
  5136. * [Fixed]:
  5137. - intif_parse_RenamePetOk for not compatible with ANSI-C initialzation specification.
  5138. [Lance]
  5139. * Added indexes for loginlog and ipbanlist as they did not have any.
  5140. (note, someone already put the index on loginlog on trunk.) [Euph]
  5141. * Merged Adam's patch to let the char-server handle validation of
  5142. pet-name-change requests through the allowed char letters config. [Skotlex]
  5143. * Fixed "wedding_ignore_palette: yes" not working when relogging with the
  5144. gear already equipped. [Skotlex]
  5145. * Added blocking of the Kick skills when you are a Soul Linker. [Skotlex]
  5146. * Added enabling to turn off a kick-stance regardless of class. [Skotlex]
  5147. * Altered a bit how status_set_viewdata behaves in regards to Wedding/Xmas
  5148. options. [Skotlex]
  5149. * Added back OPTION_XMAS, but the actual value is missing! [Skotlex]
  5150. * Corrected chrif_save so that the player is not set offline on map-change.
  5151. [Skotlex]
  5152. * Added change-look support in pc_setoption when specifying OPTION_XMAS
  5153. [Skotlex]
  5154. * Fixed clif_parse_RemoveOption removing all options instead of just
  5155. Falcon/Cart/Peco [Skotlex]
  5156. * Fixed clif_send not sending packets to SELF when specifying AREA if the
  5157. source is not on the map yet. [Skotlex]
  5158. * Fixed and cleaned up script command 'equip' [Skotlex]
  5159. * Fixed 'autoequip' items. [Skotlex]
  5160. * Fixed Aspd not being updated in your status window after Agi/Dex
  5161. increasing statuses take effect. [Skotlex]
  5162. 2006/06/14
  5163. * Fixed map_nick2sd so that searching for "Adam" will not match a char
  5164. named "Adam Smith". Thanks to Adam for reporting it out. [Skotlex]
  5165. * Modified how luk reduces status changes by reducing the gap. Eg: resist =
  5166. vit; resist += (max - resist)*luk/300; [Skotlex]
  5167. * Added battle settings pc_max_sc_luk/mob_max_sc_luk to handle which is the
  5168. luk threshold at which you gain inmunity (defaults to 300). [Skotlex]
  5169. * Fixed buildin_getmobdata. It was trying to handle the first parameter as the
  5170. array to fill in. [blackhole89]
  5171. * Blocked again skill usage during marionette. [Skotlex]
  5172. * Fixed main.sql adding a key on char_id rather than account_id for the
  5173. char table. [Skotlex]
  5174. * Cleaned up character saving in char-sql, it no longer needs to query the
  5175. database to see if the player exists on each char-save, instead it checks
  5176. the received data against the online-players db. No such fix is required
  5177. for char-txt. [Skotlex]
  5178. * Added an error message on the char-server when the received player data
  5179. size does not matches with the expected size (should avoid the crash that
  5180. happens on such a memcpy). [Skotlex]
  5181. * [Improved]:
  5182. - script_save_mapreg for MapregSQL Saving to display perfomance only in slow
  5183. queries. [Lance]
  5184. 2006/06/13
  5185. * Updated mob_db.sql and item_db.sql to latest. [Skotlex]
  5186. * Added account_id index to char table. Thanks to Buuyo for reporting it.
  5187. Sql users apply upgrade_svn7146.sql NOW. [Skotlex]
  5188. * Marionette and Devotion will now check raw distance and ignore obstacles
  5189. and the like. [Skotlex]
  5190. * Added irc_channel_pass setting and prevent crashing when irc server
  5191. lookup by host fails. Thanks to Trancid for the details. [Skotlex]
  5192. * [Fixed]:
  5193. - clif_parse_GetCharNameRequest displaying false alarm for legitimate GM snooping.
  5194. [Lance]
  5195. * Added support for reading correctly status change data from Guild and
  5196. Homun skills. [Skotlex]
  5197. * Added support for reading Homun skill data (which means the HM skills are
  5198. now safe to add to skill_db, skill_require_db, etc) [Skotlex]
  5199. * Oppositions can't be made during WoE now. [Skotlex]
  5200. * Fixed a few compiler warnings from VC [Skotlex]
  5201. * Commented out the Homunculus Skills<->Status Change link which was
  5202. causing some memory corruptions. [Skotlex]
  5203. 2006/06/12
  5204. * [Fixed]:
  5205. - buildin_npcshopitem not allocating extra 1 block of terminator.
  5206. [Added]:
  5207. - Modified versions of Dj-Yhn's buildin_npcshopdelitem and buildin_npcshopadditem
  5208. [Lance]
  5209. * Updated clif_disp_onlyself to not use dynamic memory and write directly
  5210. to the player's buffer. [Skotlex]
  5211. * Updated @noask to also tell the user what he has just rejected (added
  5212. msg_athena entries for each of the different requests). Also updated it to
  5213. use clif_disp_onlyself. [Skotlex]
  5214. * Fixed a pair of missing initializers in the clif storage functions.
  5215. [Skotlex]
  5216. * @heal no longer displays a healing animation. Fixes the client believing
  5217. you couldn't be healed more than 32K. [Skotlex]
  5218. * Now you can use any skills (except encore/dancing ones) while under
  5219. Longing for Freeding. [Skotlex]
  5220. * Now you can use any skills while under Marionette Control. [Skotlex]
  5221. * Fixed npc_checknear's distance check returning the opposite of what it
  5222. should (false when the range is correct and viceversa) [Skotlex]
  5223. * Added a warning on item loading when an item is of equippable type but
  5224. has no equippable position. [Skotlex]
  5225. * Turning an alliance to an opposition won't work now during WoE [Skotlex]
  5226. * Slaves can summon other mobs now. The only ones who can't do this are
  5227. player summoned mobs. [Skotlex]
  5228. * Merged the following functions for faster processing of items: [Skotlex]
  5229. clif_storageitemlist + clif_storageequiplist = clif_storagelist
  5230. clif_guildstorageitemlist + clif_guildstorageequiplist = clif_guildstoragelist
  5231. clif_itemlist + clif_equiplist = clif_inventorylist
  5232. Note that the changes are a bit substantial and need proper testing!
  5233. * Increased max knockback value support to 25. [Skotlex]
  5234. * [Optimized]:
  5235. - buildin_npcshopitem memory allocation to calculate before reallocating.
  5236. [Lance]
  5237. * Made guild member exp an unsigned int. [Skotlex]
  5238. * Various cleanups to the npc clicking related functions. Should fix quite
  5239. some possible crashes from crafted packets. [Skotlex]
  5240. * Added overflow checks for bonus settings mdef_rate/def_rate. [Skotlex]
  5241. * Added missing update of INT after a buf. [Skotlex]
  5242. * Small cleanup of how SC_BLEEDING works. [Skotlex]
  5243. * Fixed party_foreach_samemap invoking the function on the CASTER instead
  5244. of on the party members. [Skotlex]
  5245. * Modified clif_parse_NpcClicked to handle the different situations with
  5246. different bl-objects (attack on players/mobs, click on npcs or mobs with
  5247. npc attached) [Skotlex]
  5248. 2006/06/09
  5249. * [Fixed]
  5250. - Compilation warnings on guild.c and int_guild.c [Lance]
  5251. * Added structure party_data and party_member_data to the map server to
  5252. hold party-specific required information about parties including
  5253. Monk/TK/SG/SN states and party member count. Family information is still
  5254. missing, and handling of the state should probably be done by the
  5255. char-server, too... [Skotlex]
  5256. * party Hp updates are no longer done each time the Hp is modified, but
  5257. together with the party xy timer. It means HP-bars will be a bit delayed
  5258. before being updated, but packet consumption should be much less during
  5259. heated battles. [Skotlex]
  5260. * Fixed MoM's typo [Vicious]
  5261. * Fixed map_readafm missing strcpy(afm_name, m->name). [Skotlex]
  5262. * [Improved]:
  5263. - npc_click interception on BL_MOB and BL_PC to let sd act accordingly.
  5264. [Lance]
  5265. * [Fixed]:
  5266. - Execution of sleep/sleep2 more than once will hang the script_state.
  5267. [Lance]
  5268. * Fixed @mapinfo displaying incorrectly maps with nosave which send you
  5269. back to your last savepoint. [Skotlex]
  5270. * Moved guild_exp_rate from a mapserver battle config setting to a char
  5271. server config. It no longer modifies the total taxed exp as seen on the
  5272. guild information window, but directly modifies the exp that the guild
  5273. earns. [Skotlex]
  5274. * Added an error report and correction when the map server receives a guild
  5275. from the char-server with more guild members than MAX_GUILD. [Skotlex]
  5276. * Changed the interval between waterballs back to 125 [MasterOfMuppets]
  5277. * Fixed a typo in char_sql/char.c, thanks to Euph [MasterOfMuppets]
  5278. 2006/06/08
  5279. * Modified guild exp to be an unsigned int rather than a signed one.
  5280. [Skotlex]
  5281. * Fixed @skilltree printing out Unknown job for most targets used.
  5282. [Skotlex]
  5283. * Cleaned clif_pvpset to not send the packet to nearby characters when the
  5284. source is GM-hidden. May help fix the crash on PvP with gm-hidden
  5285. characters. [Skotlex]
  5286. * Modified map_freeblock_unlock so that aFree errors will report the
  5287. file/line that INVOKED the function rather than the function itself.
  5288. [Skotlex]
  5289. NOTE: Do NOT disable the memory manager as that will break this change.
  5290. This change is to be temporarily set until the afree'd error can be
  5291. resolved.
  5292. * Updated mob_npc_warp to a three-state config switch. 0 disables. 1 enable
  5293. only on warps that don't lead to nobranch maps. 2 - enable on all warps.
  5294. [Skotlex]
  5295. * Adjusted Don't Forget Me, Defender, Longing to use all val entries, and
  5296. to hold the speed adjustment value rather than speed penalty (eg: 125
  5297. instead of 25). [Skotlex]
  5298. * Cleaned up status_calc_speed so that speed penalties are correctly
  5299. handled (eg: 25% penalty is speed*100/75, not +speed*25/100). Thanks to
  5300. Euph for pointing it out and Belle for the speed mechanics. [Skotlex]
  5301. 2006/06/07
  5302. * Fixed Sense using mdef instead of mdef2 [Skotlex]
  5303. * Fixed item-skills not showing up on login. [Skotlex]
  5304. * Cleaned up clif_parseLoadEndAck, by testing which packets are required
  5305. only on first-login and which ones are required on all map-changes.
  5306. Skill-tree, Exp, Skill Points and most of the basic status are no longer
  5307. sent on map-change (items, cart data and zeny still need to be sent one
  5308. very map-change). [Skotlex]
  5309. * Fixed the mob state not being set to Berserk/Angry correctly after the
  5310. mob reaches the target's location. [Skotlex]
  5311. * Added config setting mob_npc_warp, when set to yes, enables mobs to be
  5312. warped between maps when stepping on a npc-warp. [Skotlex]
  5313. * Added monster_ai setting &64, when enabled makes a mob run to any nearby
  5314. npc-warp when their current target has switched maps. [Skotlex]
  5315. * Added pc_calcexp to calculate individual exp bonuses acquired from exp's
  5316. source (race bonus cards, SG Exp skills, pk-mode higher level exp) [Skotlex]
  5317. * pc_gain_exp now also receives the source of the exp, when said source
  5318. exists, bonuses are applicated as needed. [Skotlex]
  5319. * Added status_kill when capturing a mob, should take care of the mob not
  5320. respawning after caputed. [Skotlex]
  5321. * Fixed item info not displaying the found item id [Skotlex]
  5322. * Fixed item info not displaying the weight value properly. [Skotlex]
  5323. * Adjusted status resistances and durations taking as base Viccious's info
  5324. from the kro guidebook. [Skotlex]
  5325. * Moved souldrain code from skill_counter_additional_effect to mob_dead. It
  5326. should display the skill animation correctly now. [Skotlex]
  5327. * Adjusted several sc rate/time reductions as pointed out by Playtester.
  5328. [Skotlex]
  5329. - Luk now plays a luk/10 reduction role rather than a luk/3 one.
  5330. * Removed char_nick2id from char-sql server as it's no longer needed.
  5331. [Skotlex]
  5332. * Fixed quitting the map server not properly saving the storage before
  5333. deleting it. Thanks to Adam for pointing it out. [Skotlex]
  5334. * Cleaned status_get_sc_tick/status_get_sc_def to use the status_data
  5335. function. [Skotlex]
  5336. * SC_STOP's chance and duration can't be reduced anymore. [Skotlex]
  5337. * Storm Gust no longer has a 100% chance to freeze by passing mdef, now it
  5338. has a 300% base chance reduced by mdef and the like as explained out by
  5339. Tharis. [Skotlex]
  5340. * Frost Diver/Frost Nova's base freezing chance is no longer affected by
  5341. target's int. [Skotlex]
  5342. * [Improved]:
  5343. - mob_dead not to remove script controlled monsters with player sprites.
  5344. [Added]:
  5345. - buildin_mobdeadsit :D [Lance]
  5346. * [Fixed]:
  5347. - temp++ gets issued before if(mvp_damage<(unsigned int)md->dmglog[i].dmg) in
  5348. mob_damage. Thanks to seahorsix. [Lance]
  5349. * [Fixed]:
  5350. - Corrected login-server SQL to use *((ulong *)p) instead of (ulong)p [Lance]
  5351. * [Optimized]:
  5352. - list and size not being initialized (size get intialized in default: switch case)
  5353. Eliminated default case and initialized list and size at the beginning. [Lance]
  5354. 2006/06/06
  5355. * Hopefully fixed for sure mobs getting extra stats when changing-class due
  5356. to the mobs level up setting. [Skotlex]
  5357. * Removed a piece of code that should no longer be needed due to the
  5358. combo-skill setting (inf = self, inf2 = no-target-self) which is blocking
  5359. self-skills from being used on others (pets/mobs should be allowed to do
  5360. that) [Skotlex]
  5361. * Added a status_check_skilluse call in Sightblaster to prevent it from
  5362. hitting hidden/cloaked/act-dead/etc players. [Skotlex]
  5363. * Fixed firewall counter going down by 2 each hit rather than 1. [Skotlex]
  5364. * Fixed Soul Burn not zapping away all SP. [Skotlex]
  5365. * The monsters can level up setting will not take effect when the mob's
  5366. level is LESS than their db counter-part (should prevent under-leveling
  5367. causing underflows and semi-immortal mobs) [Skotlex]
  5368. * Fixed mvp-exp calculations being messed up with more than one attacker.
  5369. [Skotlex]
  5370. * Changed the mob exp race bonus so that each player gets their own bonus,
  5371. rather than the killer's bonus applying to everyone. Still not the
  5372. "correct" way, but one step closer to it. [Skotlex]
  5373. * [Fixed]:
  5374. - Allocation of event_list in guild_npc_request_info to aCalloc so
  5375. memcpy(ev->name,event,strlen(event)) will have a null terminator. [Lance]
  5376. 2006/06/05
  5377. * Fixed a crash when using SL_SMA and the "combo" ain't ready. [Skotlex]
  5378. * Hopefully fixed changing a mob's class causing them to get all sort of
  5379. stat bonuses due to the mobs-level-up setting. [Skotlex]
  5380. * Changed hit, flee, cri, flee2, def2 and mdef2 to signed short, def, mdef
  5381. to signed char to correctly account for cards with penalties in said stats.
  5382. [Skotlex]
  5383. * Fog of Wall won't affect the caster now in any way. [Skotlex]
  5384. * Added clif_fixpos packets before attacking for the first time to clear
  5385. any position sync issues with the client. [Skotlex]
  5386. * Fixed skill_unitsetting using layout->count for the for instead of
  5387. group->count [Skotlex]
  5388. * Added SC_INCDEXRATE/SC_INCAGIRATE. NPC_POWERUP/NPC_AGIUP now correctly
  5389. increase dex/agi by 40% per level. [Skotlex]
  5390. * Fixed char-sql server not deleting character variables when deleting a
  5391. char. [Skotlex]
  5392. * Corrected cloaking not ending on attack if you are near a wall. [Skotlex]
  5393. * Updated pc_bonus to use cap_value on all status_data modifiers to prevent
  5394. overflows/underflows. [Skotlex]
  5395. 2006/06/03
  5396. * Fixed @mi/@mobinfo not showing the name collumns correcly [shadow]
  5397. * Solved the bug that made firewalls only castable a few times until [MasterOfMuppets]
  5398. you relogged. Thanks to Euph for the fix.
  5399. * Added variable other_mapserver_count to chrif.c which holds total count
  5400. of connected map-servers. By using this we prevent sending unnecessary
  5401. packets to the char-server when there's no more map-servers connected.
  5402. [Skotlex]
  5403. - Affected packets are whispers, announces, party messages, guild messages.
  5404. 2006/06/02
  5405. * Fixed Visual Studio 7.1 Solution File (Login TXT and Map TXT were removed)
  5406. * Fixed a bug in unit_can_reach_bl which breaks path seeking when the
  5407. target is near obstacles. [Skotlex]
  5408. * Updated offensive use of Sanctuary to function like on the official servers [MasterOfMuppets]
  5409. * Changed the interval between waterballs from 150 to 250 milliseconds [MasterOfMuppets]
  5410. * Corrected clif_parse_takeitem to ALWAYS return a NAK packet when it
  5411. fails. Fixes cases where the client gets "stuck" and refuses to let you
  5412. pick any items. [Skotlex]
  5413. * Removed the walk delay from firewall and changed its knockback [MasterOfMuppets]
  5414. to 1 tile to make it act more like in the official servers.
  5415. * Some cleaning of the mob slave ai. [Skotlex]
  5416. * Corrected Brandish Spear to work on levels above 10. [Skotlex]
  5417. * Updated Two-HandQuicken, One-HandQuicken to give 30 +2*lv% aspd-rate for
  5418. skill levels above 10 (meant for boss casted skills) [Skotlex]
  5419. * Fixed Spear-Quicken messing with the calc_flag [Skotlex]
  5420. * Fixed Freeze/Stone/Benedictio not changing your elemental LEVEL to 1.
  5421. [Skotlex]
  5422. * [Fixed]
  5423. - Yet another compilation warning. [Lance]
  5424. 2006/06/01
  5425. * Altered status_calc_pc so that equipment scripts are ran before
  5426. card-scripts. [Skotlex]
  5427. * Fixed pc_bonus to not underflow/overflow when adjusting def/mdef.
  5428. [Skotlex]
  5429. - These two together, should fix Tao Gunka Card.
  5430. * npc_debug_warps() will now be invoked if warp_point_debug is set.
  5431. [Skotlex]
  5432. * Updated item_db.sql/mob_db.sql to current. [Skotlex]
  5433. * Fixed NPC_SELFDESTRUCTION not showing nor dealing damage. [Skotlex]
  5434. * NPC_TRANSFORMATION/NPC_METAMORPHOSIS will now preserve the original mob
  5435. without removing it when the skill level is greater than one. [Skotlex]
  5436. * Added SC_DANCING declaration in the Status Change tables to signal it
  5437. modifies Walk speed. [Skotlex]
  5438. * Fixed pc_damage setting your canlog_tick even if the damage has no source
  5439. (eg: poison, berserk) [Skotlex]
  5440. * Berserk's aspd bonus now stacks with other aspd bonuses, but is still
  5441. affected by Quagmire/Forget-me-not. [Skotlex]
  5442. * Corrected setting slaves_inherit_mode to not apply to morphosis skills.
  5443. [Skotlex]
  5444. * Corrected pc_setoption to invoke status_calc_pc when getting/removing the
  5445. cart. [Skotlex]
  5446. * Fixed @mobinfo displaying the wrong element. [Skotlex]
  5447. * Fixed Autoblitz taking into account target's luck rather than attacker's
  5448. [Skotlex]
  5449. * Fixed slaves warping endlessly to their master when the master-slave
  5450. distance exceeds 30. [Skotlex]
  5451. * SC_ORCISH will now be dispelled on logout (if debufF_on_logout is set)
  5452. [Skotlex]
  5453. * Removed attackrange/attackrange_ from TBL_PC, corrected clif.c using the
  5454. incorrect range variable. [Skotlex]
  5455. * You can now equip/unequip stuff while the storage is open. [Skotlex]
  5456. 2006/05/31
  5457. * Fixed Soul Drain not really giving you SP [Skotlex]
  5458. * [Fixed]:
  5459. - Suppressed compilation warning in chrif.c [Lance]
  5460. * [Fixed]:
  5461. - Guys can't go across map-servers :( [Lance]
  5462. * [Fixed]:
  5463. - Restoration and saving of sd->npc_id must be done every time. [Lance]
  5464. * Added back the Freeze/Petrify adjustments of -50%def and +25%mdef (when
  5465. where these lost?). Thanks to Buuyo for pointing it out. [Skotlex]
  5466. * Corrected the mob_ai&2 setting triggering rude-attacked due to can't walk
  5467. delay. [Skotlex]
  5468. * Made the char_name_option char_athena.conf setting apply to parties and
  5469. guilds as well. It cannot be applied to pets yet without adding a
  5470. change-name-request interserver packet. [Skotlex]
  5471. * Moved the JOB_* defines from map.h to mmo.h, update char.c to use them.
  5472. [Skotlex]
  5473. * Added function char_read_fame_list for famelist reading. Invoked it on
  5474. init, and made it be sent automatically to connecting map servers.
  5475. [Skotlex]
  5476. * Some cleaning of the fame-list reading code. [Skotlex]
  5477. * Some cleaning of the fame-update code, fixed a logic bug which made the
  5478. ranking list fail to display the correct ranker names. [Skotlex]
  5479. * Removed typedef bool from socket.h and included cbasetypes.c instead.
  5480. [Skotlex]
  5481. * Cleaned up and corrected the calculation of hit/flee/cri/lucky dodge in
  5482. status_calc_bl. [Skotlex]
  5483. * [Fixed]:
  5484. - Incorrect SQL syntax in login.c (missing collumn) [Lance]
  5485. * [Improved]:
  5486. - SQL upgrade file for the new loginlog. Thanks to ultramage. [Lance]
  5487. * [Fixed]:
  5488. - nullpo in pet.c caused by equipping without checking if the pet is available.
  5489. [Lance]
  5490. * [Fixed]:
  5491. - Latest client support completed! [Lance]
  5492. * [Fixed]:
  5493. - Missing #include for cbasetypes.h in login server SQL.
  5494. - Logic errors in run_script [Lance]
  5495. * [Added]:
  5496. - Partial support for latest login packet. But it seems to have a new security
  5497. module. [Lance]
  5498. 2006/05/30
  5499. * [Improved]:
  5500. - Fake NPC interface to use real NPCs.
  5501. - Scripting interface to restore and save sd->npc_id. [Lance]
  5502. * Added function pc_check_skilltree for checking if you unlocked new
  5503. tree-skills when raising non-passive skills. [Skotlex]
  5504. * Fixed flee/hit calculation in status_calc_bl to account for bonuses from
  5505. the base status. [Skotlex]
  5506. * [Fixed]:
  5507. - Compatibility problems in login.c [Lance]
  5508. * Fixed pets ignoring can-act delays for skill usage. [Skotlex]
  5509. * [Added]:
  5510. - Mercenary.c in VS.NET 2005 project files
  5511. [Improved]:
  5512. - loginlog using unsigned long `ip` field.
  5513. (Please check for compatibility problems). [Lance]
  5514. * Fixed status_calc_pc not zero'ing ALL vars it should, allowing certain
  5515. bonuses (like effect-on-hit) to stack. [Skotlex]
  5516. * slaves inherit speed setting will now work regardless of whether the
  5517. slave or master has the MD_CANMOVE mode bit. [Skotlex]
  5518. * Call Slave now invokes slaves on a 5x5 area around master. [Skotlex]
  5519. * AL_TELEPORT will fail when used by slave mobs. [Skotlex]
  5520. * Added NPC_ENERGYDRAIN, NPC_MENTALBREAKER to the list of undodgeable
  5521. attacks. [Skotlex]
  5522. * Fixed status_damage not setting your HP to 0 when you died [Skotlex]
  5523. * Fixed the pcbonus2 warnings using the wrong value before printing the
  5524. invalid Element error. [Skotlex]
  5525. * Fixed underflow issues when calculating dmotion. [Skotlex]
  5526. * Fixed Absorb Spirit Spheres [Skotlex]
  5527. * Added battle_config min_chat_delay (default 0, battle/client.conf)
  5528. specifies in ms what is the min delay between player sent chats
  5529. (whisper/global/party/guild). Messages that exceed this threshold are
  5530. silently ignored for now (perhaps need to add a "DON'T SPAM" reply to the
  5531. player?) [Skotlex]
  5532. * [Fixed]:
  5533. - signed/usigned problem in sprintf and fscanf @ mercenary.c [Lance]
  5534. * Rewrote/cleaned up @petfriendly. [Skotlex]
  5535. * Cleaned up final part of status_calc_pc (flags 2/4 do not exist) [Skotlex]
  5536. * Updated attr_fix_table reading code to account for ELE_MAX (will
  5537. correctly read bigger elemental tables if ELE_MAX is changed) [Skotlex]
  5538. * Aggressive mobs will now use battle_check_range rather than mob_can_reach
  5539. to decide whether to lock-on or not to a target within sight-range. [Skotlex]
  5540. * Added warnings in mob_readdb when the mob's element is invalid. [Skotlex]
  5541. * Added error messages in pc_bonus* functions when an invalid element is
  5542. passed to the relevant bonuses. [Skotlex]
  5543. * [Optimized]:
  5544. - clif_specialeffect to use the enums.
  5545. [Improved]:
  5546. - buildin_specialeffect and buildin_specialeffect2 to accept effect area
  5547. definition. [Lance]
  5548. * [Added]:
  5549. - Visual Studio .NET 2003 includes for mercenary.c [Lance]
  5550. * Removed the on-die specific code from unit_remove_map and placed it on
  5551. the corresponding *_dead functions. unit_remove_map should never assume the
  5552. char died, it is just a "remove from map" function. [Skotlex]
  5553. * Updated status_damage to handle the general death code (clearing status
  5554. changes, clearing skill related data, sending death packet, etc). The
  5555. return value from the *_dead functions will tell it what to do or not with
  5556. the object (death aborted, clear it from map/memory, etc) [Skotlex]
  5557. * Cleaned up pc_dead to take advantage of the fact that status changes are
  5558. not ended until after the function. [Skotlex]
  5559. * Disabled ontouch npcs triggering on hidden/chase-walk characters.
  5560. [Skotlex]
  5561. * Updated/adapted current Homun code to use the status_data update.
  5562. [Skotlex]
  5563. * Updated map-server Makefile to compile mercenary.* files. [Skotlex]
  5564. * [Fixed]:
  5565. - Pets attacking even master is dead. [Lance]
  5566. * Fixed battle_calc_weapon_attack damage capping damage to a minimum of 0
  5567. (negative values should be allowed when attack is absorbed by target's
  5568. element) [Skotlex]
  5569. 2006/05/29
  5570. * [Fixed]:
  5571. - Missing ';' in item #4358 [Lance]
  5572. * [Fixed]:
  5573. - Missing maps in map index database. [Lance]
  5574. * [Fixed]:
  5575. - Battle mechanics in battle_check_target [Lance]
  5576. * [Fixed]:
  5577. - Typo in mob_dead causing crash. Thanks to reddozen and his gang for testing.
  5578. [Lance]
  5579. * Cleaned up friend list saving and fixed loading of friends.txt file
  5580. (char-txt) [Skotlex]
  5581. * Added the Arunafeltz maps, not tested yet [Playtester]
  5582. - someone with an up-to-date client should test them
  5583. * Fixed pc_gainexp resetting your exp to 0 rather than adding it in...
  5584. [Skotlex]
  5585. * Corrected aspd calculation code to avoid negative overflows. [Skotlex]
  5586. * Fixed battle_check_target check on BCT_ALL to check versus BL_CHAR
  5587. instead of BL_PC and BL_MOB [Skotlex]
  5588. * [Fixed]:
  5589. - Declaration of int map_getcellp(struct map_data*,int,int,cell_t); [Lance]
  5590. * Removed Undead being immune to poison status. [Skotlex]
  5591. * Removed speed penalty from SC_SKA [Skotlex]
  5592. * Fixed SC_SPURT triggering on Soul Linkers. [Skotlex]
  5593. * SC_DODGE won't be dispelled on death now. [Skotlex]
  5594. * [Fixed]:
  5595. - pc_follow_timer possible triggering crash.
  5596. - pc_reg_received to use battle_status.hp instead of status.hp
  5597. [Added]:
  5598. - macro map_id2index for non-cyptic mapid to mapindex conversion. [Lance]
  5599. * Added a division by zero check in mob_dead to prevent the (impossible)
  5600. case where a mob dies with received damage of zero. [Skotlex]
  5601. * Modified skill_get_range2 to return range 9 for skills with range 0 for
  5602. Non-Players. This usually signals Self skills, and mobs/pets should be able
  5603. to use them in other characters. [Skotlex]
  5604. * Optimized a bit the SC_PROVOKE code (to use val3/val4) [Skotlex]
  5605. * Fixed draining when the amount drained is negative (invoke zap rather
  5606. than heal) [Skotlex]
  5607. * Implemented GS_FLING as per the current skill description. [Skotlex]
  5608. * Fixed pc_readparam/pc_setparam to use battle_status.hp/sp rather than
  5609. status.hp/sp, fixes scripts reading the wrong Hp/Sp values [Skotlex]
  5610. * Added some missing SC_* entries on the initial listing (potion related
  5611. and speed up ones) [Skotlex]
  5612. * Fixed function declaration of map_getcellp() [Skotlex]
  5613. * [Fixed]:
  5614. - status.c:920: warning: 'mbl' might be used uninitialized in this function
  5615. - skill.c:6648: warning: 'matk_min' might be used uninitialized in this function
  5616. - skill.c:6648: warning: 'matk_max' might be used uninitialized in this function
  5617. - skill.c:2826: warning: 'sid' might be used uninitialized in this function [Lance]
  5618. * [Optimized]:
  5619. - Removed unused variable (account_id) in storage_guild_storagesaved.
  5620. * [Optimized]:
  5621. - Removed unused checks for unsigned data type and possible logic error for
  5622. char type (gcc treats char as unsigned). [Lance]
  5623. * [Fixed]:
  5624. - Relogging in with 0 HP didn't trigger dead event. [Lance]
  5625. 2006/05/28
  5626. * Added functions status_revive, pc_revive and mob_revive to handle revival
  5627. (it doesn't handles player respawning, though). Fixed reviving @ commands.
  5628. [Skotlex]
  5629. * Added SC_BLADESTOP to the skill enum at the beginning of status.c (fixes
  5630. Bladestop causing an unknown status change message). [Skotlex]
  5631. * Fixed MSS_DEAD state skills not triggering. [Skotlex]
  5632. * Changed undeads to by default always sustain 100% of the damage from firewalls [MasterOfMuppets]
  5633. * [Fixed]:
  5634. - script functions that doesn't pass references, thanks to End_of_exam. [Lance]
  5635. * [Protected]:
  5636. - clif_parse_LGMmessage from possible hacks [Lance]
  5637. * Fixed unable to store n items into storage unless n was the total amount
  5638. of items you had. [Skotlex]
  5639. * Suppressed compilation warnings (unsigned and signed mismatches) [Lance]
  5640. 2006/05/27
  5641. * Added structure status_data which holds status-related information (str,
  5642. agi, etc, speed, amotion, adelay, dmotion, weapon-damage, race, size, etc)
  5643. and weapon_atk structure with the weapon specific info (atk, atk2, element)
  5644. to be used by all combat structures (TODO: Homun needs to be updated to use
  5645. it). This in change involves a LOT of changes throughout the code and many
  5646. optimizations were done as well. Partial list (see svn changelog for complete
  5647. changes): [Skotlex]
  5648. - NOTE: Changes are substantial! I tested a bunch of stuff and all the
  5649. skills I changed the most, but it is possible there are unnoticed bugs
  5650. remaining to fix!
  5651. - Cleaned up TBL_PC, TBL_MOB, TBL_PC and mob_db structures to use status_data.
  5652. - Split damage received functions into pc_damage/pc_dead and mob_damage/mob_dead
  5653. - Added status functions to deal with damage and healing (status_damage,
  5654. status_heal, status_percent_change) and a bunch of defines for easier
  5655. handling of them (status_percent_heal, status_percent_damage,
  5656. status_fix_damage, status_kill, etc). Objects must be hurt/healed through
  5657. THIS, pc_damage/mob_damage most no longer be directly invoked!
  5658. - Rewrote and cleaned up battle_calc_misc_attack
  5659. - Merged config options pc_attack_attr_none, mob_attack_attr_none,
  5660. pet_attack_attr_none into attack_attr_none (type 4)
  5661. - Removed config options player_defense_type, monster_defense_type,
  5662. pet_defense_type in favor of weapon_defense_type
  5663. - Modified skill_calc_heal to take into account the MEDITATION bonus.
  5664. - Modified Slim Pitcher so it will work when casted by non-players. Will
  5665. now also work with SP-healing items.
  5666. - Rewrote Freedom of Cast code to use function status_freecast_switch to
  5667. switch adelay/speed when cast begins/ends.
  5668. - Modified Magic Power to store amplified MATK/MATK2 in val3/val4 for
  5669. easier updating when used in conjunction with ground skills.
  5670. - Fixed Asura Strike being usable from within a combo regardless of combo skill.
  5671. - Added status_calc_bl which does status-change related calculations using
  5672. as base the base_status of the bl object and the SCB_* flag passed. This is
  5673. invoked on status changes, and status_calc_pc will no longer be invoked
  5674. (which results on much faster status-change calculations).
  5675. - pc_clean_skilltree will now also remove item-granted skills.
  5676. - Learning skills will now only invoke status_calc_pc when the skill is passive.
  5677. - Cleaned up pc_check_base/job_lvup to only invoke the lv-up related
  5678. packets and functions ONCE regardless of skill-levls earned.
  5679. - Cleaned up pc_ regen related functions.
  5680. - Made player-sprite mobs have item pickup animation and walkdelay when taking items.
  5681. - Clones will copy a player's base status rather than battle status (so
  5682. status-change alterations are not cloned)
  5683. 2006/05/26
  5684. * Part B of the homunculus code. [blackhole89]
  5685. While most of the homunculus handling functions are in now, it still lacks
  5686. code required for players to create it.
  5687. Given I haven't screwed up, you could master yourself one through the DB though.
  5688. * Fixed crashing in mob.c [Lance]
  5689. * Patches to allow everything to work right. + 1 more sample script. [Lance]
  5690. * Mob control engine tested 99% working so far. [Lance]
  5691. * Change scripting engine's NPC scope vars to dot (.) style.
  5692. * Improved and (should be fully) fixed the mob control engine. [Lance]
  5693. * Fixed typos in char.c [Lance]
  5694. * Rewrote fame rank lists system to reduce char-server load, as requested by
  5695. Skotlex: now it has a copy of those lists, and updates only the proper one
  5696. when needed instead of rebuilding all from saves everytime (which required
  5697. to always save the character before rebuilding the lists) [DracoRPG]
  5698. - Note it hasn't been compiled nor tested with SQL, please do it for me
  5699. 2006/05/25
  5700. * Simplified ASC_BREAKER by making it a BF_WEAPON attack with an additional
  5701. int-based damage component (which is added right before elemental
  5702. modifiers) as described by AuronX. Pending further refining. [Skotlex]
  5703. * Resolved differences between Stable/Trunk msg_athena.conf. [Lupus]
  5704. Fixed atcommand @request MSG numbers accordinly.
  5705. On adding new MSG strings, plzm reserve them in STABLE msg_athena.conf, too
  5706. * Added NoVending mapflag. You may disable vending in the streets [Lupus]
  5707. * Increased capacity for Account Variables to 64 [Skotlex]
  5708. * Reverted Intravision implementation to that of stable's. [Skotlex]
  5709. * Corrected Login Server taking it's first argument as both login config
  5710. and lan config. [Skotlex]
  5711. * Fixed mob control commands.
  5712. * Fixed memory leak in scripts (again). Still have a few lying. [Lance]
  5713. 2006/05/24
  5714. * Fix to the slave AI problem. [erKURITA], by [Skotlex], reported by Niktout.
  5715. * Item sharing now shares the same rules as exp sharing (no sharing when
  5716. dead, or idle, etc) [Skotlex]
  5717. * Fixed summoned slaves being able to cast onspawn summon-skills (slaves
  5718. aren't supposed to be able to call minions) [Skotlex]
  5719. * The clif_skill_poseffect packet will not be invoked in Snap unless the
  5720. skill was successful. May fix the client-position lag. [Skotlex]
  5721. * Merged item_db.sql from stable (the one from stable was more recent than
  5722. the one of trunk...) [Skotlex]
  5723. * Corrected SL KA* spells not working on other Soul Linkers. [Skotlex]
  5724. * Corrected a pair of incorrect sql query parsing logic in the login-sql
  5725. ban request packet. [Skotlex]
  5726. 2006/05/23
  5727. * Corrected mob angry mode, now it only "restores" itself after being hit
  5728. when the mob has no target within their range of sight rather than on
  5729. picking a new target. [Skotlex]
  5730. * Fixed wedding sprite where it would stay active after unequipping. [Zido]
  5731. * Some cleanup of run_script, should fix the memory leak there. [Skotlex]
  5732. * the charname request hack message has been downgraded to only include
  5733. GM-invisible characters. [Skotlex]
  5734. * corrected clif_charnameack to send negative ID when a disguised player
  5735. asks for it's own disguised name. [Skotlex]
  5736. * Cleaned up the disguised target-id checks taking into considering that
  5737. the only character that sees a negative ID is the same disguised character.
  5738. [Skotlex]
  5739. * Modified battle_calc_weapon_attack to use new flags pdef/pdef (pierce
  5740. defense), Investigate and Icepick will now use the final def/vit-def values
  5741. rather than the base ones. [Skotlex]
  5742. * The move-enable condition checks for skills are now checked for only when
  5743. on skill use, not at cast-end time. [Skotlex]
  5744. * Corrected clif parse name request failing on disguised characters [Skotlex]
  5745. * Corrected Soul Drain draining from all non-ground-based skills including
  5746. non-magic attacks. [Skotlex]
  5747. * Corrected pc_setoption to change the option and then change class.
  5748. changing option-wedding will automatically convert the view-class as well.
  5749. [Skotlex]
  5750. * Corrected the 15% drop rate increase when killing higher level mobs in
  5751. pk-mode triggering for all mobs with lower level than yourself. Thanks to
  5752. Vayu. [Skotlex]
  5753. * Fixed typo (this time it's not my fault) in script_reload() clearing the same
  5754. db each time o_o [Lance]
  5755. * Fixed sleep command. [Lance]
  5756. * Added 'setd' support for local NPC scope (') variables. [Lance]
  5757. * [Scripting Engine Update] New variables are ready to be used. [Lance]
  5758. 2006/05/22
  5759. * Updated skill_delayfix to return 0 for mobs since they have no skill
  5760. delay other than the one specified in mob_skill_db [Skotlex]
  5761. * Corrected the 20 lvl diff 15% exp bonus on pk_mode servers. Thanks to
  5762. Vayu for pointing it out. [Skotlex]
  5763. * status_get_sc_tick will now use directly Stun's formula rather than
  5764. invoking the status sc chance once. [Skotlex]
  5765. * Fixed a possible null pointer in script command misc_effect [Skotlex]
  5766. * Modified Investigate to take into consideration final def/vit-def rather
  5767. than base values for damage adjustment. [Skotlex]
  5768. * WARNING: New scripting system contains memory leak
  5769. TODO: Free all scripts using script_free_code() instead of old methods. [Lance]
  5770. * Excluded idle and auto-trade party members from TK_POWER list. [Lance]
  5771. * Fixed compilation errors.
  5772. Tidy up jobmaster for easy debugging. [Lance]
  5773. 2006/05/21
  5774. * Part A of the Homunculus code.
  5775. This only features the structures, status_* and clif_* (packets) and is
  5776. not functional yet in any conventional way, but doesn't interfere
  5777. with present functionality either.
  5778. Main purpose is helping me to keep my work organized. [blackhole89]
  5779. * Fixed the "fake" mute status bug. [Zido]
  5780. * Speed up array size calculation and deletion. [Lance]
  5781. * Player must learn the skill before doing auto-spell [Lance]
  5782. * Exploit prevention in clif_parse_NpcStringInput [Lance]
  5783. * SC_SPEARSQUICKEN -> SC_SPEARQUICKEN normalized enum name [Lupus]
  5784. * Thanks to damirych & Falcon for [2006/04/30] STEAL skill [Lupus]
  5785. 2006/05/20
  5786. * grfio_final moved back if any of GRF overriding is enabled so servers
  5787. with such configuration will not have different values after reloading. [Lance]
  5788. * jA1983 script.c buildin_menu fix. Thanks to End_of_exam. [Lance]
  5789. * Abit of alterations to login-server. [Lance]
  5790. 2006/05/19
  5791. * Minor unsigned/signed alteration in pc_additem to shut the compiler up. [Lance]
  5792. * Small change in pc_additem that could be fixing the current bug with new
  5793. items not getting added. [Skotlex]
  5794. * Fixed loginlog definition in main.sql, thanks to Tempesta [Skotlex]
  5795. * Likely fixed the mob-skill random picking behaviour causing infinite
  5796. loops sometimes. [Skotlex]
  5797. * Modified mobskill_use behaviour to pick a random starting point and check
  5798. skills from that, rather than always checking from first to last. Fixes
  5799. skills with high priority blocking skills lower down in the list from
  5800. triggering. [Skotlex]
  5801. * Updated mob ai behaviour so that mobs use IDLE state skills when their
  5802. current target cannot be reached for melee fighting. [Skotlex]
  5803. 2006/05/18
  5804. * Added 5 config settings to adjust damage in pk-mode servers (misc.conf)
  5805. [Skotlex]
  5806. * Fixed mob_max_skilllvl being capped to 11! [Skotlex]
  5807. * Rewrote/cleaned up several functions in storage.c [Skotlex]
  5808. * Optimized pc_additem comparisons to account for items with more than four
  5809. slots. [Skotlex]
  5810. * Updated clif.c to enable retrieval of items from cart/storage while
  5811. trading. Exception is retrieving items from the cart while vending.
  5812. [Skotlex]
  5813. - The reasoning is that an ongoing trade will not get "corrupted" if you
  5814. earn items before it is commited (only if you lose items from your
  5815. inventory), and it is an annoyance when you realize the stuff you want to
  5816. trade is on the cart/storage.
  5817. * skill reiteration code now does not checks for the trigger-area of the
  5818. skill in the case of non-players, which means mobs can now place traps in
  5819. cells adjacent to each other. [Skotlex]
  5820. * Applied an experimental weather code that should lower bandwidth usage to
  5821. near-none, which's only disadvantage should be the weather not clearing out
  5822. until moving to another map (even when the mapflag is removed from the
  5823. current map). Please test and report if there's any anomalies with it.
  5824. [Skotlex]
  5825. * NPC_AGIUP will now give movement boost of 50% [Skotlex]
  5826. * Fixed WZ_WATERBALL number of hits when used by non-players. [Skotlex]
  5827. * MO_BODYRELOCATION will send the slide packet with the actual src's
  5828. coordinates rather than selected tile. [Skotlex]
  5829. 2006/05/17
  5830. * Modified mob_can_changetarget to return true always when the new target
  5831. is the provoked-by character. Fixes provoke not making the mob change
  5832. target when it already is locked on another player. [Skotlex]
  5833. * Added check to clear previous skill when combo time ends. Should fix TK
  5834. Rankers being unable to initiate a combo with the same kick their previous
  5835. combo was finished with. [Skotlex]
  5836. * Power Up and Agi Up now increase Hit/Flee by 20%/lv [Skotlex]
  5837. 2006/05/16
  5838. * Modified "hide woe damage" to send the number of hits rather than 1 as
  5839. damage Because when the damage is less than the number of hits, the client
  5840. will display MISS. [Skotlex]
  5841. * Fire Pillar will now do 200%MATK damage per hit when level is >10.
  5842. [Skotlex]
  5843. * Blood Drain always hits now. [Skotlex]
  5844. * Fixed Mob Area Skills not updating their use-time (rendering their skill
  5845. delay useless) [Skotlex]
  5846. * Search free cell will now skip picking the center-tile as target
  5847. location. Will prevent slaves from walking on top of their master, or mobs
  5848. placing stuff right under themselves with the "around" target conditions
  5849. among other things. [Skotlex]
  5850. 2006/05/15
  5851. * Small changes to the skill.conf
  5852. - Monsters now can place ground skills on top of each other by default
  5853. - Land_Skill_Limit format changed and set to "Only Players" by default
  5854. * When reading mapflags, when a map is set to be pvp or gvg, the other will
  5855. be turned off (disables pvp mapflags in gvg maps for pk-servers) [Skotlex]
  5856. * Firepillar's damage per hit is now 100% MATK (rather than 20%) when the
  5857. skill level is above 10. [Skotlex]
  5858. * Sorted out the item_data structure, getiteminfo should work correctly
  5859. now. [Skotlex]
  5860. * KA* skills can now be casted on other Soul Linkers as well without the
  5861. Spirit requirement. [Skotlex]
  5862. * Soul Drain will now show the SP drained regardless of drain display
  5863. settings. [Skotlex]
  5864. * SC_COMBO state will now end in skill_attack rather than
  5865. skill_check_condition (as it is required there to apply damage bonuses
  5866. based on combo-casted skills) [Skotlex]
  5867. * Fixed Option_Wedding in const.txt (0x1000 won't work, it has to be 4096)
  5868. [Skotlex]
  5869. * Fixed the nocast flag 2 (not usable in pvp) returning true in pk-mode
  5870. servers. [Skotlex]
  5871. * When removing a castle's owning guild, the char servers will erase the
  5872. guardian data now. [Skotlex]
  5873. * Changed the behaviour of immobile mobs when they can't chase their
  5874. target. Rather than using a longrange skill and then unlocking, they will
  5875. use an attack/angry state skill and then unlock. [Skotlex]
  5876. * Some adjustments of how disguising + gm-hiding work together. [Skotlex]
  5877. * Fixed clif_GlobalMessage being the exact same function as clif_message
  5878. (the first should send to ALL_CLIENT and the later should send to
  5879. AREA_CHAT_WOS). Should fix globalmes script command. [Skotlex]
  5880. * Added SC_BLADESTOP to the switch listing in status_change_start [Skotlex]
  5881. * Characters in vending are now always considered "idle" if the
  5882. idle_no_share setting is active. [Skotlex]
  5883. * Players with OPTION_INVISIBLE should not be sent to clients. [Lance]
  5884. * Remaining fixes for item scripts. [Lance]
  5885. * Added NPC event deprecated warnings to ease debugging old scripts. [Lance]
  5886. 2006/05/12
  5887. * Supplied fake NPC ID in sd->npc_id for item scripts. [Lance]
  5888. * Bugfix on fake npc [Lance]
  5889. * Fixed mob_once_spawn not working for non-random coordinates. [blackhole89]
  5890. * Reverted again the change that stuns the caster on Ske, Ska, Swoo when
  5891. the target is a nonplayer (rather than always) [Skotlex]
  5892. * Modified mob_spawn_once so that coordinates -1,-1 are "random around the
  5893. player" while 0,0 are random around the whole map (regardless of whether
  5894. there's a player attached or not) [Skotlex]
  5895. * Knockback will no longer work on traps during woe. [Skotlex]
  5896. 2006/05/11
  5897. * Fixed the definition of the KEY in the loginlog, thanks to TheUltraMage
  5898. [Skotlex]
  5899. * NPC_POWERUP and NPC_AGIUP now cause a increase in hit/flee (respectively)
  5900. of 40% per level. [Skotlex]
  5901. * Changed a bit the MAX_ZENY checks in trade.c to prevent overflows.
  5902. [Skotlex]
  5903. * Rewrote npc_selllist for a more proper-clean implementation. [Skotlex]
  5904. * Increased NPC_POWERUP's dex bonus to +25*lv [Skotlex]
  5905. * Moved TK_DOWNKICK's stun time from time to time2 [Skotlex]
  5906. * Added TK_TURNKICK's stun to splash-pushed mobs. Duration is 2secs (time2)
  5907. [Skotlex]
  5908. * Merged the code for Ska, Ske, Swoo together. Swoo stun duration is now 10
  5909. secs (reducable) if you target a mob that already has Swoo active. [Skotlex]
  5910. * Added the missing semi-comma from the upgrade_svn6533.sql file. Thanks to
  5911. Tanaous [Skotlex]
  5912. * Added back the missing code that substracts arrows when normal-attacking.
  5913. [Skotlex]
  5914. 2006/05/10
  5915. * Changed the state of Asura back to explosionspirits, added a hardcoded
  5916. move_enable check when invoking Asura and NOT while in BladeStop or a
  5917. Combo. [Skotlex]
  5918. * Added back SC_XMAS to status.c, it got lost sometime during all the
  5919. previous reworkings. [Skotlex]
  5920. * Changed wedding costumes to use setoption rather than changebase.
  5921. [Skotlex]
  5922. * Modified setoption so that flag 1 or no flag adds an option, and flag 0
  5923. removes it. [Skotlex]
  5924. * Updated script_commands with the new behaviour. [Skotlex]
  5925. * Updated mob_db2.txt and mob_db2.sql to have only 10 drop slots rather
  5926. than 15. [Skotlex]
  5927. * Users are now able to use their own dnsbl servers (login_athena) [Zido]
  5928. 2006/05/09
  5929. * Rewrote/cleaned up trade.c for a more clean trading implementation.
  5930. [Skotlex]
  5931. * Added @request commands, sends a request to all connected GMs of
  5932. lowest_gm_level or above as a whisper message. Defaults to gm level 20
  5933. users (UNTESTED). [Skotlex]
  5934. * Modified @commands to use Meruru's code which is faster and does a fair
  5935. attempt at tabulating the commands presented. [Skotlex]
  5936. * Updated SKA to return a random value between 0 and 99 each time
  5937. status_get_def is invoked. [Skotlex]
  5938. * Updated Making Arrow to not include unidentified items in the list.
  5939. [Skotlex]
  5940. * Reduced drop slots from 15 to 10. [Skotlex]
  5941. * Updated mob_db.sql with the current data. [Skotlex]
  5942. * Updated setoption script command to receive a second (optional) argument
  5943. flag. If the flag is 1, the option is added to what the player currently
  5944. has; likewise using flag 2 removes only that option. No flag (or any other
  5945. value) is the older behaviour of removing all other options and setting
  5946. specificly what is passed. [Skotlex]
  5947. * Updated script_commands information for setoption due to this change.
  5948. [Skotlex]
  5949. * Small fix in npc-created chat rooms to properly include the terminating 0
  5950. on the chat's event. [Skotlex]
  5951. * Fixed Fog of Wall's symmetry in respect to Misc attacks, they no longer
  5952. get reduced by 50% regardless of who is standing on the fog. [Skotlex]
  5953. * monster_ai&2 will now trigger the rude-attacked skill when the mob can't
  5954. move and the attacker is out of it's attack range. [Skotlex]
  5955. * Added missing icon for Joint Beat [Skotlex]
  5956. * Mob-search functions will now skip enemies with no exp/job_exp. [Skotlex]
  5957. * Treasure chests will now be excluded from the mob-drop listings
  5958. (@whodrops) [Skotlex]
  5959. * Fix on pc_skill which fixes overlapping when one gets more than one bonus
  5960. for the same skill. [Skotlex]
  5961. * Updated main.sql's loginlog table structure. [Skotlex]
  5962. * Added svn_update6533.sql to update the loginlog structure as suggested by
  5963. theultramage. [Skotlex]
  5964. * Cleaned up somewhat the implementation of BladeStop. [Skotlex]
  5965. * Fixed the head_bottom (pet-armor) position in packet 0x22c (walk packet)
  5966. when crafted for non-players. [Skotlex]
  5967. * Script commands sc_start, sc_start2 and sc_start4 will now start
  5968. regardless of sc defense of the target player (that is, they cannot be
  5969. avoided/blocked) [Skotlex]
  5970. * Fixed a possible counter overflow in attacked_count, changed the var size
  5971. to unsigned char since the code can handle the overflow now. [Skotlex]
  5972. * Multiple targets again reduces armor defense, as reported by Tharis.
  5973. [Skotlex]
  5974. * Increased dex bonus of NPC_POWERUP to +20 per level. [Skotlex]
  5975. * Fog of Wall's -50 hit reduction is now only for ranged attacks. [Skotlex]
  5976. 2006/05/08
  5977. * Reverted the change that was making ES skills stun the caster always.
  5978. [Skotlex]
  5979. * Removed the fixpos packet which is sent whenever you are hit while moving
  5980. as Aegis doesn't sends this packet neither. [Skotlex]
  5981. * ES magic will now put the caster on stun for 0.5 secs regardless of
  5982. whether the skill-target is a mob or not. [Skotlex]
  5983. * Added function clif_party_join_info which sends packet 0x1e9 each time a
  5984. party-member joins. This packet (as redundant info as it has) should also
  5985. contain the field for "adoptability", but that needs to be coded in yet.
  5986. [Skotlex]
  5987. * Added clif_ParseAdoptRequest which does the basic adoption handling. More
  5988. checks and the reply packets still need to be coded in. [Skotlex]
  5989. * Happy State and TK stances won't dispel on death now. [Skotlex]
  5990. * Cleaned up combo-skill implementation, SC_COMBO is automatically ended in
  5991. skill_check_condition now. [Skotlex]
  5992. * Modified TK-ranker infinite combos to behave as described by AuronX.
  5993. Refer to his thread in the development section for details. [Skotlex]
  5994. * Made all Soul Link Spirit skills not be castable on self. [Skotlex]
  5995. * Changed rate of NPC status effect skills to 50+10*lv% base chance
  5996. (guessed, but better than 100% for all levels) [Skotlex]
  5997. * Changed max level of NPC status effect skills to 5 [Skotlex]
  5998. * Increased max number of tries to find a random spot in maps to 1000 since
  5999. some maps have so many non-walkable tiles it's hard to find one in just 100
  6000. tries. [Skotlex]
  6001. * status_set_viewdata will remove the Wedding Option status when you set a
  6002. class that is not wedding. [Skotlex]
  6003. * hide_gvg_damage will now send 1 instead of -1 as damage. [Skotlex]
  6004. * idletime will now be updated on attack-request, not on sit/standup
  6005. [Skotlex]
  6006. * Party members sitting will no longer be considered idle. [Skotlex]
  6007. * Removed SP_DISGUISE from the bonus list (onequip/onunequip should be used
  6008. with the disguise/undisguise script commands instead). [Skotlex]
  6009. * Moved Sharp Shooting display to the block with Auto-Counter (since that's
  6010. the other skill that can show critical as well) [Skotlex]
  6011. * Corrected some fields in the standing still packet (guild emblem being
  6012. stored as a Long when it should be Short) [Skotlex]
  6013. * Modified most fields of view_data to be unsigned shorts rather than
  6014. signed ones. [Skotlex]
  6015. * On-Touch NPCs will now make you stop walking when you trigger them.
  6016. [Skotlex]
  6017. * ShadowJump/JumpKick will make you land on the target's cell now.
  6018. [Skotlex]
  6019. * Fixed Kaahi triggering only once per skill duration. [Skotlex]
  6020. 2006/05/07
  6021. * Fixed readme/changelog.html [KillerBox]
  6022. * Removed old logs. [Lupus]
  6023. TODO: 1. Add produce logging into PICKLOG 2. Replace map names with map index
  6024. 2006/05/05
  6025. * Optimized clif.c clif_scriptmenu/input/inputstr to check for sd->state.using_fake_npc
  6026. before sending one (as it's not required to send twice).
  6027. * Reinitialize sd->state.using_fake_npc in clif_parse_LoadEndAck (for scripts that warps
  6028. players and still continues execution to work). [Lance]
  6029. * Updated item_db.sql to current. [Skotlex]
  6030. * Fixed a bug in @commands, most likely the reason some people were still
  6031. getting crashes. [Skotlex]
  6032. * Fixed @commands not showing the last available commands (unless the total
  6033. amount of commands is divisible by ten) [Skotlex]
  6034. * Added a npc-script-event cache to avoid looking up event-scripts every
  6035. time they need to be executed. Events cached are all those defined in
  6036. script_config (on login, logout, mapchange, death, kill, level up) [Skotlex]
  6037. - Since the cache holds direct pointers to the npcs/events, do NOT unload
  6038. the related NPCs or you'll get dangling pointer crashes. However,
  6039. @reloadscript will work fine.
  6040. - Set the etc_log to on to see a summary of npcs/events loaded for script
  6041. execution on startup.
  6042. * The Rest bonus activated by using /doridori while in rest should now
  6043. trigger with all the class tree (TK/SL/SG) [Skotlex]
  6044. * Fixed Kaupe always triggering when the one who was under Kaupe was a
  6045. player rather than the one attacking... [Skotlex]
  6046. * /doridori now won't double the HP/SP regen of TKs, it only activates
  6047. their "happy" state. [Skotlex]
  6048. * Added the -50 hit penalty when standing on Wall of Fog. [Skotlex]
  6049. * Uncommented the status_calc_mdef2 call in status_calc_pc. [Skotlex]
  6050. * Being in Enjoyable Rest state will now also trigger the HP/SP Time skills
  6051. (even if there's no other TK around). [Skotlex]
  6052. * Added battle config settings view_range_rate and chase_range_rate to
  6053. adjust the view-range and chase-range (range2/range3) of the mob_db without
  6054. having to manually change them (battle/monster.conf) [Skotlex]
  6055. * Kaupe now will only block all skills of players, for non-players, only
  6056. normal attacks can be missed. [Skotlex]
  6057. * Moved the Kaite spell-reflect code after the damage calculation function,
  6058. so the reflected damage is exactly the damage the original target would
  6059. have received. Will only trigger if the damage to be reflected is above 0.
  6060. [Skotlex]
  6061. * OnEquip scripts will now trigger on log-on. [Skotlex]
  6062. * Infinite Endure will no longer give mdef bonus. [Skotlex]
  6063. * Removed bInfiniteEndure bonus, Eddga card now uses onequip/onunequip to
  6064. start/end infinite endure. [Skotlex]
  6065. * Fixed Kaahi's SP cost per heal. [Skotlex]
  6066. * Now when walkdelay is set to 0, characters will stop walking when hit,
  6067. but will not have any walk delay. (previously setting walk delay to 0 would
  6068. not even stop characters from walking when hit) [Skotlex]
  6069. 2006/05/04
  6070. * Some people think its sexy to declare variables after blocks of code. Fixed. [Zido]
  6071. * Fixed a possible infinite loop in skill_clear_unit_group [Skotlex]
  6072. * Some clean-ups in the mob_ai [Skotlex]
  6073. * Improved atcommand autoloot, now displays droprate in percents and notices
  6074. player if autoloot is already on or off. Also simplified the code [Harbin, Kain],
  6075. commited by erKURITA
  6076. * Added one grace range in the mob_loot search function which should fix
  6077. mob_can_reach failing when invoked with the same distance that distance_bl
  6078. returned. [Skotlex]
  6079. * Stun time for using ES magic on non-mobs reduced to 0.5 secs. [Skotlex]
  6080. * Eska is now usable on bosses. [Skotlex]
  6081. * Swoo will stun you if attempted on an already 'swooned' enemy. [Skotlex]
  6082. * clif_skill_failed will print out a debug line with the skill_id (since
  6083. the current null_po does not helps at all to fix it) [Skotlex]
  6084. * Applied TheUltraMage's suggested fixes to the grfio module. [Skotlex]
  6085. * Rewrote Kaahi to behave as it should. It will heal whatever amount of
  6086. damage accumulates in the time2 interval (500ms by default) after being
  6087. hit. [Skotlex]
  6088. * Changed skill_unit_move_unit_group to enable moving of all types of
  6089. ground-skills except ensembles (fixes warmth not following you) [Skotlex]
  6090. 2006/05/03
  6091. * Kaahi now triggers every 500ms rather than on every hit (but it only
  6092. heals if in those 500ms an attack that would previously trigger Kaahi has
  6093. taken effect). In other words, it works just like before, except damage
  6094. gets "buffered" into 500ms slots. [Skotlex]
  6095. * Kaite, Kaute will now show a skill effect when they trigger. [Skotlex
  6096. * Knowledge will now only trigger if you logon to the memorized map, not
  6097. walk into it. [Skotlex]
  6098. * Corrected @whomap directly invoking msg_table[] rather than msg_txt()
  6099. [Skotlex]
  6100. * Guessed where the pet data goes in spawn packet 0x7c. This may be wrong
  6101. and not fix the pet issue, but I doubt it'll cause any problems that won't
  6102. be fixed by making the pet move. [Skotlex]
  6103. * Updated Charge Attack's state from none to move_enable. [Skotlex]
  6104. * Made tomahawk an NPC_SKILL so that it may not be plagiarized. [Skotlex]
  6105. 2006/05/02
  6106. * Fixed standing up not really standing you up. [Skotlex]
  6107. * Moved battle_consume_ammo to the end of skill_castend_damage_id,
  6108. skill_castend_nodamage_id and skill_castend_pos2 rather than
  6109. battle_calc_weapon_attack. They will trigger when the player's arrow_atk
  6110. state is active and a ground skill was not invoked. It should fix all
  6111. issues with splash/ground skills consuming ammo per target rather than once
  6112. per skill use. [Skotlex]
  6113. * Added structure state to the ground skills, their fields are magic_power,
  6114. into_abyss and ammo_consume to indicate the states that were previously
  6115. stored in val3. [Skotlex]
  6116. * Implemented desperado as explained by Rockman-EXE. The skill-effect is
  6117. not showing up though, I'll need some logged packets to see what's missing.
  6118. [Skotlex]
  6119. * Removed the unit_can_move checks in skill cast-end, they should be
  6120. performed in skill_check_require when the skill's state is move_enabled.
  6121. [Skotlex]
  6122. * Changed extremity fist's state to move_enabled, the explosion spirits
  6123. check is now hardcoded. [Skotlex]
  6124. * Absorb Spirit Sphere now gives +10SP per sphere as per discussions with
  6125. Haplo. [Skotlex]
  6126. * Changed a <= into a < in pc_steal_item. This means drops with 0.01% are
  6127. impossible to steal unless you have at least 100% steal-rate (where steal
  6128. rate is dex - opponent dex + skill_lv*3% + 10%) [Skotlex[
  6129. * Cleaned up clif_parse_action_request to enable sitting/standing while in
  6130. shops, interacting with npcs, etc. [Skotlex]
  6131. * Kaite now works against all types of spells. [Skotlex]
  6132. * Kaupe now works against all skills. [Skotlex]
  6133. * Sanctuary now won't damage non-enemies. [Skotlex]
  6134. * Blessing now will always give you bonus stats even if you are wearing
  6135. undead armor. [Skotlex]
  6136. * Modified how Rogue's treasure works so that you get +1% to your steal
  6137. rate rather than +0.01% to the final rate. [Skotlex]
  6138. * Rewrote Warmth to use ground-skill-units, it should behave now like in
  6139. officials (implementation is not quite the same, but it should yield the
  6140. same effects while consuming less bandwidth). "Stacking", as it's called,
  6141. is possible now, but limited to eA's minimum timer skill interval (100ms).
  6142. [Skotlex]
  6143. * Modified NPC_POWERUP so that it gives +10 dex * skill level rather than
  6144. +5+lv to all stats (as explained by Playtester and Tharis on how the skill
  6145. behaves). [Skotlex]
  6146. * Allowed SG_FEEL memorizing the same map for all three. [Skotlex]
  6147. * SC_FUSION won't end when you die now. [Skotlex]
  6148. 2006/05/01
  6149. * Added knockback when you run into a wall during running. However
  6150. position is not being refreshed on the client yet... [Skotlex]
  6151. * Fixed pc_disguise not allowing you to "redisguise". [Skotlex]
  6152. * Corrected a crash when sd is null in npc_event [Skotlex]
  6153. * After testing to make sure it works properly, I'm including
  6154. new battle conf options to limit MVP drops. [Reddozen]
  6155. * Removed OPTION_XMAS, it seems to not exist.... [Skotlex]
  6156. * Added SC_SMA to handle "ready to use SMA" status (rather than SC_COMBO)
  6157. since it has a visual effect to use. [Skotlex]
  6158. * Corrected the value of OPTION_FLYING [Skotlex]
  6159. * Using SG_FUSION ends Soul Linked effect. [Skotlex]
  6160. * status_setviewdata will set your option accordingly when the previous/new
  6161. view-class is wedding or xmas suit. [Skotlex]
  6162. * Added function map_foreachinshootrange, behaves the same way as
  6163. map_foreachinrange, but it also performs a "shoot-path" check before
  6164. invoking the function. Used in the skill subtimer function if
  6165. skill_wall_check is defined. [Skotlex]
  6166. * Fixed AL_WARP displaying "Unknown Area" selections when you don't have
  6167. all memo points used up. [Skotlex]
  6168. * Fixed alive_count not being reset on skill unitsetting, which leads to
  6169. some groups not being cleared once all their units expire. [Skotlex]
  6170. * Optimized Kaahi/Kahai, will now only show the amount of HP healed. Moved
  6171. to skill_counter additional effect so it may trigger even on miss. [Skotlex]
  6172. * SKA no longer blocks skills. [Skotlex]
  6173. * Optimized fake npc system. Added npc_checknear back to npc_buysellsel. [Lance]