Changelog-Trunk.txt 300 KB

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