Changelog-Trunk.txt 168 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862
  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. EVERYTHING ELSE
  4. GOES INTO TRUNK AND WILL BE MERGED INTO STABLE BY VALARIS AND WIZPUTER. -- VALARIS
  5. 2006/03/27
  6. * Removed the limits.h file which just breaks compilation on *nix systems
  7. [Skotlex]
  8. * Updated some DB work from jA [Vicious]
  9. * HW_GANBANTEIN now also removes traps. [Skotlex]
  10. * PF_DOUBLECASTING takes effect amotion time after the initial cast instead
  11. of amotion*div [Skotlex]
  12. * SG_KNOWLEDGE now lasts time1 after you quit a map before it clears out
  13. (defaults to 10 mins currently) [Skotlex]
  14. * Modified Intravision to modify the status-change packet to specify
  15. SI_INTRAVISION instead of cloaking/hiding/chasewalk. I believe this is how
  16. intravision actually works. [Skotlex]
  17. * Pet catching now uses the menuskill variables to prevent item usage from
  18. disrupting the catch process. [Skotlex]
  19. * Added Safetywall to the list not blocked by Dispell. [Skotlex]
  20. * Added some include limits.h required by window compiles. [Skotlex]
  21. * Corrected Wedding rings being trade-able. [Skotlex]
  22. 2006/03/26
  23. * GCC on Cygwin still complaining, resorted to including limits.h in malloc.h [Lance]
  24. * Refixed the fix with a constant list for Win32 users - limits.h (imported from MSVC) [Lance]
  25. * Fixed a problem in chrif.c where USHRT_MAX was undefined. [Codemaster]
  26. * Added jAthena's new start and athena-start shell scripts. [Lance]
  27. * Changed status_point/skill_point to unsigned short. Adjusted the code as
  28. necessary to prevent overflows. [Skotlex]
  29. * itemdb_exists and itemdb_searchname should now ignore dummy_item matches. [Skotlex]
  30. * Fixed jstrescapecpy crashing when you pass a null string to parse. [Skotlex]
  31. 2006/03/25
  32. * Fixed the map-server freeze/crash on Warp Portal. [Skotlex]
  33. * Fixed Grandcross/Granddarkness showing no skill animation. [Skotlex]
  34. * Fixed mob-casted grandcross doing nothing unless the target was "self" [Skotlex]
  35. 2006/03/24
  36. * Fixed iteminfo only displaying first result when there were many. [Skotlex]
  37. * Fixed pet hatching. [Skotlex]
  38. * Small change that SHOULD fix the pet duplication issue. [Skotlex]
  39. * Fixed Warp Portal. [Skotlex]
  40. * Modified script commands atcommand/charcommand to execute even if there
  41. isn't a player attached. They'll use a dummy player data with the same
  42. position/name as the script's owner (usually an npc). Be careful when using
  43. this as the result of some @/# commands may be unexpected! [Skotlex]
  44. * Some cleaning around the return to egg code. Pets should stop duplicating
  45. now. [Skotlex]
  46. * Some cleaning of the egg hatching routine to prevent spawning the pet if
  47. the egg can't be found in the inventory. [Skotlex]
  48. * Removed a pair of autoadded "data/" strings on grfio.c to see if that
  49. helps with the data_dir map loading. [Skotlex]
  50. * Fixed skillidx not being set whenever a mob uses a skill. This explains
  51. skills like metamorphosis/summon_slaves not working at all. [Skotlex]
  52. * Fixed unit_skillcastcancel reading the nocastcancel flags the exact
  53. wrong way around [blackhole89]
  54. * Added function map_search_freecell to locate an available cell around an
  55. area (for recall/warping skills). UNTESTED. [Skotlex]
  56. * Added unit.c to the VC8 project files. Thanks to Joshuaali [Skotlex]
  57. * Fixed Magnum-break/GrandCross displaying multiple times the skill effect
  58. (once per target) [Skotlex]
  59. 2006/03/23
  60. * Fixed a crash in unit_useskill_pos2 [Skotlex]
  61. * Updated mob_db.sql and item_db.sql to current txt versions. [Skotlex]
  62. * Fixed Devotion not properly being cleared on death/near death in some
  63. cases. [Skotlex]
  64. * Fixed Shield-Reflect not being correctly ended when devotion does.
  65. [Skotlex]
  66. * Fixed DEX-based casting time and delay reduction. [blackhole89]
  67. * Modified the function pc_percent_heal to prevent overflow problems. [Skotlex]
  68. * Changed the second entry in the water_height.txt listing to specify
  69. directly the .rsw file (instead of .gat). [Skotlex]
  70. * Fixed Potion Pitcher sometimes crashing the server. [Skotlex]
  71. * Fixed a compile warning by adjusting the acid demonstration formula.
  72. [Skotlex]
  73. * Added flag 2 to the skill_castnodex_db file for skills that shouldn't be
  74. affected by delay/cast reducing skills/effects. [Skotlex]
  75. * Added SantaPoring's water_height.txt modifications. [Lance]
  76. * Minor cleanups. [Lance]
  77. 2006/03/22
  78. * Fixed function pc_isCardAllowedOn causing searches for non-existant item
  79. id 0. [Skotlex]
  80. * Fixed Arrow Shower. [Skotlex]
  81. * Merged the unit_data structure from jA for handling unit-related data
  82. (attack times, walking, auto-attack timers, skill related data). This is a
  83. huge change that affects walking, attacking, auto-attacking, skill usage
  84. and character clean up from maps. I spent the last two days clearing out
  85. bugs, and even though I couldn't find any more, I wouldn't be surprised for
  86. a corner-case or two I missed. [Skotlex]
  87. * Modified unit_skillcastcancel to receive flag&2, which stands for "cancel
  88. casting only if current skill is cancellable" [Skotlex]
  89. * Battle config options changed from yes/no to BL_TYPE settings:
  90. skillrange_by_distance, skill_noreiteration, skill_nofootset,
  91. gvg_traps_target_all, skill_log, attack_direction_change,
  92. auto_counter_type. See (Note 4) in the relevant battle config files.
  93. [Skotlex]
  94. * Clif.c will disconnect sessions that send an unknown command packet above
  95. 0x30000 instead of just ignoring it. [Skotlex]
  96. * Cleaned up error reporting during mob-skill loading to be less spamy with
  97. non-loaded mobs. [Skotlex]
  98. * Corrected water_height reading. It works now, with the exception that
  99. cloned maps don't get their water-level read because they don't have a rsw
  100. file. The solution is to add all cloned maps to water_level.txt (ie:
  101. "new_1-1.gat new_zone01.rsw" makes the new_zone01.rsw stored water-level be
  102. applied to map new_1-1.gat).
  103. Anyone can help collect all the clone maps to fill up water_height?
  104. * status_check_skilluse won't block skill-specific checks (silence,
  105. berserk, steel-body, etc) when the skill in use is an item-invoked skill.
  106. [Skotlex]
  107. * Merged LittleWolf's function to read the map-height directly from the rsw
  108. file. Now when building the map-cache, the water-heights should be
  109. automatically read as well directly from the rsw's. [Skotlex]
  110. WARNING: Not tested yet!
  111. The water-height config file now is for aliases. When the rsw for a
  112. certain map is not found, and this map exists in the water_height list,
  113. then the water height of the second map listed in that file is used.
  114. * Some cleanups in irc.c [Skotlex]
  115. * Magic skills that ignore element now also don't take into account
  116. elemental cards. [Skotlex]
  117. * Fixed compiler warnings in battle.c [Lance]
  118. * Changes by [reddozen] -->
  119. - Updated Full Buster's damage, status effects, and skill levels
  120. - Bullseye now only uses 1 coin
  121. - changed Adjustment's required SP
  122. - changed Incerase Accuracy's effect bonuses
  123. - changed Magical Bullet's SP cost
  124. - changed Piercing Shot's damage and SP
  125. - changed Desperado's range, hit count, aftercast delay, and SP
  126. - fixed Absorb Spirit Sphere being able to remove coins
  127. - changed Acid Demonstration's damage to the new Japanese formula
  128. 2006/03/21
  129. * Fixed duel in pk-mode (same party/same guild/alliance non-targeting issue).
  130. Thanks to Hobbit for pointing that out. [LuzZza]
  131. * Fix on not showing guildmembers logins/logouts messages. [LuzZza]
  132. * Fixed SC_SWOO's opt3 value. Small monsters should stay small for skill's
  133. duration now. [Skotlex]
  134. * Fixed allowing multiple recast of Dissonance/Ugly-Dance [Skotlex]
  135. * Fixed those annoying irc.c compile warnings. [Skotlex]
  136. 2006/03/20
  137. * Added monster_ai&16 setting for executing the hard ai on ALL mobs in maps
  138. with players instead of just mobs in the vecinity of players. [Skotlex]
  139. * Cleaned up some guild functions. [LuzZza]
  140. - Now guild leaving/explusion packets sends correctly.
  141. - Fix to prevent creation alliance/opposition with same guilds.
  142. 2006/03/19
  143. * @stfu now allows negative intervals to be specified. [Skotlex]
  144. * Added overflow check to the login-server when sending GM accounts to
  145. char. [Skotlex]
  146. * Small fix to prevent killer/killable states from allowing you to target
  147. yourself. [Skotlex]
  148. * Added Explosion Spirits to list of effects that dispel on logout.
  149. [Skotlex]
  150. * Fixed handling of guild skills by pc_blockskill_start, moved it to
  151. skill.c [Skotlex]
  152. * Fixed autoguard icon showing with stun. [Skotlex]
  153. * Fixed acid demonstration breaking shield instead of armor. [Skotlex]
  154. * Fixed Slim Pitcher crashing server ocassionally. [Skotlex]
  155. * Hopefully fixed Ankle Snare lasting the whole trap's duration [Skotlex]
  156. * Added sc_start(SC_ENDURE) on infinite endure bonus. [Skotlex]
  157. * Fixed Berserk Pitcher consuming required items twice. [Skotlex]
  158. 2006/03/18
  159. * Fixed BA_DISSONANCE and DC_UGLYDANCE not working. status_check_skilluse was blocking
  160. them due to the lack of an exception like BA_MUSICALSTRIKE has it. [blackhole89]
  161. * Documentation update on NPC whisper and rid2name. [Lance]
  162. * Fixed event_kill_pc to behave like what it should instead of another replication
  163. of event_death. Added script function rid2name to convert bl ids to name. [Lance]
  164. * Recoded setmobdata script function. Fixed mob_damage typo sd -> mvp_sd. [Lance]
  165. * Added 'GetMonsterInfo(MobID,Idx)' script function. [Lupus]
  166. You can get monsters name,level,race, etc by its Id. Check npc\sample\getmonsterinfo.txt
  167. * Fixed warnings on compilers again. [Lance]
  168. 2006/03/17
  169. * Fixed the mob_skill_db by commenting out lines with targeted skills
  170. being cast during an idle state. (Thanks to LittleWolf) [Zephiris]
  171. * Removed a block of code from skill_check_condition that actually belongs
  172. to status_check_skilluse. Should fix silence/stun blocking skills
  173. regardless of settings. [Skotlex]
  174. * Fixed misleading and inaccurately documented events and added a missing flag. [Lance]
  175. * Fixed npc_cleanup_dbsub not removing key and caused pointer being freed problem. [Lance]
  176. * Fixed handling of the char_gm_read config for packet 0x2af7 (reloadgmdb)
  177. [Skotlex]
  178. * Added battle_config debuff_on_logout which removes Asura's SP regen delay
  179. and Strip-Equip effects on logout when set to yes (default,
  180. conf/battle/skill.conf). [Skotlex]
  181. * removed auto-attaching of player-run scripts in initnpctimer. You must
  182. use attachnpctimer instead! [Skotlex]
  183. * Final fix on Juperos NPC. [Lance]
  184. * Fix on initnpctimer not attaching rid. [Lance]
  185. * Fix on OnTouch ignoring -1 NPCs. [Lance]
  186. * Fix on @reloadscript crashing due to passing non BL_SKILL bl to a function that accepts only BL_SKILL bl.
  187. [Lance]
  188. * Added area NPC detection in clif_parseLoadEndAck. [Lance]
  189. * Fixed compiler warning in script.c get_mob_data. [Lance]
  190. * Temperory resolved issues on Juperos until I get the exact description on the behaviour
  191. in retail servers. [Lance]
  192. 2006/03/16
  193. * Changed NJ_ZENYNAGE according to this weeks patch to deal a random [MasterOfMuppets]
  194. ammount of damage depending on the skill lvl.
  195. * @kill_monster/@kill_monster2 won't touch Guardians/Emperium now. [Skotlex]
  196. * Small change in the random item reading function, may fix @itemdbreload
  197. messing up random item searches. [Skotlex]
  198. * Restricted GS_BULLSEYE to only be used on demi-human or brute monster targets [MasterOfMuppets]
  199. 2006/03/15
  200. * mob_chat_sub fix. Added buildin_pcblockmove. [Lance]
  201. * BL_PC and BL_MOB control script commands (experimental) [Lance]
  202. * Made an adjustment to addspiritball() to allow Gunslingers to summon up to 10 spheres [reddozen]
  203. * Fixed Tarot Card of Fate using time instead of time2 which is the one
  204. that actually holds the effect duration. [Skotlex]
  205. * Fixed mob random walk interval being set to up to 6K seconds in some
  206. instances. [Skotlex]
  207. * Added mapflag nodrop (prevents droping items to the ground). [Skotlex]
  208. * Fixed mapflag notrade doing nothing. [Skotlex]
  209. * Likely fixed Gravitation not hitting except for the last hit. [Skotlex]
  210. * Removed the hardcoded duration of 30 seconds for sleep. [Skotlex]
  211. * Fixed rangecheck for pet skill usage of INF_SELF_SKILL type of skills
  212. [Skotlex]
  213. * Removed inall/exall from atcommand.conf since those two do not exist!
  214. (pointed out by Ancyker) [Skotlex]
  215. * @me now uses entry 270 in msg_athena as output format. [Skotlex]
  216. * gm_skill_unconditional setting now also overrides skill_partner_check
  217. setting. [Skotlex]
  218. * Emulated strtok_r functions to work strictly with ANSI compilers. [Lance]
  219. * Added battle config options item_rate_adddrop, item_drop_add_min and
  220. item_drop_add_max to control drop rate of card-acquired loot bonuses.
  221. (conf/battle/drops.conf) [Skotlex]
  222. * Added item_db2.sql and mob_db2.sql, thanks to Joshuaali [Skotlex]
  223. * Added more usage of msg_athena on the slave atcommands messages. [Skotlex]
  224. * Fixed twilight pharmacy dropping 1 item to the ground instead of the qty
  225. produced. Thanks to k3dt [Skotlex]
  226. * Fixed Plagiarism not working unless you had some sc active. [Skotlex]
  227. 2006/03/14
  228. * Fixed a possible crash in Venom Splasher if the countdown is too high.
  229. [Skotlex]
  230. * Fixed skill_notok blocking guild skills [Skotlex]
  231. * Fixed Napalm vulcan's time2 entry in the skill_cast_db [Skotlex]
  232. * Fixed the average_lv column size specification for levels above 255.
  233. Thanks to Joshuaali (upgrade_svn5607.sql) [Skotlex]
  234. * Updated @rura/@warp. Now you can use both "@warp mapname x y" and
  235. "@warp mapname,x,y". [LuzZza]
  236. * Added at-command @tonpc <NPC_name> (warp to NPC). [LuzZza]
  237. * Fixed @where at-command. [LuzZza]
  238. * Fixed WZ_WATERBALL + HW_MAGICPOWER [Skotlex]
  239. * Fixed incorrect range check in autospell-when-hit triggers. [Skotlex]
  240. * Modified Wedding recall skills to behave as in official [Skotlex]
  241. * Modified Arrow Shower to be a ground-based skill and work as it should on
  242. officials. However, the unit_id is still unknown. [Skotlex]
  243. * Fixed skill_additional_effect triggering every time you were being hit
  244. even if no damage was returned. [Skotlex]
  245. * Fixed battle_calc_damage_return to make magic damage be returned by 100%,
  246. and received damage nullified. [Skotlex]
  247. * Changed a bit status_check_skilluse to check for dead characters, should
  248. fix all the weird attack/attacked while dead bugs. [Skotlex]
  249. * Fixed player auto-attack not cancelling when dead. [Skotlex]
  250. 2006/03/13
  251. * Finished some checks to make sure Land Protector Only blocks BF_MAGIC
  252. skills. Hammerfall is no longer blocked. [Skotlex]
  253. * Fixed script command warpparty looking for an attached player even when
  254. it is not needed. [Skotlex]
  255. * Shield Reflect is now passed through Devotion as well. [Skotlex]
  256. - Devoted characters lose the devotion effect when the Crusader is at less
  257. than 25% Hp. [Skotlex]
  258. * chrif_scdata_save will not send a save scdata request when the char has
  259. been already tagged as in the final save. [Skotlex]
  260. * Some status_change_start cleanups, stuff like blessing should now remove
  261. stone/curse even if the status does not begins because the character is
  262. already blessed. [Skotlex]
  263. * Cleaned SC_SUITON a bit to get rid of that compile warning. [Skotlex]
  264. * Added function battle_calc_gvg_damage for gvg related damage reductions.
  265. Fixes Gravitation being reduced as well as Pressure overriding max-castles
  266. restriction. [Skotlex]
  267. * Corrected char-server parameters so that the subnet config file is the
  268. third parameter, not the second (which was conflicting with
  269. inter_athena.conf's argument), thanks to foobar. [Skotlex]
  270. * PR_BENEDICTIO now ignores mdef [Skotlex]
  271. * Fixed chatlog's x/y column capacity in sql-files/logs.sql [Skotlex]
  272. 2006/03/12
  273. * Updated clone skill copy to consider combo-skills. [Skotlex]
  274. * no_spawn_on_player won't work on mobs with no respawn delays now. [Skotlex]
  275. 2006/03/10
  276. * Cleaned up the Skillbreaker implementation, HP gaining happens at level 5
  277. now. [Skotlex]
  278. * Autospells won't trigger now on maps where said skills are forbidden.
  279. [Skotlex]
  280. * Changed div (multi-hit) behaviour. Skills with div above zero will get
  281. their total damage increased by the number of hits, div less than zero is
  282. just for "show", total number of hits displayed is abs(div), but damage
  283. isn't increased by number of hits. [Skotlex]
  284. * Adjusted several skill damage equations to make up for the above change.
  285. [Skotlex]
  286. * Fixed a overflow bug when one of the item_random* files has too many
  287. random items. [Skotlex]
  288. * Fixed a variable loopback problem on NPC shop price checking routine. [Lance]
  289. * Fixed a memory overwrite crash on pc_readdb, thanks to foobar for the
  290. fix. [Skotlex]
  291. * Fixed only the first TK stance triggering when you have multiple of them
  292. active. [Skotlex]
  293. * Default of skill_attack_enable changed to yes. [Skotlex]
  294. 2006/03/09
  295. * Fixed the dancer/bard soul-linked skills toggling on/off with each call
  296. to pc_calc_status. [Skotlex]
  297. * Fixed a bug in the pc_skillreset function which allowed TK rankers to
  298. accumulate skill points. [Skotlex]
  299. * Fixed a major memory leak in status.c causing the last column of job_db1.txt
  300. never being read. I have no idea how long this has been there, but signs point
  301. to us using Katars at a random ASPD from somewhere in memory for ages. [blackhole89]
  302. * Fixed a critical bug in job_db1.txt reading in status_readdb. [blackhole89]
  303. * Fixed pc_damage_sp not properly substracting SP. [Skotlex]
  304. * Made Magic Crasher a BF_WEAPON attack. [Skotlex]
  305. * Made skill_unit_range a per-level setting. meteor and Lov now have their
  306. unit range for bosses adjusted in the skill_unit_db rather than
  307. hardcoded. [Skotlex]
  308. * Added Gunslinger/Ninja Status Change icons. Somebody needs to look into
  309. them though for not all SCs have a matching SI. [blackhole89]
  310. * Changed ITEM_NAME_LENGTH to 50. [Skotlex]
  311. * Fixed stun's duration not getting reduced by vit + luk/3 [Skotlex]
  312. * Fixed #itemlist not taking into consideration crafted/forged items and
  313. pet eggs. [Skotlex]
  314. 2006/03/08
  315. * More work on ninja/gs. Which made me do... [Vicious]
  316. - Add more weapon type(17~21 for guns) [Vicious]
  317. - Included MAX_WEAPON_TYPE in status.h and updated the codes
  318. (Whose idea was it to do static number... esp dual weapon) [Vicious]
  319. * Fixed a bug that was making the no_spawn_on_player setting useless.
  320. [Skotlex]
  321. * Added Deadly Poison and Bleeding to status_get_sc_def, meaning that now
  322. vit does increases defense against being inflicted from it. [Skotlex]
  323. * Fixed and tested @whodrops [Skotlex]
  324. * Updates to Gunslinger skills' DB entries. [blackhole89]
  325. * Rewrote pc_jobchange to be sane by using the map internal codes instead
  326. of a mesh of complicated nested comparisons. [Skotlex]
  327. * pc_authok will now change you to a novice if your class isn't identified
  328. as a valid one. BACK UP before updating, because.. well, just in case you
  329. start seeing novices filling up your city. [Skotlex]
  330. * Mobs will now chase you even if you hit them from outside their range of
  331. view. [Skotlex]
  332. * Fixed item disappearing from the floor when you attempted to pick it up
  333. and there was no room in your inventory. [Skotlex]
  334. * About half-ish nj/gs skills are semi/fully-done. No effect/status yet though. [Vicious]
  335. * Added atcommand @whodrops which lists mobs with the top drop-rates for a
  336. given item. List of stored mobs and their dropchances is also defined by
  337. MAX_SEARCH on map.h [Skotlex]
  338. * Modified atcommands @mobinfo and @iteminfo to display multiple matches
  339. instead of just one. Max number of matches to display is set in map.h
  340. (MAX_SEARCH) which is currently 5. [Skotlex]
  341. 2006/03/07
  342. * Base for ninja/gunslinger is mostly done. need to work on skills now. [Vicious]
  343. - Updated sql-files/ mob_db.sql and item_db.sql to current txt dbs. [Skotlex]
  344. * @job ninja/gunslinger. No skill tree or anything yet. [Vicious]
  345. * Gospel won't start taking effect until after 10 secs have passed since
  346. invocation. [Skotlex]
  347. * Now if a skill has inf set to 4 (self skill) and inf2 512 (cannot target
  348. self) this skill becomes a target-auto-select skill, which targets your
  349. current attack target, and won't stop your current attack. The current
  350. attack is delayed by your aspd (except for a few skills such as the monk
  351. combo skills which readjust this delay). All Monk combo skills plus Taekwon
  352. kick skills have been updated to use this. [Skotlex]
  353. * Added a check that forces self skills (inf = 4) to select yourself as
  354. target to prevent oddities from crafted packets. [Skotlex]
  355. * More ground work for Ninja/Gunslinger [Vicious]
  356. * status_calc_pc now assumes that if your max hp is negative, it has
  357. overflowed, and as such, it is set to the max_hp setting instead of 1. This
  358. 'dangerous' assumptio is alright as long as there aren't equipment that can
  359. send your hp to negative values. [Skotlex]
  360. - Fixed the soul linker skill tree. (Thanks to muad_dib) [Zephiris]
  361. * Added Gunslinger and Ninja into @job. of course, you need latest EXE
  362. for make this work... and of course no skills yet! [Vicious]
  363. * Storm Gust now knocks back on a random direction instead of away from the
  364. storm. [Skotlex]
  365. 2006/03/06
  366. * Some fixes due to the guild-skill changing location (being moved from
  367. 500->900 within the code) [Skotlex]
  368. * Fixed npc_event doing a map-check when the npc is not on any map.
  369. [Skotlex]
  370. * Fixed a debug message showing up on skill castend nodamage id when using
  371. a guild skill. [Skotlex]
  372. * Fixed #save not working on maps not in the current map server. [Skotlex]
  373. * Added battle config clear_skills_on_death to decide whether all
  374. ground-based skills should be removed when you die. Defaults to yes.
  375. [Skotlex]
  376. 2006/03/05
  377. * Removed my EXP limit as it did not do what it was supposed to [Codemaster]
  378. * Fixed remove-trap [Skotlex]
  379. * Fixed animation of Redemptio [Skotlex]
  380. * Some reorganization of how the skill check functions behave
  381. (skill_get_*). Guild skills have been moved to the range 900~915 (instead
  382. of 500~519 in the code). [Skotlex]
  383. * Set the default for display_delay_skill_fail to 'no' as it should have been
  384. for a while (the kRO patch about that was last year, long time ago) [DracoRPG]
  385. * Fixed easter.txt typo. [Lance]
  386. * Extended summon command to enable custom timeouts. [Lance]
  387. 2006/03/04
  388. * Fixed a bug in the subnet checking function, login-TXT server. Also
  389. changed the messages to be a bit more informative. [Skotlex]
  390. 2006/03/03
  391. * Added function battle_set_walkdelay in charge of updating walkdelays of
  392. characters based on two criterias: when the delay is induced by damage, if
  393. the current walk delay isn't over yet, do not update it. If the delay is
  394. instead caused by a skill, then the current walk delay cannot be decreased,
  395. only increased. [Skotlex]
  396. * Added upgrade_svn5455.sql, it converts the manner and karma columns to
  397. signed. Apply this if your tables have the field as unsigned (which would
  398. explain mute always disappearing after relogging) [Skotlex]
  399. * status_change_start now checks on a 0->10000 scale, should fix sc-cards
  400. with very low rates never triggering (eg: some coma-inducing cards).
  401. [Skotlex]
  402. * Cleaned up the active guild skills. They should be usable now by
  403. non-players as well. [Skotlex]
  404. * Fixed crash on the NPC whisper system when the message's size was 1.
  405. [Skotlex]
  406. * Strip status changes are now removed on logout. [Skotlex]
  407. * Added a column in skill_cast_db for specifying can't walk delays. It's
  408. all set to 0 currently, so someone get updating them! [Skotlex]
  409. * Removed the apply walk-delay entry from skill_cast_nodex as the new walk
  410. delay column handles this now. [Skotlex]
  411. * Fixed autoloot dropping the item to the ground even when it was
  412. autolooted. [Skotlex]
  413. * Fixed character deletion working on SQL without an email address (Thanks to Valaris) [Zephiris]
  414. * Added event 8 for mobspawns that should spawn with special ai set. This
  415. means that now in the mob_spawn files if you use 8 as the last entry, the
  416. mob will use the special ai, and as such, it will only attack other mobs,
  417. not players (can obviously be combined with 2 for small mobs and 4 for
  418. large mobs, eg: 10 for a small mob with special ai set) [Skotlex]
  419. * Modifed battle_check_target so that mobs with special ai will only target
  420. by default mobs without said state (this will prevent normal clones from
  421. fighting among themselves, for example) [Skotlex]
  422. * Trick dead now ends on logout [Skotlex]
  423. * Added mapflag nocommand which blocks @/# commands unless your gm level is
  424. above gm_skill_unconditional's level. [Skotlex]
  425. * Fixed weapon scripts not being executed unless the weapon was forged.
  426. [Skotlex]
  427. * gm_skill_unconditional is now a no/gm-level setting instead of yes/no
  428. [Skotlex]
  429. 2006/03/02
  430. * Slaves inherit speed will now only work if the master can move. [Skotlex]
  431. * Some cleanup and reorganization on the way pet-skill variables are
  432. handled. [Skotlex]
  433. * Fixed a typo that disabled all pet support skills from triggering (except
  434. ground-based ones) [Skotlex]
  435. * status_check_skilluse cleanup. Some status will only block skills when
  436. they are first used, not on cast-end (which includes auto-spells and
  437. ground-skill checks). Now when status_castcancel is 'no', skills WILL
  438. come off after the cast bar is done. [Skotlex]
  439. * Gravitation now only affects the caster, should have also fixed the skill
  440. not doing damage when skill_caster_check is set. [Skotlex]
  441. * Max fame list size is now defined by MAX_FAME_LIST constant (mmo.h)
  442. [Skotlex]
  443. * Individual fame lists sizes can now be specified through the char-server
  444. (check the fame list configs in char_athena.conf) [Skotlex]
  445. * Some cleanup on mob_can_reach code to prevent unnecessary path-searching
  446. [Skotlex]
  447. * Optimized the path-searching ai for mobs to try target cells around the
  448. target in order rather than randomly picked cells. [Skotlex]
  449. * Applied Snufkin's patch to fix compilation on FreeBSD. [Skotlex]
  450. * Fixed mobs targetting themselves after using a support skill. [Skotlex]
  451. * Gospel no longer blocks item usage of whoever is in the area of effect,
  452. only the caster of Gospel can't use healing items now. [Skotlex]
  453. * Added the long/near attack_def_rate card effects to battle_calc_magic
  454. (horn card and the like will now work with spells) [Skotlex]
  455. - Elemental fields should vanish on map-change now. [Skotlex]
  456. - Land Protector only blocks magical ground skills now. [Skotlex]
  457. * Fixed item pickup not picking anything unless you were in a party with
  458. item distribution set [Skotlex]
  459. 2006/03/01
  460. * Made it so players that are at the max level do not receive EXP.
  461. This makes it so a player at the max level (ie - 99) cannot join a party
  462. and feed all of his or her EXP to the other party members [Codemaster]
  463. * Mapregsql will now fully depend on mmysql_handle. [Lance]
  464. * Optimized strcharinfo to use switch. [Lance]
  465. * Some cleanup of the mob skill reading. Added error reporting for unknown
  466. states/conditions, error reporting now specifies the file and line number.
  467. [Skotlex]
  468. * Silence will only block skills when they have begun casting, not when the
  469. cast bar is done. This also means that auto-spells will likely come-out
  470. even when silenced. [Skotlex]
  471. * opt1 status will block skills when they are done casting only if the
  472. sc_castcancel option is set. [Skotlex]
  473. * strcharinfo now returns blank instead of crashing the map server when
  474. there's no player attached. [Skotlex]
  475. * Added a missing mysql_init call to the mapreg sql handle. [Skotlex]
  476. * Checked and fixed the script engine barking when you try to have a label
  477. with the same name as a const.txt defined parameter. [Skotlex]
  478. * Turn Undead and Offensive Resurrection should now work on undead players.
  479. [Skotlex]
  480. * Fixed the range checking of Repair weapon [Skotlex]
  481. * Rude attacked is now also triggered when you hit a target that can't move
  482. out of their melee attack range. [Skotlex]
  483. * Mob ai will attempt to do a long-range attacked condition skill before
  484. unlocking a target when it is attacked and said target is out of melee
  485. range of a non-walking mob. [Skotlex]
  486. * Corrected mobskill event to set the target_id before triggering. This
  487. should fix shortrange/longrange attacked mob skill conditions. [Skotlex]
  488. * Moved MSC_SKILLUSED trigger to mobskill_event which is triggered in
  489. battle_calc_damage. It is also triggered on skill_castend_nodamage_id.
  490. [Skotlex]
  491. * Added party_share_loot for handling party-share loot. it should now work
  492. with autoloot as well. [Skotlex]
  493. * Fixed skill_break_rate breaking stuff even if the rate is 0. [Skotlex]
  494. * pc_stopwalking will not send a fixpos packet if you are sitting. [Skotlex]
  495. * mob_can_reach rude-attacked condition now uses the mob's field of view.
  496. [Skotlex]
  497. * SC_NOCHAT is automatically started on pc_authok if manner is negative.
  498. [Skotlex]
  499. * Map server now refuses to start if you try to define a label with the
  500. same name as some const.txt defined character parameter. [Skotlex]
  501. * Corrected a few Compiling Warnings [Codemaster]
  502. * Added the ability to select GM loading via Login (default) or Char [Codemaster]
  503. * Added script command 'setbattleflag'. [Lance]
  504. 2006/02/28
  505. * Rewrote LAN support code. Changed configuration file name
  506. lan_support.conf to subnet_athena.conf, changed it syntax. [LuzZza]
  507. * Added script command 'equip' to equip items. [Lance]
  508. * Fixed dependancies in map-server compiling (VC7.1). [Lance]
  509. * Added autoequip flag check for pc_takeitem. If it impacts on perfomance, please remove it. [Lance]
  510. 2006/02/24
  511. * Prevented guild/party recall to work on GMs of greater level than
  512. yourself. [Skotlex]
  513. * Prevent muting players with higher GM level than yourself. [Skotlex]
  514. * Fixed Lady Tanee's spawns. [Skotlex]
  515. 2006/02/23
  516. * Fixed the CL_WHITE define, thanks to FlavioJS [Skotlex]
  517. * NPC break equipment stuff now has a 1.5% per skilllv success rate.
  518. - This is a custom value as 20%-lv10 seems too high and 10%-lv10 seems too
  519. low. [Skotlex]
  520. * pc_setpos won't random warp players if placed on top of Moonlight Petals
  521. [Skotlex]
  522. * Removed the check in clif.c for npc_shopid as the client never sends a
  523. packet when the trade is cancelled... [Skotlex]
  524. * Player-summoned mobs won't level up now. [Skotlex]
  525. * Fixed Super Novice explosion spirits triggering no matter what you said
  526. on the third line. It now triggers on the fourth line.... [Skotlex]
  527. * Fixed GTB blocking targetted spells when gtb_pvp_only was set. [Skotlex]
  528. * Merged the code of Ankle snare and Spider web. It no longer moves target
  529. if sc failed. [Skotlex]
  530. * Players should stop walking as soon as they start vending or get into a
  531. chat. [Skotlex]
  532. * Added mob skill conditions myhpinrate and friendhpinrate. [Skotlex]
  533. * Added monster_ai condition 16 (enable `friend` targetted skills to heal
  534. oneself) [Skotlex]
  535. * Fixed the shop id not clearing when buying/selling (which made you get
  536. stuck afterwards). [Skotlex]
  537. * Modified the way autospells stack to mimic official servers. Cards of the
  538. same ID cannot stack, but different cards with the same skill can each
  539. trigger indepedently of each other. [Skotlex]
  540. * Added battle_config autospell_stacking to enable stacking of cards of
  541. same ID. (see battle/item.conf) [Skotlex]
  542. * Moved card-specific battle options to items.conf [Skotlex]
  543. * Autospells triggered when hit will check the range to the target.
  544. [Skotlex]
  545. * Some cleaning up of status_calc_pc [Skotlex]
  546. * In status_change_start capped the passed success chance to 100% [Skotlex]
  547. 2006/02/22
  548. * Windwalk's flee bonus is now +1 every 2 skill lvs. [Skotlex]
  549. * Changed the way equipment breaking works. Function pc_break_equip was
  550. removed and now skill_break_equip is used. Basicly, it's the same as
  551. before, except that when you 'break' a piece of equipment of a
  552. non-player, the corresponding strip(weapon/armor/shield/helm) status
  553. effect is induced (duration: strip skill lv 1) [Skotlex]
  554. * Cleaned up the Dev folder. [Skotlex]
  555. - Take note of the file todo-for-stable, which holds all modifications in
  556. trunk that have not yet made it into stable. Be sure to update the file
  557. as needed.
  558. * Updated the path searching code with jA's current implementation.
  559. [Skotlex]
  560. - There is a slight chance the CELL_NOSTACK mod broke, someone test that.
  561. 2006/02/21
  562. * Fixed the range-check of targetted skills (was evaluating the range as 0
  563. always) [Skotlex]
  564. * Now you should receive the party/guild mini-dots on map-load without the
  565. need of waiting for others to "move" for you to receive the update (fixes
  566. dead characters never showing up on the map) [Skotlex]
  567. * Fix to prevent using main chat when it disabled in atcommand_athena. [LuzZza]
  568. - Fixed message codes in duel functions.
  569. - Small fix in log_refine, incorrect compare expression.
  570. * Some cleaning of the warp portal code so that when it is "pre-casted" it
  571. doesn't mess up with other casted skills. [Skotlex]
  572. * Some fixing on the weapon-refine code. [Skotlex]
  573. * Cleaned up some npc_event error reporting. [Skotlex]
  574. * Some cleanup of the castend routines to not clear the skill variables if
  575. for some reason the casted skill triggers another skill. [Skotlex]
  576. * Vending is now cancelled on a pc_setpos [Skotlex]
  577. * Pressure again ignores Basilica. [Skotlex]
  578. * Fixed attacker's sc being nulled when the target's sc is empty (fixes
  579. most status changes not taking effect during battle) [Skotlex]
  580. * Slaves now do a battle_check_target to check if the new target is an
  581. enemy when acquired through the master's skilltarget. [Skotlex]
  582. * Fixed SC_SKE halving de2 twice. [Skotlex]
  583. 2006/02/20
  584. * The Super Novice Explosion Spirits skill will now trigger when the last
  585. sentence is said (not after the next sentence as it was currently) [Skotlex]
  586. * Now the default delay of amotion is applied only for BF_WEAPON, non
  587. NK_NO_DAMAGE skills (so stuff like Summon Spirit Sphere get the default
  588. skill delay rather than ASPD) [Skotlex]
  589. * Made the Char-SQL server send the GM listing when the map server
  590. connects. [Skotlex]
  591. * Play-dead and Basilica now block Gospel [Skotlex]
  592. * Map SQL server will no longer ignore the gm-list packets received from
  593. char. [Skotlex]
  594. * Login-SQL server will not free the current GM listing if the SQL reading
  595. of it failed (prevents GM lists being lost on SQL connection problems)
  596. [Skotlex]
  597. * Login-SQL will now read for the GM list ALL accounts with level above 0,
  598. not just those with level above min_gm_level (just like the TXT server
  599. does) [Skotlex]
  600. * SC_NOCHAT is not dispelled on death now. [Skotlex]
  601. * Cleaned up the global message function, Super Novice Explosion Spirits
  602. will not trigger on maps where said skill can't be used. [Skotlex]
  603. * Close confine won't get the bonus range on cast as other skills do due to
  604. exploits. [Skotlex]
  605. * Fixed a bug in setnpctimer. [Skotlex]
  606. * Menu-based skills now use their own variables separetly from the normal
  607. skill variables. This should enable them to work even when you keep doing
  608. other stuff between the menu invocation and selection. Also gives a better
  609. control over packet-based exploits. Affected skill/script-commands are:
  610. [Skotlex]
  611. - Arrow Crafting
  612. - Warp Portal / Teleport
  613. - Item producing
  614. - Identify
  615. - Repair weapon
  616. - Pet egg selection
  617. - Hindsight
  618. - Weapon refine.
  619. - Feel of the Stars, Moon and Stars.
  620. * Corrected the implementation of Gangster's Paradise to work as it should.
  621. [Skotlex]
  622. * Fixed Close-confine not properly ending on a knockback (that includes
  623. backsliding) [Skotlex]
  624. * Changed MAX_RANDITEM from 2000 to 10000 to fit new databases [Komurka]
  625. * Fixed Taekwon stances not triggering. [Skotlex]
  626. * Added atcommand @exp [Skotlex]
  627. * Added error reporting when add_timer_interval receives a negative/0
  628. interval value. [Skotlex]
  629. * Fixed a possible infinite recursion bug with splash self skills. [Skotlex]
  630. * Modified the way firewall_hits_on_undead works, to loop and invoke
  631. multiple skill_attacks based on the value. Now it behaves a lot closer to
  632. how Aegis Firewall does (except a good default value for this config switch
  633. is missing) [Skotlex]
  634. * Preparing eA for new mob_skill_db from Aegis 10.2 [Komurka]
  635. - increased MAX_MOBSKILL 32 -> 40
  636. 2006/02/19
  637. * Some fixes to the last item usage tick. Items should be working fine now.
  638. [Skotlex]
  639. * Fixed parsing of @kamic/@kamib to check for case. [Skotlex]
  640. * Now you can hide from Pressure. [Skotlex]
  641. * Weapon endowing will work on targets already endowed with the same
  642. element. [Skotlex]
  643. * Now reseff cards will take effect even if the status change is passed
  644. with &8 flag. In short, now reseff are ALWAYS applied to the status change
  645. defense. [Skotlex]
  646. * Removed a missing break that was making AM_TWILIGHT2/3 always fail.
  647. [Skotlex]
  648. 2006/02/18
  649. * Removed the SP_<stat> cases from status_get_sc_def as they were colliding
  650. with other status changes. [Skotlex]
  651. * Implemented SG_MIRACLE (Miracle of the Sun, Moon and Stars) [Komurka]
  652. - duration is stored in battle_config.sg_miracle_skill_duration (currently
  653. it's set to 10 minutes)
  654. - ratio is stored in battle_config.sg_miracle_skill_ratio (currently it's set
  655. to 0.01% chance per character move)
  656. - this skill enables you usage of all Warmth skills, Comfort skills, and also
  657. all mobs will be target of the Stars regardless of the day and map
  658. - you'll see message "[Miracle of the Sun, Moon and Stars]" when skill kicks in
  659. * Added upgrade file upgrade_svn5322.sql because apparently not everyone
  660. has the guild table with autoincremental guild_id defined. [Skotlex]
  661. - If you can't create guilds, chances are you need to apply this ugprade.
  662. * Fixed a missing break that was making Heal, Resurrection and some others
  663. become attack skills [Skotlex]
  664. * Some CELL_NOSTACK Mod updates: [Skotlex]
  665. - Made the free-cell lookup more extensive.
  666. - Allowed pc_setpos to place players on top of cells that are stacked
  667. - Fixed a logic bug in the mob-walk code that was making them get stuck and
  668. not move (triggered quite often when the cell no stack mod is enabled)
  669. 2006/02/17
  670. * Cleaned up irc.c, may it compile now on Windows? [Skotlex]
  671. * Updated the VC project files by Joshuaali. [Skotlex]
  672. * Fixed possible crash on pet egg select. [Skotlex]
  673. * Massive update on the way splash/area (non-ground) skills work. [Skotlex]
  674. - the new column 'splash' in skill_db is now used to determine the area of
  675. effect of all related skills (eg: splash range of fireball, area of effect
  676. of angelus, the splash damage area of mines, etc)
  677. - nk definition update. &1 is no damage skills, &2 is for splash skills. A
  678. skill can be tagged 3 to indicate it is both. This is used to indicate the
  679. type of handling the skill should use, but it also helps as all splash
  680. skills get an extra check to prevent them from hitting 'unhittable'
  681. characters (ie: hidden) while all skills not tagged as non-damage can
  682. trigger auto-spells.
  683. - All self skills are automatically executed as no-damage skills and get
  684. re-routed as damage skills when the source and target do not coincide (this
  685. handles all combo skills)
  686. - Some skills may have screwed up (I fixed/moved all which I could find
  687. needed updating). As usual, report any issues.
  688. * Added an upgrade_svn file that should fix the party table by making the
  689. party_id auto-incremental. Apply this or new parties will always fail!
  690. [Skotlex]
  691. * Changed around the included files in irc.c to see if it compiles under
  692. Win32 native. [Skotlex]
  693. * Char-SQL server updates: [Skotlex]
  694. - Removed the unnecessary party/guild check on each char-save.
  695. - Removed the 'quick loaded char' messages.
  696. - Some code cleanup.
  697. - Fixed one or two memory leaks.
  698. * Applied the suggested fixes by Joshuaali to fix the compiling of the sql
  699. map server on Win32 systems. [Skotlex]
  700. - note that irc.c is still uncompilable, but the rest "should be fine" now.
  701. * Fixed the memory leak on opt_2str as pointed out by End of Exam [Skotlex]
  702. * Fixed a few char SQL memory leaks as pointed out by End of Exam [Skotlex]
  703. 2006/02/16
  704. * Fixed a crash in AL_TELEPORT. [Skotlex]
  705. * Now you can't close-confine and already confined mob. [Skotlex]
  706. * mysql/my_global.h now includes winnt.h under Windows systems... [Skotlex]
  707. * Some code cleanup of status.c [Skotlex]
  708. * Removed the check that prevented mobs from walking into a basilica. [Skotlex]
  709. * Added a new column in the skill_db to specify the
  710. splash-range/area-of-effect of skills. (Work in progress) [Skotlex]
  711. * Autocasted AL_TELEPORT should now automatically pick menu entry rather
  712. than showing the box up. [Skotlex]
  713. * The battle config options sp_rate and hp_rate are now applied
  714. independently of the same type of bonuses from cards. [Skotlex]
  715. * In CELL_NOSTACK mode, mob_canreach will now ignore other players when
  716. checking if there's a path to the player. [Skotlex]
  717. * Added RG_RAID to the list of skills that need a status_checkskilluse on
  718. skill_attack. [Skotlex]
  719. * Added the mapflag check monster_noteleport to AL_TELEPORT. [Skotlex]
  720. * Fixed the sc_def rate not being reduced in status_change_start. [Skotlex]
  721. * Changed the include in irc.c from strings.h to string.h, which fixes a
  722. bunch of compilation warnings here... [Skotlex]
  723. * Updated the SQL login/char servers to let the mysql server grant the new
  724. IDs for accounts/chars/pets/parties/guilds instead of them being handled by
  725. the server. [Skotlex]
  726. * Some cleaning of the pc item use functions. [Skotlex]
  727. * Gospel shouldn't block enemies in certain situations from using items
  728. now. [Skotlex]
  729. 2006/02/15
  730. * Fixed crash in chrif_load_scdata warning message. [Skotlex]
  731. * Fixed pets displaying "strangely" when they did not have their pet armor.
  732. [Skotlex]
  733. * Added battle config option pk_level_range for specifying valid level
  734. ranges to engage in PK (battle/misc.conf) [Skotlex]
  735. * Added battle config allow_es_magic_player to enable SL_S* skills to work
  736. on non-mobs. (battle/skill.conf) [Skotlex]
  737. * Fixed the char servers to store correctly exp as uints. They are also
  738. capped to LONG_MAX before being sent to the client. [Skotlex]
  739. * TK_DODGE now dodges all ranged attacks, when used with SPURT, dodges
  740. everything. [Skotlex]
  741. * The autospell loop now cancels after one successful cast. This means if
  742. you have 10 autospells with 100% casting rate, only one will come off with
  743. each hit instead of all of them. [Skotlex]
  744. * Warm skill update: [Skotlex]
  745. - they are type BF_WEAPON, so that they may trigger effect/spell cards.
  746. - Changed their element to -1 to carry on weapon's element.
  747. - Against player it only damages 60SP per "hit"
  748. - Against non-players it is a knockback skill as it was before.
  749. - Hit frequency increased to once every 100ms.
  750. * TK_DODGE now only dodges ranged weapon attacks, while under Spurt mode
  751. it dodges everything (provide better information if this is not how it
  752. should behave as the current info given is conflicting itself >.<)
  753. [Skotlex]
  754. * Cleaned up and expanded the sc_def_rate battle config. The new battle
  755. flags are mob_sc_def_rate, pc_sc_def_rate, mob_max_sc_def, pc_max_sc_def
  756. [Skotlex]
  757. * Modified Marionette Control so that the max bonus stats you get is capped
  758. to your server's defined max stats instead of 99. [Skotlex]
  759. * Mobs are no longer affected by the vs_traps_bctall switch. [Skotlex]
  760. * Added function pc_damage_sp to damage the SP of players, updated code as
  761. necessary. [Skotlex]
  762. * Fixed @lvup command adding levels instead of substracting when you
  763. specify a negative quantity. [Skotlex]
  764. 2006/02/14
  765. * pc_setinventorydata won't use itemdb_search on empty inventory slots (id
  766. = 0) [Skotlex]
  767. * Fixed the icon from Provoke being gone. [Skotlex]
  768. * Fixed skill_timerskill (most notable skill broken: water ball doing 1
  769. hit) [Skotlex]
  770. * Removed the declaration of puchar and pchar from my_global.h which was
  771. preventing compiles on native win NT systems. Drawback is now Win9X systems
  772. will fail to compile instead... [Skotlex]
  773. * Hiding cancels Close Confine now. [Skotlex]
  774. * ST_MOVE_ENABLE now also checks for pc_can_move(), and only perform a walk
  775. check if the skill is ground targetted. [Skotlex]
  776. * Moved the berserk_cancel_buffs code to status_change_start. [Skotlex]
  777. * Moved most checks of status_isimmune() to status_get_sc_def [Skotlex]
  778. * Allowed Endow skills to go through status_isinmune characters. [Skotlex]
  779. * Fixed PR_BENEDICTIO not taking away all SP. [Skotlex]
  780. * Modified the way Status changes are linked to skills for an easier to
  781. read implementation (see status_initChangeTables). [Skotlex]
  782. 2006/02/13
  783. * Added battle config sc_def_rate which adjusts natural defense of
  784. characters against status changes (see conf/battle/battle.conf). [Skotlex]
  785. * Pet eggs will now not be deleted from the inventory until they arrive
  786. from the char-server. [Skotlex]
  787. * pc_readdb will now print if any classes are missing their exp tables.
  788. Only exception are JOB_WEDDING and JOB_XMAS. [Skotlex]
  789. * Made the NPC_BREAK* skills attack skills again, their chance of equipment
  790. breaking code was moved to skill_additional_effect. [Skotlex]
  791. * Now when the exp table does not has enough data to reach the max level
  792. specified, the max level will not be reduced to enable leveling through
  793. quests/scripts/gm-commands/etc. [Skotlex]
  794. * Made Land Protector Block Hammerfall. [Skotlex]
  795. * Updated item_db code to stop creating items for every non-existant ID
  796. used. Instead it will complain, and use a dummy item that has the view ID
  797. of an apple, and it's type 3 (etc item). [Skotlex]
  798. * Modified PA_GOSPEL so that the random damage attack becomes a BF_MISC
  799. attack. [Skotlex]
  800. * Added pc_resetskill when lowering job level and there's not enough
  801. skill points to substract. [Skotlex]
  802. * Fixed SG_FUSION costing SP to deactivate. [Skotlex]
  803. * Some cleaning up at pc_setpos to prevent calling pc_clean_skilltree
  804. [Skotlex]
  805. * Enabled use of TF_HIDING while Cloaked. [Skotlex]
  806. * pc_resetstate won't remove wedding skills now [Skotlex]
  807. * NPC_POWERUP now gives +40% atk per level. [Skotlex]
  808. * Water elementals can be frozen again. [Skotlex]
  809. * Fixed the sc_def equation in status_change_start. [Skotlex]
  810. * Fixed an extra semi-colon that broke win32 compiles. [Skotlex]
  811. * Some rewriting of bounds checks in @baselvup, @joblvup and the #
  812. equivalents to prevent signed/unsigned comparisons. [Skotlex]
  813. * Now slaves give exp/loot (exception: player slaves still stick to the old
  814. rules of no exp/loot) [Skotlex]
  815. 2006/02/12
  816. * Some path cleanups meant to get the CELL_NOSTACK mod working better with
  817. path searching and the like. [Skotlex]
  818. * Optimized functions skill_addtimerskill/skill_cleartimerskill [Skotlex]
  819. * Fixed SC_DANCING for non players (was making dances only last 1 second
  820. for them) [Skotlex]
  821. * Modified map_moveblock to handle updating dance's position as well as
  822. ending close confine status effects. [Skotlex]
  823. 2006/02/10
  824. * Fixed Sonic Blow's damage for lvl 1~9 [Vicious]
  825. * The status window will now show the total power of both weapons instead
  826. of just the right-hand weapon for dual wielders. [Skotlex]
  827. * Removed #include <lcms.h> from irc.c, since it's unused and some people don't have it. [Valaris]
  828. * Changed the default MAX_LEVEL supported by the map server to 1000. [Skotlex]
  829. * Pet Lures won't be consumed now when used on a non-mob. [Skotlex]
  830. * Fixed map_searchrandcell function. [Skotlex]
  831. * Modified the NPC_BREAK* skills to break equipment at a 10%*lv rate. [Skotlex]
  832. * Modified the drop item routines to perform stacking checks only for
  833. player attempted item drops, therefore, mob drops will stack up to
  834. infinity. [Skotlex]
  835. * NPC_POWERUP now gives +20% attack per skill level. [Skotlex]
  836. 2006/02/09
  837. * Fixed "set baselevel, X" sending one to a different level than the one
  838. requested. [Skotlex]
  839. * Added range checking to mob skill loading of permillage and delay to
  840. prevent overflows. [Skotlex]
  841. * Fixed pc_gainexp not working for next level exp requirements above
  842. INT_MAX. [Skotlex]
  843. * Fixed the display of @showexp not working right for exp values above
  844. INT_MAX. [Skotlex]
  845. * Removed the conf sql code for now. Maybe will continue later with that project.
  846. Lowered the irc keepalive timer, and added some checks for use_irc that should have been there.
  847. Added a return line \n to the beginning of the title screen. [Valaris]
  848. * Added function mob_respawn which makes a mob respawn on spot 3 seconds
  849. after defeat if SC_KAIZEL is active. [Skotlex]
  850. * Modified NPC_REBIRTH to use Kaizel level 1. [Skotlex]
  851. * Added setting max_exp_gain_rate which caps how much exp you can get from
  852. a single kill. See battle/exp.txt for details. [Skotlex]
  853. * pc_readdb will now cap experience required per level to UINT_MAX, it will
  854. warn if the exp table has exp values above said limit. [Skotlex]
  855. * Changed the default of skill_delay_attack_enable to no. [Skotlex]
  856. * Code rewrites in mob_damage and party_exp_even_share for correctly
  857. handling overflow issues. Now uses UINT_MAX for range comparisons, as it
  858. should be. [Skotlex]
  859. * Also modified the mob_db reading to use UINT_MAX for exp limits, changed
  860. their exp/job exp fields to unsigned int as well. [Skotlex]
  861. * Modified multi_level_up behaviour to work as specified by Kyoki. That is,
  862. on a level up, the max carry-over exp is the exp needed for the previous
  863. level -1. [Skotlex]
  864. * Modified the skill attack display of Meteor Assault and the Warm Skills
  865. (I think the caster should no longer do fancy animations now on each hit)
  866. [Skotlex]
  867. * Added back water elemental targets being inmune to SC_FREEZE [Skotlex]
  868. * SQL compile fix [Komurka]
  869. 2006/02/08
  870. * Added battle config option skill_caster_check, which does a
  871. status_checkskilluse on all skill attacks. When enabled (default on) the
  872. caster of the skill is checked on all skill_attacks, which means that
  873. ground spells will make no effect if the caster is unable to fight
  874. (stunned, frozen, etc) [Skotlex]
  875. * Added battle config option status_cast_cancel. When enabled (default off)
  876. some status changes (freeze, stone, etc) will cancel your cast. [Skotlex]
  877. * Fixed the death exp penalty underflow bug. [Skotlex]
  878. * Rewrote/organized status_change_start, it now receives the base rate for
  879. the effect. It handles reducing this rate/duration through natural
  880. resistances and whatever else should reduce it. [Skotlex]
  881. * Fixes to exp2.txt on the novice job exp. Thanks to rollopop. [Skotlex]
  882. - Also modified exp2.txt to use the normal max levels by default.
  883. 2006/02/07
  884. * Modified battle_check_distance, mobs should no longer find a diagonal
  885. spot on which they lock onto their target, yet fail to attack from. [Skotlex]
  886. * Removed the max level configs from battle/exp.txt [Skotlex]
  887. * Now NPC_POWERUP uses SC_INCATKRATE instead of SC_EXPLOSIONSPIRITS for
  888. enhancing damage. Instead of +1k atk per skilllv, it is +50% atk per
  889. skilllv. [Skotlex]
  890. * Fixed char server changing the save/last point to new grounds in certain
  891. situations. [Skotlex]
  892. * Fixed SG_STAR_ANGER not getting it's damage bonus at all. [Skotlex]
  893. 2006/02/06
  894. * Added a custom exp table that goes up to level 1000 (db/exp2.txt). [Skotlex]
  895. - It uses a inverse exponential growth rate to mimic the official exp rate
  896. increase as close as possible.
  897. - It overrides the exp level of the last 5~10 official exp values for a
  898. smoother curve.
  899. - It's adjusted so that the Lv1000 exp requirement for Advanced Base/2nd
  900. Job is close to the unsigned int limit without going above it (limit is
  901. 4294967295 in my system. It goes up to 42k Million on Advanced
  902. Base lv1000, I think)
  903. * Fixed startnpctimer starting multiple timers instead of failing when the
  904. npc timer is already running. [Skotlex]
  905. * Venom Splasher update: [Skotlex]
  906. - always hits (but splash damage targets can still avoid it)
  907. - Being hit does not cancels it,
  908. - works at 75% or less of target's HP
  909. - being hit normally while under the count has a chance of causing poison.
  910. - Damage is +400% + 50*lv%
  911. * Using autoloot with no arguments now toggles it between @autoloot 0 and
  912. @autoloot 100% [Skotlex]
  913. * Falcon Assault now takes Blitz Beat lv5 as base damage. [Skotlex]
  914. * Fixed pc_makesavestatus not updating status.option correctly. [Skotlex]
  915. * Corrected Waterball so that higher levels can do insane amount of hits. [Skotlex]
  916. * Altered slave behaviour. No more random walking, will stay within 2 cells
  917. of their master. [Skotlex]
  918. * Reverted the Summon Slave behaviour to not adjust level based on number
  919. of current slaves. [Skotlex]
  920. * Coma no longer sends SP to 1. [Skotlex]
  921. * Updated Meteor so that when level 11 or more is casted, the area over
  922. which meteors fall is tripled. [Skotlex]
  923. * Dark elemental characters are now inmune to Curse. [Skotlex]
  924. * Fixed sc_data saving to sql buffer building method. Thanks to its_sparky. [Skotlex]
  925. * Changed the map zone reading from using pow to a bit shift. [Skotlex]
  926. * Experience has now been changed to unsigned int, and is read as such from
  927. the dbs. [Skotlex]
  928. * Increased HT_DETECTING seek range to 7x7 [Skotlex]
  929. 2006/02/05
  930. * Added some of eAIRC bot code, written by me and LittleWolf.
  931. It is disabled and has no configuration options yet, as it is not finished. [Valaris]
  932. * Fixed and documented script command "callshop". [Skotlex]
  933. * Updated sq;-files/mob_db.sql with current mob_db. [Skotlex]
  934. * Updated sql-files/item_db.sql with current item_db. [Skotlex]
  935. 2006/02/04
  936. * Skotlex's Falcon Assault fix. [Vicious]
  937. 2006/02/03
  938. * Fixed the debug script messages specifying the wrong mapname for NPCs.
  939. [Skotlex]
  940. * Now you can't hide from earth elemental attacks (status_check_skilluse).
  941. [Skotlex]
  942. * Grand Cross/Grand Darkness can no longer get the ignore defense -armor
  943. piercing bonuses from cards. [Skotlex]
  944. * Loki's weil is now ignored by bosses. [Skotlex]
  945. * Land Protector and Gantantein should now ignore traps. [Skotlex]
  946. * Fixed Shinobi card so that it fails when you aren't next to a wall.
  947. [Skotlex]
  948. * After a guild master change, the new guild master has his guild skills
  949. blocked for 5 minutes to prevent abuse. [Skotlex]
  950. * Fixed txt-converter compilation errors [Komurka]
  951. 2006/02/02
  952. * Fixed crash in status_change_timer. For some reason the block type switch was removed. [Valaris]
  953. * Crash fix in npc.c npc_timerevent.
  954. was: struct timer_event_data *ted = (struct timer_event_data*)ted;
  955. changed: struct timer_event_data *ted = (struct timer_event_data*)data;
  956. Skotlex, I am assuming it's calling from the passed data var, If I'm wrong
  957. please fix it. I just know what was there was definitely not correct. [Valaris]
  958. * Improved the NPC timer system to enable multiple timers going on at a
  959. time with different players attached to each. Now npc event timers are of
  960. two types: attached or global. The global timers don't have a player
  961. attached and can be started/halted by anyone. The character timers have a
  962. player attached, and they can only be stopped by a script that has the same
  963. player attached. [Skotlex]
  964. - Now player attached scripts will auto-abort when the atteched player
  965. quits the map server.
  966. - Of course, this requires some major testing as it's prone to have bugs...
  967. * Applied the Entry Reusage System to the battle delay damage timers.
  968. [Skotlex]
  969. * Fixed the map server complain when using the default user/password
  970. showing up if you set the new user/pass on the import file. [Skotlex]
  971. 2006/02/01
  972. * Fixed compile errors and warning in chrif.c and charsave.c. [Valaris]
  973. * Map and char server now will complain if they are run using the default
  974. user/password set. [Skotlex]
  975. * Trick Dead makes you stop walking now. [Skotlex]
  976. * Soul Burn is not affected by Lex Aeterna, not affected by target's cards
  977. neither. [Skotlex]
  978. * Freeze and Stone take preference over Benedictio. [Skotlex]
  979. * Sleep/Stun/Petrify/Freeze block each other out. [Skotlex]
  980. * Fixed areamonster when the passed class is negative. [Skotlex]
  981. * Removed the clear screen when launching the server. [Skotlex]
  982. * Integrated the status change variables into a single structure for easier
  983. management. [Skotlex]
  984. * Break fall should no longer trigger when inflicted by freeze/stone/etc
  985. [Skotlex]
  986. * Fixed an overflow in grfio causing read problems in Win32 builds [celest]
  987. * Changed resnametable loading behaviour - grfio will load from data directory
  988. first, and then from the highest priority grf only if that fails [celest]
  989. * Increased grfio filelist limit to 1048576 to avoid problems when loading
  990. too many large grfs [celest]
  991. 2006/01/31
  992. * Fixed skill_check_cloak to use the current skill level of the cloaking
  993. skill and not pc_checkskill() to know if a cloaker away from a wall should
  994. be uncloaked. [Skotlex]
  995. * Likely fixed opening guild storage. [Skotlex]
  996. * Removed no penelty mapflag for nifilheim. Confirmed on iRO. [Kayla]
  997. * Changed default value of gm_cant_drop_max_lvl to 98. Also reworded the
  998. comments for cant_drop_max and min. [Kayla]
  999. * Disabled pet skills by default. To my knowledge they are only enabled on
  1000. cRO, not iRO nor kRO. [Kayla]
  1001. * PF_SOULBURN no longer ignores mdef. [Skotlex]
  1002. * HW_GRAVITATION should now invoke auto spells. [Skotlex]
  1003. * Cleaned up damage return code. Reflect Shield and the like now should
  1004. also trigger autospells from normal attacks (previously it was only worked
  1005. on skill attack returned damage) [Skotlex]
  1006. * Cleaned up Summon Slave mob skill to only summon number of missing mobs
  1007. to complete the skill level (that is, SS level 5 will always bring the
  1008. total count of slaves to 5, never above). [Skotlex]
  1009. * Fixed being able to Encore skills you no longer have in your tree.
  1010. [Skotlex]
  1011. * Added no HP regen while Bleeding, -25% ATK and ASPD penalties as well.
  1012. [Skotlex]
  1013. * Added VIT reduces duration of confusion. [Skotlex]
  1014. * Added "onspawn" mob skill condition. [Skotlex]
  1015. * Changed the exp table format. The new format allows specifying exp tables
  1016. for any particular class. Thanks to Playstester for converting the official
  1017. exp table to the new format. [Skotlex]
  1018. - UNTESTED: Report any problems asap.
  1019. 2006/01/30
  1020. * Autoloot now uses the item's base drop chance rather than final drop rate
  1021. to determine if it should autoloot the item or not. [Skotlex]
  1022. * Fixed super novices getting +10 to all stats temporarily when their death
  1023. count isn't zero. [Skotlex]
  1024. * Fixed Kahai displaying HP-SP as the total healed instead of HP [Skotlex]
  1025. * Cleaned up skill_repairweapon to prevent crashes when the target
  1026. vanishes/changes/whatever before the weapon to repair has been selected.
  1027. [Skotlex]
  1028. * Parsing the Storage/Guild Storage from the char server will now fail if the
  1029. storage has been modified and not saved yet. [Skotlex]
  1030. * Being hit now cancels confuse. [Skotlex]
  1031. * Added back the bleeding icon. [Skotlex]
  1032. * Fixed Combo Finish Soul Linked Effect being a 11x11 area rather than 5x5
  1033. [Skotlex]
  1034. * Added 'restricted' mapflag, based on lordalfa patch [Komurka]
  1035. - you can set restriction zone on map (see mapflag/restricted.txt)
  1036. - you can turn off item usage on certain restricted map in item_noequip.txt
  1037. - you can turn off skill usage on certain restricted map in skill_nocast_db.txt
  1038. * Moved MVP log code so it can log all MVP, not only when player gets MVP item,
  1039. thanks to Hatred_ [Komurka]
  1040. * One more small fix on 'bSPVanishRate' (hp -> sp) [Komurka]
  1041. * Added bSPVanishRate to const.txt - Dark Priest Card should work now ^^
  1042. * Implemented bonus2 bSPVanishRate for Dark Priest Card [Komurka]
  1043. - it isn't finished - I get '[Warning]: pc_bonus2: unknown type 0 50 10!' ><
  1044. * Applied lordalfa patch - you can now forbid usage of certain cards on PVP/GVG/WoE
  1045. defined in item_noequip.txt [Komurka]
  1046. 2006/01/29
  1047. * Added support for more account states like "Unavailable due to hacking/bug
  1048. investigation" etc, thanks to NeoSaro [DracoRPG]
  1049. 2006/01/28
  1050. * Added the night mapflag to the new maps. Removed some indor maps. [Poki#3]
  1051. * Added DISGUISE MobID; UNDISGUISE; script commands [Lupus]
  1052. - Made them for Eastern Year of the Fire Dog Event.(to be uploaded today)
  1053. 2006/01/27
  1054. * Added support for mob_avail.txt replacement for NPC classes. [Skotlex]
  1055. * Added "sense_type" config to conf/battle/skill.conf to select which defense
  1056. is displayed on the sense screen. Defaults to displaying def+def2. [Skotlex]
  1057. * Modified traps so that once they trigger they set themselves as "Into the
  1058. Abyss" casted traps, so that if you remove them, you won't earn the item.
  1059. [Skotlex]
  1060. * Fixed Basilica (small bug introduced yesterday) [Skotlex]
  1061. * Hopefully cleaned out the warnings when compiling the char-SQL server.
  1062. [Skotlex]
  1063. * Updated the makefile for the plugins to take into account the ers.o file.
  1064. [Skotlex]
  1065. 2006/01/26
  1066. * Updated VC project files, thanks to D-Kalck. [Skotlex]
  1067. * Rare drop announces will now be done based on the mvp_sd (character who
  1068. did most damage) instead of sd (character that delivered final blow)
  1069. [Skotlex]
  1070. * Fixed TK Doridori bonuses to double your regen instead of giving 30Hp/3Sp
  1071. [Skotlex]
  1072. * Fixed Sense displaying def2/mdef2 when it should display def+def2 / mdef
  1073. + mdef2. [Skotlex]
  1074. * Fixed Super Novices losing their skill tree (showing up just basic skill)
  1075. under certain circumstances. [Skotlex]
  1076. * Cleanup and optimization of the movement routines. [Skotlex]
  1077. * Added experimental feature "Cell Stack Limit". When enabled (see
  1078. src/map/map.h) it should limit the amount of characters that can be placed
  1079. on the same cell. That's assuming it works (experimental and untested as of
  1080. yet) [Skotlex]
  1081. * Hopefully fixed Benedicto checking on the west/east tiles instead of the
  1082. left/right tiles of the caster. [Skotlex]
  1083. * Fixed mobs being unable to move on tick loopback (which happens every ~51
  1084. days) [Skotlex]
  1085. 2006/01/25
  1086. * Reverted last change, when you log again it still shows the fake
  1087. icon. [Foruken]
  1088. * Temporary fix to fake mute status when using pk_mode and
  1089. !muting_player [Foruken]
  1090. * Probably fixed the max base/job battle config options actually enabling
  1091. characters to reach one more level than the max specified. [Skotlex]
  1092. * Fixed BSS Sacramenti not hitting demon type enemies. [Skotlex]
  1093. * Now poisoned monsters will show HP updates as their health goes down
  1094. (let's see if this finally convinces people that poison works u.u)
  1095. [Skotlex]
  1096. * Splitted up battle_athena.conf into multiple configuration files.
  1097. battle_athena.conf only contains import lines now, and all the
  1098. configuration options are located in conf/battle/* [Skotlex]
  1099. * Updated the db version with the new one by FlavioJS [Skotlex]
  1100. * Improved the error reporting when failing to load a mob skill due to
  1101. insufficient fields. [Skotlex]
  1102. * Changed map_getallusers to use the db interface getall (hope it doesn't
  1103. breaks horribly) [Skotlex]
  1104. * Added an attack delay to TK kicks to prevent the top10 rankers from
  1105. attacking normally during the skill animation. [Skotlex]
  1106. * Updated script.c to display the file not found error using braces as
  1107. delimiters to help when npc filenames include spaces and the respective file
  1108. is not found due to them) [Skotlex]
  1109. * Changed TK_RUN to a misc attack type which should enable you to halt the
  1110. skill quickly after starting it. Updated SC_SPURT to be triggered when you
  1111. stop running if you stopped running one sec or less after you started.
  1112. Corrected the icon of SPURT to be that yellow Running Man. The previous
  1113. footsteps effect was assigned to CHASEWALK. [Skotlex]
  1114. * fixed battle config item_auto_get setting autoloot to just 0.01% drops
  1115. rather than 100%. [Skotlex]
  1116. * Added Sharp Shooting check to skill_attack to prevent hitting hidden
  1117. characters. [Skotlex]
  1118. 2006/01/24
  1119. * Some cleaning up of battle_calc_damage, Assumptio should now also reduce
  1120. damage of all types of attack, not just weapon-based ones. [Skotlex]
  1121. * Incremented SL_MONK combo SP cost reduction to 25% [Skotlex]
  1122. * Updated Full Adrenaline Rush to work on all weapons except bows. [Skotlex]
  1123. * Updated the script engine to report the src of an error when there's a
  1124. problem with one of the script functions. For example, if there's a "player
  1125. not attached error", it will also print which NPC caused it. [Skotlex]
  1126. * Added RFIFOSKIP(fd,RFIFOREST(fd)) to the end of the login server's parse functions.
  1127. This is good for clearing out packets of one byte. [Valaris]
  1128. * Fixed noteleport mapflag affecting Warp Portal. [Skotlex]
  1129. * Fixed map server crashing when parsing an incomplete mob-skill line. [Skotlex]
  1130. * @autoloot 100 will now pickup items that have drop rates ABOVE 100. [Skotlex]
  1131. 2006/01/23
  1132. * Added battle config "no_spawn_on_player", see battle_athena.conf for
  1133. details. [Skotlex]
  1134. * Fixed bows doing less damage on criticals when having high dex. [Skotlex]
  1135. * Moved the enemy_critical adjustment to status_get_critical. [Skotlex]
  1136. * Fixed @chardisguise to use the same id checks as @disguise. [Skotlex]
  1137. * Fixed SightBlaster 'hitting' dead characters. [Skotlex]
  1138. * Basilica check in status_checkskilluse expanded to help mobs release
  1139. their target as soon as they walk into a basilica. [Skotlex]
  1140. * When a player stops walking their to_x and to_y is updated to their
  1141. present position. This MAY fix warp portal not warping players that were
  1142. already there waiting to be warped. [Skotlex]
  1143. 2006/01/22
  1144. * typo fixes (fell -> feel) [Komurka]
  1145. - mob_db_mode_list.txt updated
  1146. - removed some unneeded comments (//komurka)
  1147. * Some changes of @main. Now you can send main-chat messages by sending whisper
  1148. to nick "Main" (or any other, it can be set in inter_athena.conf). [LuzZza]
  1149. 2006/01/21
  1150. * Changed gm_can_drop_lv battle conf switch to gm_cant_drop_min_lv and gm_cant_drop_max_lv [Komurka]
  1151. * SL_SWOO (Esu) will only lasts 1/5 of normal time when used on a Boss-type monster [Komurka]
  1152. -SL_SKE (Esk) won't work on a Boss-type monster anymore (if you KNOW that it should work on them
  1153. write about it on forum; either way don't bother guessing ... SL can solo ANY boss with this skill ~.~)
  1154. 2006/01/20
  1155. * Fixed the login-TXT login Log. [Skotlex]
  1156. * Small update to sql-files/item_db.sql to fix speed potions (a complete
  1157. update will be done when possible...) [Skotlex]
  1158. * Fixed clone script command's duration being in ms rather than seconds.
  1159. [Skotlex]
  1160. * Taekwon Ready Stances combo time is now 2000 - 4*agi -2*dex ms instead of
  1161. a flat 2 secs (same reduction that Monk combos get) [Skotlex]
  1162. * Cleaned up code of SG_HATE, may fix the skill seemingly not working.
  1163. [Skotlex]
  1164. * Likely fixed Even-Share parties not breaking up when a character with
  1165. too high/low level rejoins in char-TXT servers. [Skotlex]
  1166. 2006/01/19
  1167. * Added config option atc_slave_clone_limit to limit the amount of
  1168. @slaveclone's a player can have. [Skotlex]
  1169. * The clone commands now fail when used on someone of higher GM level than
  1170. the caster. [Skotlex]
  1171. * Increased the size of the clif_disp_onlyself packet by one to see if it
  1172. fixes the mysterious cropping of the last character in the message.
  1173. [Skotlex]
  1174. * Now when use_statpoint_table is set to yes, it will be used to determine
  1175. the stat points you earn on level up. [Skotlex]
  1176. * Small fixes as pointed out by FlavioJs in the login TXT server to prevent
  1177. crashes in Win32 compiles. [Skotlex]
  1178. * Merged Marquis's implementation of Enjoyable Rest's earth scroll bonus.
  1179. [Skotlex]
  1180. * Fixed players being able to send custom crafted mute requests that would
  1181. go through regardless of their gm level and mute others. [Skotlex]
  1182. * Updated mapflags [Lupus]
  1183. * Modified the client_connect function in socket.c to allow different parse_functions to be called
  1184. based on the listening socket. After a make_listen_bind returns a listen fd, set that fd's
  1185. func_parse member to whatever parse function to be used. If this value is not manually set
  1186. it will just use the default_func_parse function. This only affects server listening sockets
  1187. in which the func_parse member isn't even used. [Valaris]
  1188. * gvg_traps_target_all now also affects traps in pvp maps. [Skotlex]
  1189. * All reflected damage has now a chance to auto-cast spells. [Skotlex]
  1190. * Fixed Casting ground spells from within basilica. [Skotlex]
  1191. 2006/01/17
  1192. * Updated the map server code to use some of the new db functions. [Skotlex]
  1193. * Fixed ground skills checking the wrong target-type on movement, hence
  1194. making them mostly useless (this is what the Warp Portal report was about)
  1195. [Skotlex]
  1196. * Some code updates to implement the new db interface. [Skotlex]
  1197. - SQL compilation not tested, so if it breaks someone report to fix it :X
  1198. * Added @clouds2 and clouds2 mapflag using effect 516. [Valaris]
  1199. * Fixed some weather effects not working or not functioning correctly. [Valaris]
  1200. * Cleanups and organization to maps_athena.txt and map_index.txt, thanks to
  1201. Poki for the cleanup work. [Skotlex]
  1202. * Some cleanup of the SG_FEEL code [Skotlex]
  1203. * Fixed debug mode compiling in VC7.1. Added optimizations to VC7.1 release mode.
  1204. Defaulted VC7.1 SLN to debug mode. [Lance]
  1205. * Temperory solved the freeing freed pointer error upon map-server shutdown. [Lance]
  1206. 2006/01/16
  1207. * Fixed clif_disp_onlyself packet length, thanks to Orn. [Skotlex]
  1208. * Imported Freya's autoloot system which enables one to specify the maximum
  1209. drop-rate to loot. [Skotlex]
  1210. * Refix of the mapreg SQL saving fix of a while ago... [Skotlex]
  1211. * Playtester custom eamobs spawn updates: coal Mines, umbala fields, and
  1212. minor changes to Sphinx and Geffen Dungeon. [Skotlex]
  1213. * Incremented a bit clone skill usage rate, their rate/delays are now affected
  1214. by the battle_config options mob_skill_rate and mob_skill_delay [Skotlex]
  1215. * Optimized use of BL_* constants by making them stackable (meant for
  1216. map_foreach* calls). Should improve performance by avoiding
  1217. battle_check_target calls on a bunch of invalid targets such as
  1218. items/skills/npcs on skills and other misc places. [Skotlex]
  1219. * Fixed mob skills that should trigger on status on "any bad". [Skotlex]
  1220. * TK classes no longer are inmune to the strip-effects of Jump Kick [Skotlex]
  1221. * Fixed SQL mapreg saving. [Skotlex]
  1222. * Reverted Ice Wall Behaviour (you can snipe/cast through it again) [Skotlex]
  1223. * Fixed possible crash in skill_check_condition on consume-delayed items [Skotlex]
  1224. * Skills whose range is increased by Vulture Eyes now get the range
  1225. increased by 10 for non players (assumes VE level 10). [Skotlex]
  1226. * Added cardfixes of near_attack_def_rate and long_attack_def_rate to misc
  1227. attack calculations. [Skotlex]
  1228. * Fixed Spirit of Wizard not working in a couple of instances. [Skotlex]
  1229. * Advanced Book now gives 1%*skill level success chance to create element
  1230. convert potion [Skotlex]
  1231. * Changed the FEEL skill implementation to store/use map indexes instead of
  1232. map names.[Skotlex]
  1233. * Fixed compilation of plugins. [Skotlex]
  1234. * Applied flaviojs's new db interface and fixed compatibility problems with Visual Studio. [Lance]
  1235. 2006/01/15
  1236. * Fixed poison damaging player even when under 25% hp. [Skotlex]
  1237. * Fixed permanent character variables in Char-TXT [Skotlex]
  1238. * Fixed previous change for stable. Whoops my 5am work again. [Kayla]
  1239. * Fixed the trade exploit allowing for a user to send packets while in a trade.
  1240. For instance the bank NPC becoming a zeny dupe. Kudos to clown. [Kayla]
  1241. * Added script source error reporting to set and getarrayelement, should
  1242. print NPC name and location (map, coordinates) on the console when there's
  1243. an error with these two commands. [Skotlex]
  1244. * Removed treasure chests spawning upon agitbreak, leading to exploits. [Lance]
  1245. 2006/01/14
  1246. * Removed the 5% success penalty for trying to make a convertor for which
  1247. you don't have the relevant enchant skills. [Skotlex]
  1248. * Fixed compilation of Login Converter. [Valaris]
  1249. * Fixed bSPGainRace and bExpAddRace with RC_NonBoss and RC_Boss. [Valaris]
  1250. * Lex Divina now shows the animation even when used on someone you can't
  1251. (non-muted, non-enemy player) [Skotlex]
  1252. * Quick hack to make Shield Reflect trigger auto-spells (only this kind of
  1253. return damage does it? Because other reflect cards like Orc Lord behave
  1254. exactly the same way...) [Skotlex]
  1255. * Fixed grf loading to attempt to load from all grf files specified in
  1256. grf-files.txt (looking for them in the same order specified in the file,
  1257. returns the first match found) instead of only looking up on the last
  1258. specified grf... [Skotlex]
  1259. * Fixed compilation of plugins. [Skotlex]
  1260. * Added error reporting to the db when a null key/data is attempted to be
  1261. inserted and the db is configured to not allow them. [Skotlex]
  1262. 2006/01/13
  1263. * Fixed labels located at the beginning of a script not being counted at
  1264. all. [Skotlex]
  1265. * Applied blackhole89's patch to enable dynamic menus. [Skotlex]
  1266. - Script reference doc updated accordingly.
  1267. * Ranking Taekwons with lv 90+ no longer get Quest/Wedding skills for free.[Skotlex]
  1268. * Readjusted Scream And Frost Joke so now the effect goes off no matter
  1269. where the caster went, but the effect will happen only around the area
  1270. where the skill was done regardless of where the caster is (which is how it
  1271. should work from a logical stand point) [Skotlex]
  1272. * Scream and Frost Joke now take effect 2secs after casting, and caster
  1273. must remain in same map for it to take effect. [Skotlex]
  1274. * Flying Side Kick can't be used by Soul Linkers now. [Skotlex]
  1275. * npc_reload should now correctly remove mobs and npcs that aren't placed
  1276. in any map (such as mobs that were killed and are waiting for respawn) [Skotlex]
  1277. 2006/01/12
  1278. * Fixed Ice-Wall range problem. [LuzZza]
  1279. * Corrected the guild_db_final function in int_guild.c of SQL char-server to
  1280. compile and function with the new db code. [Valaris]
  1281. * Fixed some advanced skills being able to be copied even when restricted [Vicious]
  1282. * Fixed a possible crash-source related to item-picking packets. [Skotlex]
  1283. * Now Top 10 ranking Taekwons with base level 90+ get their whole
  1284. skill-tree maxed out (but only as bonus-skills, they aren't saved on the
  1285. dbs) [Skotlex]
  1286. * Some cleaning of the char_name_letters implementation. Characters don't
  1287. need a space between them, in fact, placing a space in that config makes
  1288. the space count towards allowed/disallowed characters. [Skotlex]
  1289. * Some modifications to the db code to make the code portable. It may
  1290. compile on windows now. (note I can't test SQL compiles yet so report any
  1291. problems ASAP) [Skotlex]
  1292. * Fixed Venom Knife consuming two daggers. [Skotlex]
  1293. * Inverted the packet order in many skills which cause status effects. The
  1294. client expects the status-change packet to arrive before the skill packet
  1295. in order for opt3-related changes to make effect on the character. [Skotlex]
  1296. 2006/01/11
  1297. * Added @main command into atcommand_athena.conf. [LuzZza]
  1298. * Tuxedo and Wedding Dress no longer get a 'forced' gender check regardless
  1299. of config ignore_items_gender setting. [Skotlex]
  1300. * Added support for 'invisible' shops. These are shops that are loaded but
  1301. not placed on any map, so you can't click on them. [Skotlex]
  1302. - Example: -<t>shop<t>Invisible Dealer<t>-,1750:-1,1751:-1,1752:-1,etc...
  1303. - Make sure they have a unique name if you want to reference to it with...
  1304. * Added script command 'callshop' for invoking shops from within a script. [Skotlex]
  1305. - Usage: callshop "Shop Name", flag;
  1306. - Distance to shop is still checked, so it's best to use 'invisible' shops.
  1307. - flag determines shop selection: 1: Show buy list, 2: show sell list.
  1308. Anything else: show the buy/sell/cancel menu.
  1309. - Function returns 1 if successful, 0 otherwise, but it is recommended that
  1310. the script should be closed right away to prevent problems.
  1311. - Documentation to the scripts_command.txt reference file not yet added
  1312. because this command is as of yet untested and may need further refining.
  1313. * Newly created SQL guilds won't save the member-list right away (this
  1314. seems to be the reason why sometimes when creating new guilds, the
  1315. guild-master keeps guild_id == 0 in the tables) [Skotlex]
  1316. * Fixed char/int_storage.c reporting lines with too many items when in
  1317. reality said items had the exact max amount allowed. [Skotlex]
  1318. * Moved the status_change_clear code below the exp penalty so that the
  1319. SC_BABY effect will work. [Skotlex]
  1320. * Fixed the map_index never finding the last map specified in the
  1321. map_index file. [Skotlex]
  1322. * Fixed an overflowed pointer in char/inter.c, and an already free'd pointer
  1323. error in map/guild.c [Skotlex]
  1324. * Added battle option party_item_share_type, now you can choose between
  1325. round-robin (previous implementation) and random (default) [Skotlex]
  1326. * Fixed compilation of the plugins (due to the db change) [Skotlex]
  1327. * Fixed a few issues with the map server (notably npc_command_sub was
  1328. broken) [Skotlex]
  1329. * Added proper escaping of the motd string before inserting it on the rag
  1330. server info SQL table. [Skotlex]
  1331. 2006/01/10
  1332. * Updated the map-server to conform to the new db interface. Removed
  1333. DB_DELAY_FINAL_CHANGES and related code from db.* as now eA fully complies
  1334. to the new interface. [Skotlex]
  1335. * Crafting Arrows, Weapon, Forging/Upgrading now all fail if you have an
  1336. npc going on to prevent your inventory from being modified while selling.
  1337. [Skotlex]
  1338. * Updated the char-SQL server to etc etc etc new db etc etc etc. [Skotlex]
  1339. * Cleaned up the description of size_fix.txt [Skotlex]
  1340. * Updated the char-TXT server to be blah blah blah new db blah blah. [Skotlex]
  1341. * Updated both login servers to be fully compliant with the new db
  1342. interface. [Skotlex]
  1343. * Moved skill damage bonuses from cards to the 'second layer' which means
  1344. they are applied on top of previous damage bonuses rather than just adding
  1345. to them. [Skotlex]
  1346. * Some more updates to the db code as specified by FlavioJS [Skotlex]
  1347. * Fixed the memory leak of npc_unload_ev. [Skotlex]
  1348. 2006/01/09
  1349. * Some more updates regarding the new db system. [Skotlex]
  1350. - Note that there's currently a leak regarding npc_events (ev_db), but this one is
  1351. not a serious problem (unless you use a lot of npc_reloads) and will be
  1352. fixed as the db gets improved.
  1353. * Moved the Kaupe code to battle_calc_weapon_attack where it will dogde all
  1354. weapon-based attacks that can be dodged (giving the illusion of infinite
  1355. flee for skill's duration). [Skotlex]
  1356. * Moved Sonic Acceleration and Soul Linked SB damage bonus to the second
  1357. layer of skill modifiers. [Skotlex]
  1358. * Enchant Deadly Poison and True Sight damage bonuses are now applied after
  1359. skill modifiers rather than added with them (damage % stack type). [Skotlex]
  1360. * Modified Ice-Wall to work using cell types defines instead of directly
  1361. modifying the gat terrain information. Main reason for this is to enable
  1362. pc_setpos to place players on top of an ice-wall, because otherwise it
  1363. was forcing players to warp-around even in maps with noteleport set which
  1364. is prone to exploits. [Skotlex]
  1365. * Fixed SG_FUSION (SG_FUSION <-> SC_FUSION #_#) [Komurka]
  1366. * Now sense elemental values are again uncapped (so enemy with -25% resist
  1367. will show 230% instead of 0%), as requested :P [Skotlex]
  1368. * Replaced the db subsystem for FlavioJS's implementation and initial work
  1369. on updating the eA code to use it as intended. [Skotlex]
  1370. * Fixed Char-TXT server saving last/save maps with spaces on the left. [Skotlex]
  1371. * Fixed Char-SQL server saving new character's maps with spaces on the left. [Skotlex]
  1372. * Fixed Charsave method 1 saving memo maps with spaces on the left. [Skotlex]
  1373. * Changed the order of packets sent for Assumptio (may fix the visual not
  1374. showing up?) [Skotlex]
  1375. 2006/01/08
  1376. * Fixed the guild SQL cache removing guilds from memory when said guilds
  1377. had no data to save (but were not yet marked for removal) [Skotlex]
  1378. * Added a cap to limit Star Gladiator's job level to that of the normal
  1379. classes (instead of 2nd classes) [Skotlex]
  1380. * Fixed TXT char server parsing only the first character permanent variable
  1381. received from the map server and ignoring the rest. [Skotlex]
  1382. * Fixed @users crashing the server. [Skotlex]
  1383. * Added Arrow Repel to the list of skills whose range is increased by Vulture Eye. [Skotlex]
  1384. * Fixed the item pick-up rule for party options being working backwards. [Skotlex]
  1385. * Fixed progress info in TK_MISSION [Komurka]
  1386. * Fixed an aproximation error when calculating distances which causes stuff
  1387. like mobs thinking they are within attack range when they actually aren't
  1388. [Skotlex]
  1389. * Char-server will now be notified after a character logs out when using
  1390. charsave_method:1 [Skotlex]
  1391. * Added check to update pet's position on pc_movepos (stuff like High Jump)
  1392. when the master moves too far away or to a position the pet can't reach.
  1393. [Skotlex]
  1394. * Fixed char-save method 1 saving map names with padding spaces to the
  1395. left. [Skotlex]
  1396. * Now sense elemental values are capped to 0 as lower bound (so for an
  1397. enemy with -25% resist, it'll show 0% instead of 230%) [Skotlex]
  1398. * Updated sql-files/ mob_db.sql and item_db.sql to current TXT data.[Skotlex]
  1399. 2006/01/07
  1400. * If player is dead, and is spawned (such as @refresh), death packet is sent. [Valaris]
  1401. * Cleaned pc_attack_timer so that the attack timer will auto-readjust when
  1402. it triggers during the can't act tick instead of cancelling the attack
  1403. sequence. [Skotlex]
  1404. * Fixed compilation of the TXT-converter. [Skotlex]
  1405. * walkto x,y request packets are now ignored if you are sitting. [Skotlex]
  1406. * Fixed a typo that was making the party item-pickup style shared not
  1407. taking effect for the item_first_get_time regardless of setting. [Skotlex]
  1408. * Applied Playtester's custom mob spawns to the eamobs/ set. [Skotlex]
  1409. - These custom mob spawns are an experiment to balance out mob spawns and
  1410. put some sense into them (no crap like too strong AND too weak mobs on the
  1411. same floor, increasing mob difficulty the deeper into the dungeon you go,
  1412. etc), without moving mobs too far from where players are used to see them neither.
  1413. - To enable them, modify scripts_main to use scripts_eamonsters rather than scripts_monsters.
  1414. - Currently, the modified dungeons are: Glast Heim, Geffen Tower, Clock
  1415. Tower, Sphinx, Pyramids, Byalan.
  1416. * Added check to make sure guildspy and partyspy variables have value. [Valaris]
  1417. * Separated the permanent variables from the character status structure. [Skotlex]
  1418. * permanent variables are now loaded on their own packets as needed to
  1419. reduce the bandwidth wasted between servers. [Skotlex]
  1420. * Permanent account variables are now saved when the script is finished
  1421. instead of each time they were modified. [Skotlex]
  1422. * OnInit scripts and related code now executes after all perm variables are
  1423. received (so now account variables are accessible during it) [Skotlex]
  1424. * Fixed typo in pc.c causing crashes in Line 769. [Lance]
  1425. * Corrected VC7.1 prject files to include mapindex.c and mapindex.h [Lance]
  1426. * Corrected Wrath of the Star formula (added missing STR in equation) [Komurka]
  1427. - Added movement speed bonus to SG_FUSION (same as PecoPeco gives)
  1428. - You can now 'turn off' SG_FUSION
  1429. * updated NoIcewall maplags, thanks to Sir Loon [Lupus]
  1430. * soundeffectall modified to rely on dependancies depending on situation. [Lance]
  1431. * Modified getd to return 'pointer' (will be 'dereferenced' automatically) instead of value,
  1432. making it very flexible when paired with getelementofarray() [Lance]
  1433. 2006/01/06
  1434. * Corrected main.sql having incorrect syntax [Foruken]
  1435. * Cleaned up some maps in maps_athena.txt and added a bunch of cloned maps
  1436. to map_index.txt [Skotlex]
  1437. * Refine bonus is no longer increased by the number of hits from the skill
  1438. except for TSS [Skotlex]
  1439. * Dispelled Berserk won't drop HP back to 100 now. [Skotlex]
  1440. * Mobs that use NPC_SUICIDE won't give neither exp or loot now. [Skotlex]
  1441. * Summoned mobs that cannot move will be removed from the map when the
  1442. master is gone to another map AND the mob's map is a gvg ground. [Skotlex]
  1443. * Fog of Wall effects now work in both directions (outside -> inside,
  1444. inside->outside) [Skotlex]
  1445. * Fixed the sql guild loading always returning a blank guild when the
  1446. guild_id does not exists! [Skotlex]
  1447. 2006/01/05
  1448. * Some changes to the guild SQL code to report whenever a guild's id is not
  1449. matching the one it was stored with in the db, which in turn free's the
  1450. guild and doesn't saves it to perhaps prevent data corruption. [Skotlex]
  1451. * Corrected the fifo-buffer readjusting code to set a reserve-buffer size
  1452. of 1/8th of the inter-server link (32K) for said links. [Skotlex]
  1453. * The mapif_send* and charif_send* functions (char/login servers) will now
  1454. adjust the buffer size when there isn't enough space to write data to them
  1455. rather than abort sending the data. [Skotlex]
  1456. * Increased inter-server socket buffer size to 256*1024. Should fix problems
  1457. with 0x3004. [Kayla]
  1458. * Increased inter-server socket buffer size to 192*1024. Should fix problems
  1459. with 0x2b01. [Kayla]
  1460. 2006/01/04
  1461. * Fixed buildin_monster not working for random classes (dead branch, etc). [Skotlex]
  1462. * Reverted inter-server socket buffer size to 131072 bytes. [Valaris]
  1463. * Removed reduction of socket buffer sizes after WFIFOSET if the max size
  1464. is >= FIFOSIZE_SERVERLINK. This should reduce inter-server buffer overflows. [Valaris]
  1465. * Script command 'monster' will now fail when trying to spawn a mob-class
  1466. that is not in the mob_db (warning will be printed on the console) [Skotlex]
  1467. * Fixed a crash when spawning a mob who's class is not in the mob_db. [Skotlex]
  1468. * Some cleanups and improvements to the character saving algorithm meant to
  1469. make it harder to have dupe exploits during char-map connection lag
  1470. moments. [Skotlex]
  1471. * Doubled the inter-server link buffer size. [Skotlex]
  1472. * Fixed status_get_adelay messing up the mob's aspd :X [Skotlex]
  1473. * Changed skill_delayfix to use the amotion value as default delay for
  1474. weapon skills with no delay instead of attack delay (adelay is actually
  1475. twice your aspd, amotion is the same as aspd) [Skotlex]
  1476. * Added upgrade_svn4783.sql, which corrects the structure of the mapreg
  1477. table to use varchars as it should. [Skotlex]
  1478. * Fixed Meteor Assault. [Skotlex]
  1479. * Fixed (I hope) the double free'd pointer issue in the login servers. [Skotlex]
  1480. 2006/01/03
  1481. * Fixed the warp unloading code. [Skotlex]
  1482. * Updated Jump Side Kick to also clear Berserk Pitcher. [Skotlex]
  1483. * Preserve now protects against the stripping effects of Side Kick. Taekwon
  1484. Classes (TK/SL/SG) are also inmune to it. [Skotlex]
  1485. * Hopefully fixed the guild information not being sent in some situations
  1486. when people are added/removed from a guild. [Skotlex]
  1487. * Some cleaning up and bug fixes to the guild module of the char-sql
  1488. server. Let's see if it fixes anything up... [Skotlex]
  1489. * Added battle option show_party_share_picker. When enabled tells the
  1490. picker of the item who received the item when in a party with 'Party Share'
  1491. loot style. [Skotlex]
  1492. * Added the nullpo_retv line required for win32 compiles... [Skotlex]
  1493. * Added some cleanup code to properly remove all warp related information
  1494. on npc_unload (untested as of yet!) [Skotlex]
  1495. 2006/01/02
  1496. * Completed (almost) packet 0x1e9 which gives the party info. Now you can
  1497. see the party's item options when opening the alt+p menu. [Skotlex]
  1498. * Fixed regen only working when overweight. [Valaris]
  1499. * Added body size to clones. [Valaris]
  1500. * Corrected TK_JUMPKICK to remove Soul Linker spirit buffs and related
  1501. effects (except Berserk-Pitched effect) [Skotlex]
  1502. * Corrected TK_RUN to give +10 dmg bonus to kick skills when not wearing a
  1503. weapon. [Skotlex]
  1504. * Added Kaina's Enjoyable Rest bonus and Max SP bonus. [Skotlex]
  1505. * Fixed Stone Curse consuming gems while Soul Linked. [Skotlex]
  1506. * Fixed party-change-map packet incorrectly checking if the even share rule
  1507. was broken (party share should now correctly break on map-change, or when a
  1508. player has it's level reset) [Skotlex]
  1509. * Corrected the Jump Kick base-level damage bonus when combo-used. [Skotlex]
  1510. * Added the running damage bonus to the TK kicks. [Skotlex]
  1511. * Made the TK kicks end the Soul Linked status on targets. [Skotlex]
  1512. * Corrected Spirit of Wizard to nullify any bounced back spells. [Skotlex]
  1513. * Cleaned up the natural/skill HP/SP regen routines. [Skotlex]
  1514. * Fixed Turn Kick not knocking back nearby enemies. [Skotlex]
  1515. * Added the damage bonus to Flying Side Kick when used from a combo.
  1516. However I am waiting for the actual equation (currently just does +300%
  1517. dmg) [Skotlex]
  1518. * Fixed Counter Kick for ranking Taekwons. [Skotlex]
  1519. * Added walk slowdown and aspd penalty to Eska. [Skotlex]
  1520. * Fixed status_get_size which seemed severly broken. [Skotlex]
  1521. * Fixed Kahai to only display actual amount of HP healed. [Skotlex]
  1522. * Now when a script's map is not found (or not loaded on the map server)
  1523. the script engine will skip the whole script instead of just the first
  1524. line. [Skotlex]
  1525. * Fixed Soul-Linked Dancers not receiving the Bard songs. [Skotlex]
  1526. * Updated Joshuaali's VC-8 project files. [Skotlex]
  1527. 2006/01/01
  1528. * Some improvements to the login server (txt/sql) to prevent memory 'leaks'
  1529. from accounts that logged in but where never properly set as logged out.
  1530. [Skotlex]
  1531. * Fixed mapindex not working for last map loaded in map_index.txt [Skotlex]
  1532. * Added support for packet 0x1e9, party_main_info. Packet is still
  1533. incomplete and the client is ignoring it currently... [Skotlex]
  1534. * Changing party options now does not alters item party options. [Skotlex]
  1535. * Corrected Kahai healing even when there's not enough SP to do so. [Skotlex]
  1536. 2005/12/31
  1537. * Fixed the additional effects on normal attacks of Enchant Poison, Enchant
  1538. Deadly Poison and Kahai not taking effect except when the attacker was a
  1539. player. [Skotlex]
  1540. * Resurrection now fails on gvg maps (when reviving) [Skotlex]
  1541. * Kaite now works on player-casted spells regardless of level... [Skotlex]
  1542. * Fixed Kahii healing 0 rather than 200*skilllv... [Skotlex]
  1543. * Mobs will now go after the loot as soon as they spot it rather than on
  1544. their next random-walk time. [Skotlex]
  1545. * Set the 56th byte in packets 7b and 1da. It deals with acceleration in directions.
  1546. It's just like the final byte in packet 0x87. Server-side update of this still needs to be figured out. [Valaris]
  1547. * Fixed Kaziel not starting Kyrie Elison upon resurrection. [Skotlex]
  1548. * Fixed Kahai's healing display. [Skotlex]
  1549. * Fixed Kaite bouncing back always one spell. [Skotlex]
  1550. * Fixed and tested @waterlevel. It requires the grfs to be present as the
  1551. map layout height information is stored there but not in the map data kept
  1552. in memory. [Skotlex]
  1553. 2005/12/30
  1554. * Disabled certain packets from taking effect during trades to prevent
  1555. possible exploits (such as picking and dropping items, buying selling from
  1556. npcs, etc) [Skotlex]
  1557. * Now you can't move items to/from your inventory to the cart/storage
  1558. during a trade (this is to prevent possible item dup exploits) [Skotlex]
  1559. * Emergency Recall now only works from within woe grounds... [Skotlex]
  1560. * Removed returns from non-null lines in MOTD. Replaced returns in null lines with a space. [Valaris]
  1561. * Fixed a bug where MOTD wasn't displaying blank returned lines. [Valaris]
  1562. * Updated mapindex so that name lookups ignore extensions, and the loaded
  1563. maps are always terminated in .gat. Id lookups will always return a string
  1564. terminated in gat. Purpose? It enables specifying mapnames without the .gat
  1565. extension, so you can have npcs in prontera, no need for the .gat. And the
  1566. returned string always has a .gat for needed when it is passed to the
  1567. client. Now you can safely get rid of the .gat extension in all mapnames. [Skotlex]
  1568. * Fixed the txt-converters so they compile cleanly again. [Skotlex]
  1569. * Added mapflag script support for no loot, no exp, no return, no warp to,
  1570. nightmare drops (see db/const.txt for names) [Skotlex]
  1571. * Removed an extra } in int_party.c that caused compile errors. [Valaris]
  1572. * Fixed a crash when warp portals passed from passive to active. [Skotlex]
  1573. * Added a missing label (M_0) that was causing people to freeze when viewing the city list from "Miss Yoon" [Zephiris]
  1574. 2005/12/29
  1575. * Newly created char-SQL guilds will be saved inmediately rather than at
  1576. their next turn in the cache (may fix those guild disappearing errors)
  1577. [Skotlex]
  1578. * Implemented a map-index which maps map-names to a unique number, this
  1579. reduces memory required to store maps as well as the size of related
  1580. packets between the char/map server. Maps and their indexes are stored in
  1581. db/map_index.txt, and the index of a map should NEVER change (see file for
  1582. more details). The index is translated to/from map-names for saving, so
  1583. save-structures are not required to be modified. [Skotlex]
  1584. - PD: The new mapindex also found a bunch of broken map names in various
  1585. NPCs, someone will have to go fix them up.
  1586. * Updated the party member structure to hold the char_id. For end users,
  1587. the most noticable change is that now you can have more than one
  1588. character from the same account belong to the same party. [Skotlex]
  1589. - TXT users will have to wipe the party files, SQL users use the respective
  1590. upgrade file (upgrade_svn4726.sql) to generate the new party column.
  1591. * Updated the char-sql server to hold parties in memories until they are no
  1592. longer needed (like the guild-cache), also optimized the save routine to
  1593. avoid needless SQL calls. [Skotlex]
  1594. ** WARNING: Because of the previous optimizations, a lot of code was changed around
  1595. the map/char servers, the char-sql's party system got pretty much a
  1596. rewrite, so some problems are to be expected. Some basic testing with
  1597. parties over here showed no problems, hence the work is getting commited
  1598. as it is because it isn't getting any better without further testing.
  1599. * Set value of the last byte in packet 0x87 (walkok) to 0x88 (10001000).
  1600. This is a default value in Aegis, and has something to do with animation speed in certain directions.
  1601. This byte is going to need to be fully analyzed since it does change in Aegis, just that I have
  1602. been unable to figure out what the conditions are. [Valaris]
  1603. * Mob skills are not even read now if mob skills are disabled in
  1604. battle_athena. [Skotlex]
  1605. 2005/12/28
  1606. * Fixed xmas and wedding palette ignore options. It will also no longer send the dye packet if @dye is used. [Valaris]
  1607. * Some code cleanup meant to fix possible memory leaks regarding
  1608. parse_script() [Skotlex]
  1609. * Small fix to party-share item pickup which should fix the current item
  1610. dup exploit. [Skotlex]
  1611. * Merged Reddozen's implementation of Kahai. [Skotlex]
  1612. * Implemented Kaite (it simply changes the target of spell to the caster,
  1613. so the caster's status changes and defense are the ones considered)
  1614. [Skotlex]
  1615. * Removed Guilds Glory from guild skill tree, can be enabled with require_glory_guild
  1616. battle conf switch [Komurka]
  1617. * Cleaned up the implementation of Poison and Deadly Poison. Corrected a bug
  1618. on Deadly Poison that was KO'ing human players when it triggers under
  1619. certain circumstances. [Skotlex]
  1620. * Added guild_skill_tree.txt [Komurka]
  1621. - corrected guild skill tree
  1622. * Battle Orders, Regeneration, Restore and Emergency Recall now share their
  1623. 5 minute delay. [Skotlex]]
  1624. * Implemented SC_INTRAVISION [DracoRPG]
  1625. * Reorganized a bit DEF/MDEF calculation code [DracoRPG]
  1626. * Added a small licence notice at the top of every Athena source/header file, I've tried
  1627. to put it only where it should have been but I'm not a pro ^^ [DracoRPG]
  1628. 2005/12/27
  1629. * The 50% Weight Icon will now show up at whatever % was specified in
  1630. natural_heal_weight_rate [Skotlex]
  1631. * Fixed char-txt server crashing if trying to read storage lines with more
  1632. items than the max (excess items will simply not be read and a warning
  1633. printed) [Skotlex]
  1634. * Added silent_console config option to the servers to filter out the
  1635. console output (login_athena, char_athena, map_athena config files). Makes
  1636. it possible to hide unwanted messages by category, so for example you can
  1637. remove all info messages, or all warning+notice messages, etc. [Skotlex]
  1638. * Removed unused battle switches enable_upper_class and unit_movement_type. [Skotlex]
  1639. * Reenabled battle switches pet_defense_type, mob_defense_type and
  1640. mob_remove_damaged. [Skotlex]
  1641. * Applied Irmin's patch to add support for SQL codepages. [Skotlex]
  1642. * Fixed friend list saving if using a custom char table name (SQL version). [Valaris]
  1643. * Added check for mute in main chat [Foruken]
  1644. * Likely fixed lose Hp/Sp script commands when used on accesories. [Skotlex]
  1645. * Added 2 new script commands: getfatherid, getmotherid [Lupus]
  1646. * Fixed compatibility problems with stricter compilers. [Lance]
  1647. * Added joshuali's new VC8 project files and SQL database upgrade script. [Lance]
  1648. * Fixed juicer script typo, eliminating unlimited juicing capability with zero zeny. [Lance]
  1649. 2005/12/26
  1650. * Added check for free'd guild pointer beforing freeing in guild_save in int_guild.c. [Valaris]
  1651. * Added @kamic command. Now you can send colored GM-messages.
  1652. Syntax: @kamic <color> <message>. Color is 3-bytes hexadecimal number RRGGBB. [LuzZza]
  1653. * Implemented main chat (global chat channel). Usage: @main <on|off>, @main <message>. [LuzZza]
  1654. * Chasewalk players can now be hit in the same way a Cloaked player could.
  1655. [Skotlex]
  1656. * Added option mob_npc_event_type, read battle_athena.conf for details.
  1657. [Skotlex]
  1658. 2005/12/24
  1659. * Fixed @go, thanks to Persian [Vicious]
  1660. * Updated @go command for new cities, done by Harbin [Vicious]
  1661. * Added root user check and warning to non-Windows compiles. [Valaris]
  1662. * Added a check to remove characters that would normally be left unremoved
  1663. during shutdown because they just happened to be between maps. [Skotlex]
  1664. * Fixed the production code always giving 1 item instead of the value they
  1665. should (50/100/200 for Twilight Pharmacy skills) [Skotlex]
  1666. * Corrected easy path searching algorithm failing for some cases (which
  1667. incidentally seemed to be the reason skill_wall_check was broken) [Skotlex]
  1668. * Fixed compile for TXT map-server. [Valaris]
  1669. * Fixed stone curse's defense being checked versus int rather than mdef. [Skotlex]
  1670. * Fixed firewall treating everyone as undead/fire-element. [Skotlex]
  1671. * Added SQL read of cast_db. [Valaris]
  1672. * Added SQL read of skill_require_db. [Valaris]
  1673. * Added SQL read of skill_db. [Valaris]
  1674. * Added setting use_new_sql_db to inter_athena.conf for development.
  1675. Do not enable this setting, it will be merged into use_sql_db once all work is finished. [Valaris]
  1676. * Added some work towards sqlizing the rest of the databases. [Valaris]
  1677. * Changed @help2 to #help to display char commands. Cut @help in half
  1678. @help2 has the other half. [Kayla]
  1679. 2005/12/23
  1680. * Missed a change in txt login.c for bind_up. [Valaris]
  1681. * Cleanup organization of clif.c and script.c.
  1682. Please don't put extra functions beyond inits, try and organize a little. [Valaris]
  1683. * Removed login_ip option from login_athena.conf as it is not used. [Valaris]
  1684. * Fixed bind_ip option in login servers. [Valaris]
  1685. * Fixed a bunch of terrible typos in chrif.c [Skotlex]
  1686. * Fixed a terrible typo in the handling of broadcast messages which was
  1687. causing the map server to send garbage packets to the char server.
  1688. [Skotlex]
  1689. * Added resistance (int + luk/3) to Stone Curse's equation [Skotlex]
  1690. * Updated sql-files/item_db.sql to current txt version. [Skotlex]
  1691. * Fog of Wall update... Blindess won't affect bosses, blindness ends as
  1692. soon as you step out (players only) [Skotlex]
  1693. * Implemented the Strip equipment effects on mobs. [Skotlex]
  1694. * Now when Berserk ends, the char's HP goes to 100. [Skotlex]
  1695. * LK's Concentration now gives +50 hit rather than +50% [Skotlex]
  1696. * Inverted the handling of Individual/Shared item pickup rule for parties.
  1697. [Skotlex]
  1698. * Fixed the item ruling for parties not being correctly read from the save
  1699. files. [Skotlex]
  1700. * Now Star Gladiator uses 2nd Adv.Class Job EXP table (13th column) [Lupus]
  1701. - In future there could be added the 14th EXP column, specially for Star Gladiator
  1702. 2005/12/22
  1703. * Begin work on packet optimization .. not done yet [MouseJstr]
  1704. * Finished work on @help/@help2. @help will no longer show # commands. @help2 shows
  1705. them instead. [Kayla]
  1706. * Fixed compile warnings in atcommand.c and map.c. Fixed compile error in script.c. [Valaris]
  1707. * wedding_modifydisplay's default is now no (that's how it is on official)
  1708. [Skotlex]
  1709. * Some cleaning to skill_attack, also added target checking for splash
  1710. attacks/groundbased skills [Skotlex]
  1711. * Mobs will now stop walking if their target no longer exists (picked up
  1712. items, for instance) [Skotlex]
  1713. * Modified firewall to cause no damage delay when hitting undead
  1714. characters. It may fix undead mobs warping when walking through the
  1715. firewall. [Skotlex]
  1716. * Added script command "clone" for cloning of players. See
  1717. doc/script_commands.txt for further information. [Skotlex]
  1718. * Added @waterlevel debug command to read/change the current's map
  1719. water-level (command untested) [Skotlex]
  1720. * Enabled names for forged weapon/created Potions by default [Lupus]
  1721. - Old issues have beed solved long time ago, now items by TOP10 BS/ALCH gain their TOP10 bonuses
  1722. 2005/12/21
  1723. * Now left_cardfix_to_right won't take effect when there's no weapon equipped
  1724. on the right hand. [Skotlex]
  1725. * Updated slave AI to support player masters as well (that is, you could
  1726. have a non aggressive slave, and it will target any mobs the master
  1727. targets) [Skotlex]
  1728. * Added battle option skill_wall_check, when enabled, all ground skills
  1729. will do a check for each cell to guarantee a straight path between the
  1730. cells and the target tile. Should prevent AOE skills from hitting through
  1731. walls. Due to the possible performance penalty this setting brings, it
  1732. defaults to no currently. [Skotlex]
  1733. * Default skill delay for skills with no delay is now the normal attack
  1734. delay. [Skotlex]
  1735. * Extremity Fist/Charge Attack will fail if the player can't move to the
  1736. target. [Skotlex]
  1737. * Prepare kick skills now only fail for Soul Linkers. [Skotlex]
  1738. * Merged in Marquis007's work on SL_SKA/SL_SWOO [Skotlex]
  1739. * All skills except Shield Boomerang get the weapon's refine bonus now.
  1740. [Skotlex]
  1741. * Taekwon Ready Stances will now fail if you are a Second Job of the
  1742. Taekwon Tree (SL, SG) [Skotlex]
  1743. * Another fix to item picking for party-share. Hopefully it works alright
  1744. now (at least I believe it should be dupe-proof now) [Skotlex]
  1745. 2005/12/20
  1746. * Updated water heights for some maps, thanks to [Lupus]
  1747. - removed p_track02.gat from the maps list. Thanks to Justin84
  1748. * Fixed produce_db items always failing... [Skotlex]
  1749. * Hopefully fixed picking up items on a party-share type of party. [Skotlex]
  1750. * Txt map servers will now send the whole list of online characters at
  1751. UPDATE_INTERVAL (10 secs) rather than CHECK_INTERVAL (1 hour) so that the
  1752. online.html file will be correctly updated. [Skotlex]
  1753. * Fixed char_sql and char crash because of buffer overrun. [Lance]
  1754. * Added a flag to tag non-weapon based skills so that they don't get the
  1755. following bonuses: Star crumb damage, Mastery bonuses, Weapon Refine damage
  1756. upgrades. Currently applies only to shield skills. [Skotlex]
  1757. * Removed use of castle_id for guilds in char-sql server (use corresponding
  1758. upgrade_svn* file). TXT servers haven't been touched yet because that
  1759. would mess up the guild save files. [Skotlex]
  1760. * Online list of characters will be sync'ed every 10 secs for TXT servers.
  1761. [Skotlex]
  1762. * Merged in Reddozen's work to get Twilight Pharmacy working. [Skotlex]
  1763. - Create Deadly Poison Bottle and Holy Water are now both handled by the
  1764. item producing code.
  1765. 2005/12/19
  1766. * Fixed char servers not parsing correctly the online count packet (/who
  1767. should work fine now) [Skotlex]
  1768. * Fixed the Dodge walking speed bonus to Assassin. [Skotlex]
  1769. * Added the new Garden City Hugel and Kiehl maps. [Valaris]
  1770. * Corrected Kaupe/Kaizel so that you can cast it on self/family when
  1771. not-linked, and anyone when linked. [Skotlex]
  1772. * Fixed the mob damage log not getting the ID of the attacker registered...
  1773. [Skotlex]
  1774. * Added a new timer which updates only the count of characters on the
  1775. current map server to the char server. Update interval is 10 secs.
  1776. [Skotlex]
  1777. * Updated status_clear_debuffs to clear many other types of ailments
  1778. (Gospel should be clearing up most negative status changes now) [Skotlex]
  1779. * Fixed exp calc type 0 (dmg/total dmg) being calculated as 0 always. [Skotlex]
  1780. * Implemented the item pickup style for parties. [Skotlex]
  1781. - Party share distributes items in round-robin fashion among players who
  1782. are in the same map.
  1783. - Pick-up Style shared is needed for anyone to be able to pick up the item
  1784. bypassing the timers set for first/second/third sd. [Skotlex]
  1785. * Optimized map server's online-listing update timers. [Skotlex]
  1786. * Some updates to the online db in the char/char_sql servers, should help
  1787. fix some memory leaks due to chars left tagged as 'online' even though
  1788. that's incorrect. [Skotlex]
  1789. * Added buildin_warpchar script function. Useful for warp one player from
  1790. another player npc-session. Sytax: warpchar "map.gat",x,y,Char_ID; [LuzZza]
  1791. * Now opening storage will fial if the guild storage is open and viceversa.
  1792. [Skotlex]
  1793. * Total damage a mob receives is now stored on it's own variable. Damage
  1794. log implementation clean-up. [Skotlex]
  1795. 2005/12/18
  1796. * Fixed Close Confine not affecting the caster. [Skotlex]
  1797. * Fixed all skills except Extremity Fist not getting the weapon size
  1798. modifiers [Skotlex]
  1799. * Fixed Warp Portal checking for noteleport instead of nowarp mapflag
  1800. (again?) [Skotlex]
  1801. * Fixed baseJob working as baseClass (I hope it works fine now) [Skotlex]
  1802. * Fixed Doridori bonus for Super Novices [Skotlex]
  1803. * Updated new MOTD code so that it can compile on VC. [Valaris]
  1804. * Fixed clone's dyes changing when they attack. [Valaris]
  1805. * Declared pc_read_motd(void) in pc.h for the motd reload command. [Valaris]
  1806. * Added @reloadmotd for reloading the motd.txt into memory. [Valaris]
  1807. * motd.txt will now load into memory at startup instead of being read everytime a player logs in. [Valaris]
  1808. - motd.txt can now have lines commented with "//" .
  1809. - MOTD_LINE_SIZE is defined in pc.c, change this to increase maximum amount of lines allowed in motd.txt.
  1810. - Default motd line maximum is 128.
  1811. * Added a new script function 'setitemscript ItemID,"{ end; }"' [Lupus]
  1812. - Very useful for events that give TEMP item bonuses for short time period 8) A Custom New Year Event NPC's coming soon.
  1813. 2005/12/17
  1814. * Updated the svn eol-style properties to make merging between
  1815. linux and windows easier when we use more complex branching
  1816. system [4544: MouseJstr]
  1817. 2005/12/16
  1818. * left_cardfix_to_right now also moves the ignore race/element defense
  1819. bonuses (Ice Pick, Weed Killer, etc) [Skotlex]
  1820. * Some fixes to the job_name functions (rearranging inside msg_athena.txt
  1821. as well) [Skotlex]
  1822. * Left card to right fix will now also apply to defense piercing effects
  1823. (Ice Pick) [Skotlex]
  1824. * Fixed char-converter being broken for a type mismatch [Foruken]
  1825. 2005/12/15
  1826. * Fixed clone skills again. This time ground-based skills are working, and
  1827. support skills have a re-cast delay of half the skill's actual effect. [Skotlex]
  1828. * Fixed clone commands sometimes spawning the clone on a non-walkable tile
  1829. (which in turn sends the clone to a random map location) [Skotlex]
  1830. * Added debug information to the guild cache. Total number of guilds in the
  1831. db will be printed now (as long as the save log is active) [Skotlex]
  1832. * Updated SG_HATE to pick the specific class (Select a Monk, and the bonus
  1833. is against monks only, not Champions/Acolytes/Baby Monks) [Skotlex]
  1834. * Removed hardcoded table names in login_sql/login.c [Foruken]
  1835. * Some cleaning regarding the job tree skill-raising restrictions code.
  1836. [Skotlex]
  1837. * Optimized/cleaned up the job_name function, job names are now acquired
  1838. from msg_athena.txt. [Skotlex]
  1839. * Fixed race defense bonus against Boss/Nonboss checking versus the target
  1840. instead of the attacker (should fix Alice Card) [Skotlex]
  1841. * Some cleaning in clif.c [Skotlex]
  1842. 2005/12/14
  1843. * Fixed 'dead_branch_active' option. [Skotlex]
  1844. * Optimized use of weather effects, or should I say, no use.
  1845. Also re-added clif_clearweather to some of the weather effects, when they are turned off.
  1846. Why those were removed are beyond me.. [Valaris]
  1847. * Temporarily changed the walk speed during Charge Attack and Extremity
  1848. Fist to simulate a faster 'zoom' to the target (somewhat untested yet)
  1849. [Skotlex]
  1850. * Corrected SL_HIGH so that the total of each stat is always 50...
  1851. [Skotlex]
  1852. * Optimized graffiti display packets (what was I thinking?) [Valaris]
  1853. * Corrected a statement in guild.c (== to =) in nulling out the guild cache. [Valaris]
  1854. * Implemented a mini cache for guilds/parties in the map server. Looking up
  1855. the same guild/party twice or more should result in instant seek times
  1856. until a different one is looked up. [Skotlex]
  1857. * Fixed saving account variables [Komurka]
  1858. * Fixed SL_KAIZEL not starting the proper effect. [Skotlex]
  1859. * Merged Reddozen's work of SL_KAUPE [Skotlex]
  1860. * Updated checkweight() script command to return false when the player has
  1861. inventory full. [Skotlex]
  1862. * Soullink check for SG_FUSION [Komurka]
  1863. 2005/12/13
  1864. * Fixed @slaveclone not attacking enemies. [Skotlex]
  1865. * Some more cleaning to the clone skills, proper support for Heal,
  1866. Resurrection, Double Attack, Triple Blows. [Skotlex]
  1867. * Updates/fixes/corrections to battle check target so that mobs with
  1868. special AI can fight mobs without it even if the mob doesn't has a human
  1869. master. Also updated it so that mobs with no special AI are all friends by
  1870. default. [Skotlex]
  1871. * Clone skill fixes, support/self skills are now triggering (never
  1872. triggered before), adjusted some of the skill usage rates. [Skotlex]
  1873. * Dyes will now work correctly on cloned or mob_avail class monsters.
  1874. save_clothcolor must be enable in battle_athena.conf. [Valaris]
  1875. * Added carts, falcons and pecos to clone and mob_avail class monster spawns. [Valaris]
  1876. * Likely fixed the @spawn names issue. [Skotlex]
  1877. * Fixed @*clone commands not resolving properly the target char. [Skotlex]
  1878. * Implemented the SL_ROGUE bonus to potions. They heal +100% more rather
  1879. than 50% (potions from ranking Alchemists, that is) [Skotlex]
  1880. * Merged in Reddozen's work with SL_KAIZEL [Skotlex]
  1881. * Added the check to prevent KA skills from being usable until you are Soul
  1882. Linked. [Skotlex]
  1883. * Enabled clif_parse_Taekwon (Why was taekwon parsed as clif_parse_Alchemist?) [Vicious]
  1884. * Moved the base attack code into it's own function to properly implement
  1885. the magnum break's elemental damage bonus (watch out for bugs as the code
  1886. was proof-read, but that usually doesn't says quite enough when it comes to
  1887. code). [Skotlex]
  1888. * Merged in Reddozen's work for SL_WIZARD [Skotlex]
  1889. * Updated clone command to allow attaching the clone to the invoking player
  1890. as a slave. @clone creates a friendly clone that attacks mobs. @slaveclone
  1891. makes a clone that follows the creator (it's a slave), @evilclone is the
  1892. stock clone as a mob). Also fixed min/max damage of clones. [Skotlex]
  1893. * Added one extra tile of range to melee mobs in mob_attack, should fix
  1894. mobs not attacking when they are range+1 tile from you, yet they refuse to
  1895. move in that final tile. [Skotlex]
  1896. * Corrected mob ai not moving closer to player if there's a distance of 2
  1897. or less between them (which would do no good if the mob's range is just 1) [Skotlex]
  1898. * Fixed SG_FRIEND - should work now [Komurka]
  1899. * Realtered global_reg value size to 256. [Lance]
  1900. * Adjusted pointers location for packets for new global_reg value (it's wrong + I adjusted the size) to 256 + 32 = 288 [Lance]
  1901. * Improved variable scope for scripts to accept all string variables. [Lance]
  1902. * Altered map, char and login server to correctly use global_reg [Lance]
  1903. * do_sendrecv merges from Freya [Lance]
  1904. = Requires recheck on packets again to see if I missed any pointer alterations =
  1905. * Improved @evilclone to accept character IDs [Lance]
  1906. * Corrected partywarp/guildwarp to correctly take into account nowarp/nowarpto mapflags. [Skotlex]
  1907. * Added a few custom scripts due to high demand. [Lance]
  1908. * Added monster museum. Adapted from Prometheus. [Lance]
  1909. * Corrected OnTouch to use exname instead of name to prevent conflicts. [Lance]
  1910. 2005/12/12
  1911. * added manner_system battle conf variable (now you can have PK server without manner system - which is unfinished ;/) [Komurka]
  1912. - some corrections in SI_ data (night uses soullink effect)
  1913. - changed global_reg value from int to char
  1914. added two new functions (pc_readglobalreg_str and pc_setglobalreg_str)
  1915. SG_FEEL now saves maps to global_reg
  1916. I've 'marked' all changes that SHOULD be checked with '//komurka'
  1917. - SG_FUSION hp penalty changed from 2% to 0.5%
  1918. - SG_SUN_COMFORT now increase VIT DEF
  1919. - implemented SG_FRIEND skill - this is the last SG skill - now it's a good time for bug reports :]
  1920. * Updated the max number of ingredients of produce_db to 12. [Skotelx]
  1921. * Updated clone code to also copy the skills from the source player. [Skotlex]
  1922. * Added Reddozen's implementation of SL_SKE and SL_MONK (sp recovery, Combo
  1923. Finisher splash damage, SP regen while in Fury) [Skotlex]
  1924. * Some reorganization of the Star Gladiator map-based skills. [Skotlex]
  1925. * Fixed @spawn/@monster atcommands 'freezing' server when used. [Skotlex]
  1926. * Fixed ground-based skills having their range-check messed up... [Skotlex]
  1927. * Corrected melee-ranged mobs failing the range check even if they were
  1928. standing next to you. [Skotlex]
  1929. * Added all duel-commands messages into msg_athena.conf. Commented out
  1930. code of drawing PVP-circle in duel because it not hiding when player use hide. [LuzZza]
  1931. * Removed @monster2, merged the code of atcommand_spawn/atcommand_monster
  1932. as suggested by Flaviojs. [Skotlex]
  1933. * Removed some unused entries in msg_athena.txt [Skotlex]
  1934. * When there are unused stack sections (invoked functions and ignored
  1935. return values) the unused stack section is free'd. This is still notified
  1936. when the etc_log is active. [Skotlex]
  1937. * Removed the TURBO code from socket.c as requested by MouseJstr. [Skotlex]
  1938. - It was actually slower than the normal code.
  1939. * Updated warp portal and script commands partywarp/guildwarp to take into
  1940. consideration mapflag nowarp as restriction rather than noteleport.
  1941. [Skotlex]
  1942. * Applied dontBR's update to his configure script [Kayla]
  1943. * Changed the bonus on Sonic blow.(It was giving 1500% instead of 1600%) [Vicious]
  1944. * Updated gettimetick() to use flag 2 and return System's tick, thanks to
  1945. Kyoki [Skotlex]
  1946. * Removed the mismatch stack error message caused by scripts where the
  1947. returning value of a function was ignored. [Skotlex]
  1948. * Corrected the Spirit of Assassin damage bonus of Sonic Blows. [Skotlex]
  1949. * Corrected BSS check versus undead, checking for partners on the Priest's
  1950. exact left and right, and sending partner's SP to negative. [Skotlex]
  1951. * Another Paladin's Gospel effect ends when you cast it (should fix Gospel
  1952. in Gospel bugs). Also, now Gospel only blocks usage of items of type 0
  1953. (healing). [Skotlex]
  1954. * Corrected berserk Pitcher displaying 0 heal. [Skotlex]
  1955. * Added Close Confine's flee bonus. [Skotlex]
  1956. * Corrected Slow Poison. Can be used when not poisoned, will not "pause"
  1957. poison's timer. [Skotlex]
  1958. * Implemented SG_FUSION skill [Komurka]
  1959. Don't ask me why in newer exe U see flying ... Santa ... -.-
  1960. * Updated the distance() function definition with one which uses a much
  1961. better approximation [Skotlex]
  1962. * Updated sql-files/ mob_db.sql & item_db.sql to latest. [Skotlex]
  1963. * Added @autotrade/@at and @away/@aw messages into msg_athena.conf (you can customize them) [Lupus]
  1964. * Updated default hardcoded GMlevel values of some @ATCommands according atcommand_athena.conf [Lupus]
  1965. and removed doubles of some commands, thanks to Rideword
  1966. 2005/12/11
  1967. * Corrected guild deletion in SQL (both from /breakguild and guild master character deletion). [Valaris]
  1968. * Added @evilclone commands. Syntax is @evilclone <playername>, [Valaris]
  1969. It will spawn an aggresive clone of the given player.
  1970. By default it will use mob id ranges 9001-10000, this range is #defined in mob.h.
  1971. * Fixed VS compile error in mob_clone_spawn. [Valaris]
  1972. 2005/12/10
  1973. * Added core player cloning code. Just need to create some commands. [Valaris]
  1974. * Redid the @help2 (char commands). [Kayla]
  1975. * Added jobname retrieving script function getJobName. [Lance]
  1976. 2005/12/09
  1977. * Changed default GM level for @setbattleflag to 99. [Valaris]
  1978. * Implemented the SL_SUPERNOVICE bonus to wear all heagears/various weapons
  1979. at high base levels. [Skotlex]
  1980. * Implemented SL_ROGUE bonuses: can't be dispelled, Chase Walk's str bonus
  1981. lasts 10x longer. [Skotlex]
  1982. * OneHand Quicken now dispels aspd potion effects. [Skotlex]
  1983. * Updated SL_STIN/SL_STUN to do miserable damage if the target's size is
  1984. 'incorrect'. [Skotlex]
  1985. * Updated @disguise so the max npc id you can use is 1000 (1001 is already
  1986. the first mob, Scorpion) [Skotlex]
  1987. * Fixed a possible infinite loop in pc_calc_skilltree when receiving
  1988. additional skills when Soul Linked. [Skotlex]
  1989. * Added the Taekwon bonus that gives you triple Max HP/SP when you are a
  1990. top 10 ranker and have base level 90+ [Skotlex]
  1991. * Added support for skill_db pl == -2. These skills don't take the element
  1992. of the weapon, but will take the element of any enchantment elemental
  1993. change (so the element used is neutral unless you are enchanted with
  1994. Fire/Wind/etc) [Skotlex]
  1995. * Coded in SL_STIN, SL_STUN and SL_SMA. [Skotlex]
  1996. * Should have fixed the crash with raw_time in char/char.c [Skotlex]
  1997. * Pressure can now be cast-break. [Skotlex]
  1998. * Likely fixed the client crash when hating a class rather than mob. [Skotlex]
  1999. * Removed @help2, note to self: do not commit at 4 am. Will redo later. [Kayla]
  2000. * Added @help2. @help did not fit in the screen. @help2 currently contains
  2001. just the char (#) commands. [Kayla]
  2002. * MAPREGSQL disabled (experimental) in VC7. To enable, define MAPREGSQL in preprocessor. [Lance]
  2003. 2005/12/08
  2004. * Changed default value of start_zeny to 0 to prevent packet exploits.
  2005. Also is 0z on offical servers. [Kayla]
  2006. * Fixed bug with objects (npcs, monsters, players, etc) not appearing when using @refresh. [Valaris]
  2007. * Updated effects for food production thx to Poki#3 [Komurka]
  2008. * SG_STAR_BLESS now gives 20%*skill lvl additional exp [Komurka]
  2009. * Modified clif_blown to use the clif_slide packet instead of clif_fixpos,
  2010. as Komurka tested it and it appears to be handled better by current
  2011. clients. [Skotlex]
  2012. * Added two new battle_athena.conf options:
  2013. duel_allow_teleport (def: no) and duel_autoleave_when_die (def: yes) [LuzZza]
  2014. * Small fix in allskill [Komurka]
  2015. * Updated Gloria Domini to bypass battle_calc_damage (misc damage
  2016. reductions) [Skotlex]
  2017. * Fixed a typo in pid.c, thanks to akusarujin [celest]
  2018. * Exploit fix in SG_FEEL [Komurka]
  2019. * Updated TK_MISSION to pick a random mob in the same way a dead branch
  2020. does. [Skotlex]
  2021. * Corrected SG_DEVIL giving the ASPD bonus below level 50. Only works at
  2022. max level... [Skotlex]
  2023. * Some cleaning to pc_calc_skilltree. Also updated it so that if you don't
  2024. use player_skillfree, you can't have ANY skill if you don't have NV_BASIC at
  2025. 9 (only exception are quest skills). [Skotlex]
  2026. * Implemented HT_POWER/Beast Strafing. [Skotlex]
  2027. - The damage equation is unknown.. for now it's the same as Double Strafe
  2028. except the skill modifier is +10%*str
  2029. - Currently the Combo is triggered 100% of Double Strafes done on beast
  2030. monsters.
  2031. * Added Reddozen's work for Hunter's Beast bane spirit bonus. [Skotlex]
  2032. * Corrected the drop delay for mobs when killed by magic to be 500ms (will
  2033. only work if killed by a player) [Skotlex]
  2034. * Updated SG skills (kRO Patch - 11/29/05) [Komurka]
  2035. * Enabled a few maps needed for the new novice training grounds, sorry I forgot to [MasterOfMuppets]
  2036. * Removed duplicate maps in maps_athena.conf. Thanks for the report Dr. Evil [Kayla]
  2037. 2005/12/07
  2038. * Pressure will always pull-off now after it has began casting. [Skotlex]
  2039. * Implemented Close Confine. [Skotlex]
  2040. * Change all 0x20e packets (18->26; 22->30) [Komurka]
  2041. Also added job_name(mob_id) in clif_hate_mob
  2042. (but it crashes client when U try to use SG_HATE skill on player ><)
  2043. * Fixed compile error in status.c. Check your work skot <3 [Kayla & MoM]
  2044. * Updated socket.c by adding a lots error reporting for functions that
  2045. previously were assumed to not fail. May help figure out what's going on
  2046. with the win32 builds... [Skotlex]
  2047. * Reviewed and cleaned up a bit the latest SG additions from Komurka. [Skotlex]
  2048. - My skill desc says that SG_DEVIL does not makes you blind until you reach
  2049. max job level, so I implemented that. Report if this is incorrect.
  2050. - SG_*_WARM skills should be working from what I read there.
  2051. * Modified a bit the TK_MISSION packet, GUESSING where the progress of the
  2052. current mission should go within said packet... [Skotlex]
  2053. * Implemented TK_MISSION. [Skotlex]
  2054. * Added more SG skills (Comfort, Warmth, Demon, Knowledge) [Komurka]
  2055. All of them should be checked by someone ^^;;
  2056. - SG_xx_WARM for now only shows cool red effect :> There is more code but for now it doesn't work
  2057. * Added new Geffen Field maps [Harbin]
  2058. * Disabled Atcommand Nuke (It was commented, not disabled) [Harbin]
  2059. * Added skip_teleport_lv1_menu option to Battle_Athena. Allows players to cast Teleport level 1 without menu. [Harbin]
  2060. * Merged in Reddozen's current Soul Linker work. [Skotlex]
  2061. - Berserk Pitcher should be working now.
  2062. - Bard/Dancer walk bonus when dancing/singing while soul-linked.
  2063. - Partial work on Twilight Pharmacy.
  2064. - proper skill effect
  2065. * Fixed One Hand quicken doing nothing. [Skotlex]
  2066. * skill_get_name now returns "UNKNOWN_SKILL" instead of null (should fix
  2067. some crashes when using it on skills with no defined name) [Skotlex]
  2068. * When weapon_delay_attack is enabled, items should drop inmediately after
  2069. mobs are killed rather than 500ms afterwards. [Skotlex]
  2070. * Added Exception Handling plugin to be used for native Win32 builds [celest]
  2071. - crashes will be logged in <server type>.stackdump along with file name and line numbers
  2072. - To activate, enable 'exchndl' in plugin_athena.conf
  2073. Public Service Message - Crash reports can be VERY VERY helpful, so please enable the
  2074. plugins if you can ('exchndl' for Win32, 'sig' for cygwin and linux) and send in any
  2075. reports you might get! We all want eA to be stable, ne? ^^
  2076. * Some compile error fixes for MinGW, FreeBSD and plugins [celest]
  2077. * Updated Makefile to set platform defines for FreeBSD [celest]
  2078. * Updated Makefile to auto-detect MinGW and include src/mysql [celest]
  2079. * Debug logging flag for logging output messages (only works well with native Win32) :D (Not enabled by default) [Lance]
  2080. * joshuali's new vcproj with debug mode correctly set up. [Lance]
  2081. * Fixed compile errors for Valaris's commit on date.h [Lance]
  2082. * Added updated vcproj for native VC8 win32 for date.h/c support. [Lance]
  2083. * Removed extra returns in date.h. [Lance]
  2084. * Probably fixed warnings in unzip.c [Lance]
  2085. 2005/12/06
  2086. * Updated item 12132 for the Xmas suit effect in item_db.sql. [Valaris]
  2087. * Implemented Xmas Suit: [Valaris]
  2088. -Added status change state SC_XMAS, and added it to const.txt.
  2089. -Cannot attack or use skills while in the Xmas state.
  2090. -Will save if you logout.
  2091. -"sc_start SC_XMAS,600000,0" added to item 12132 (using item will give you xmas suit for 10 minutes).
  2092. -Added xmas_ignorepalette option to battle_athena.conf.
  2093. * Fixed script error in Garm's Claw item causing an error. [Valaris]
  2094. * Added a missing ; to Skotlex's Previous SG skill editions that caused compile errors. [Valaris]
  2095. * Added JOB_GUNSLINGER(24), JOB_NINJA(25), and JOB_XMAS(26) to map.h enum list and const.txt. [Valaris]
  2096. * Added SC_SCRESIST to const.txt. [Valaris]
  2097. * Applied Komurka's Star Gladiator patch. [Skotlex]
  2098. - The following skills are now working: SG_FEEL, SG_HATE, SG_SUN_ANGER,
  2099. SG_MOON_ANGER, SG_STAR_ANGER, SG_SUN_BLESS, SG_MOON_BLESS, SG_STAR_BLESS
  2100. - The designated maps cannot be stored currently (cannot save character
  2101. string variables) and is pending on a script update to enable saving of
  2102. said type of variables.
  2103. * Added @away command. [LuzZza]
  2104. * Mostly fixed intravision making everyone see hidden/cloacked characters.
  2105. (the actual option value to see just the player's shadow is currently
  2106. unknown) [Skotlex]
  2107. * Updated Gospel [Skotlex]
  2108. - It should clear all buffs/debuffs now.
  2109. - Party-mates within range cannot use items.
  2110. * Implemented the SL_BARDDANCER bonus that enables the caster to be buffed
  2111. by their own song/dance/encore. [Skotlex]
  2112. * Completed Sight Thrasher (the option value is still missing, though.
  2113. Temporarily uses the one of Sight) [Skotlex]
  2114. * Corrected possible exp exploits in jA's exp calc method. [Skotlex]
  2115. * Corrected Spirit Skills showing up in all class trees. [Skotlex]
  2116. * Invoking @reloadscript now also invokes the OnInit event after loading. [Skotlex]
  2117. * Expanded Item Groups list from 20 to 32 item groups [Lupus]
  2118. * Fixed healing experience bug. Now only healing another players gives experience. [Harbin]
  2119. 2005/12/05
  2120. * Hopefully fixed gm_all_skill.... [Skotlex]
  2121. * Modified a bit the player attack code to give an extra range cell when
  2122. the target is moving. [Skotlex]
  2123. * Added skip_teleport_lv1_menu battle_athena option. It give a possibility to
  2124. disable (skip) Teleport Lv1 menu, that have only two lines `Random` and `Cancel`.
  2125. Of course, by default this option have `no` (don't skip) value. [LuzZza]
  2126. * Added FD_SETSIZE 4096 predefination to VC++ Project Files. Should fix 60 player limit bug with native compilations. [Harbin]
  2127. * Fixed char crash (I hope) when checking for two parents + baby in a party
  2128. with more than 3 characters, but from which only 3 were online at a time. [Skotlex]
  2129. * Merged in Reddozen's work on SL_BARDDANCER and cleaned up a bit the
  2130. Spirit Skills code when calculating the skill tree. [Skotlex]
  2131. * Updated mob ai so that support/aggressive mobs can't 'see' a player until
  2132. there's a direct line of sight between them. [Skotlex]
  2133. * Updated monster_ai&1 so that when not set mob-chase type is Aegis-like
  2134. (mobs will not change walk target tiles mid-walk) [Skotlex]
  2135. * Added battle_athena.conf option mobs_level_up_exp_rate to set the extra
  2136. exp rate a leveled up monsters gives. [Valaris]
  2137. * Added a custom X-Mas quest *Sign Your Items* [Lupus]
  2138. * Applied Harbin's patch to fix Arrow Shower + Traps. Someone test it out.
  2139. [Skotlex]
  2140. * Another fix to socket.c to enable TURBO mode to work on win32. [Skotlex]
  2141. * Fixed the combo status not ending after using TK_TURNKICK [Skotlex]
  2142. * Overflowed pointer fix in socket.c [Skotlex]
  2143. * Added 'Einbech' into @go command (u have to type at least 5 letters) [Lupus]
  2144. * More detailed error messages for missing '"'s in scripts. [Lance]
  2145. 2005/12/04
  2146. * Removed mail server switch from battle_athena.conf and added
  2147. full mail server configuration to inter_athena.conf. [Valaris]
  2148. * Fixed too big VVS damage of TOP10 BS weapons [Lupus]
  2149. 2005/12/03
  2150. * Fixed up TK Sprint (TK_RUN) skill: [Valaris]
  2151. -Disabled movement during skill use.
  2152. -Correct moves player server-side.
  2153. -Stops without sp use if skill is used during running.
  2154. -Server will not save status if player logs out.
  2155. * Some cleaning of socket.c to see if TURBO will now work on Windows, it
  2156. may also fix the select() problems on that platform as well. [Skotlex]
  2157. * Fixex "gm_skill_all" crashing the server from generating huge packets (or
  2158. so I hope) [Skotlex]
  2159. 2005/12/02
  2160. * Gave the Spirit Status Change a custom effect for now. [Skotlex]
  2161. * Merged in Reddozen's work for SL_HIGH (Spirit of Rebirth) [Skotlex]
  2162. * The Bonus skills acquired from being Soul Linked should now show up in
  2163. the skill tree. [Skotlex]
  2164. * Merged Reddozen's work of One-Hand Quicken and Adrenaline Rush 2. [Skotlex]
  2165. * Fixed Axe-Kick never triggering. [Skotlex]
  2166. * Slaves walk once again. [Skotlex]
  2167. * enable_items now also enables equipment stuff. [Skotlex]
  2168. * The attack motion in packets for ground-based skills is now 0 (it may
  2169. help somewhat with current firewall issues). [Skotlex]
  2170. * Added char-server option "save_log", when disabled, the char server will
  2171. stop printing info messages whenever something is loaded/saved. [Skotlex]
  2172. * Disabled random-walking for slaves [Skotlex]
  2173. * Added script commands enable_items/disable_items [Skotlex]
  2174. * Likely fixed the mob-skill target type "master" [Skotlex]
  2175. * Added target type "master" to the mobskill_db [Skotlex]
  2176. * Modified NPC_RUN to allow the caster to run away from the target [Skotlex]
  2177. * Implemented SL_SAGE (Soul Linker Sage buff for auto-cast bolts) [Skotlex]
  2178. * Updated char-sql guild saving so that instead of saving ALL guilds when
  2179. the time comes, the save interval is splitted on time-slots (based on guild
  2180. count in memory) and a guild is saved per time-slot (just like the map
  2181. server saves characters). [Skotlex]
  2182. * Fixed client crashes with using baby and advanced player classes as pets. [Valaris]
  2183. * Added missing ban_hack_trade option to battle_athena.conf. [Valaris]
  2184. * Hopefully fixed Counter Kick. [Skotlex]
  2185. * Uncommented and corrected the Soul Linker Monk buff (SP cost reduction
  2186. for monk combos) [Skotlex]
  2187. * Added a check in skills so that skills that are used on yourself, but had
  2188. it's target auto-selected cannot be used on non-enemies if it's nk is
  2189. different from 1 (1 = No damage skill) [Skotlex]
  2190. * Various cleanups to the char-sql server to prevent corner-case crashes
  2191. from queries that return no rows. [Skotlex]
  2192. * Massive Taekwon Boy skills related code cleanup. [Skotlex]
  2193. - Flying Side kick and Turn Kick should be fully working now, too.
  2194. * Cleaned up and reorganized the SC_ data listing. Added sc's for food
  2195. related bonuses: SC_HITFood, SC_FLEEFood, SC_BAtkFood, SC_WAtkFood,
  2196. SC_MAtkFood. [Skotlex]
  2197. - Some of the saved sc data will be wrong, so wipe the table/file if you
  2198. want to play it safe.
  2199. * Some corrects in duel code. [LuzZza]
  2200. * Sonic Blow and Shield Boomerang's after cast delay is now properly
  2201. adjusted by the Soul Link skills. [Skotlex]
  2202. * Party even share will be now broken after a base level reset. [Skotlex]
  2203. * Merged in Reddozen's Soul Linker current skills work. [Skotlex]
  2204. * Added countitem2(itemID,....) script function. [Lupus]
  2205. * Added axtoi script function that converts hex strings to integers. [Lance]
  2206. * Fixed incorrect time (that leads to crashes) in login server. [Lance]
  2207. 2005/12/01
  2208. * Moved KN_CHARGEATK code to merge it with Extremity Fist. Skill damage
  2209. modifier is currently set to +15% per cell (need actual value here) [Skotlex]
  2210. * Fixed client crash when logging in with Baby Knights and Crusaders riding Pecos. [Valaris]
  2211. * Implemented Ki Explosion. [Skotlex]
  2212. * Fixed client crashes with using baby and advanced player classes as monsters. [Valaris]
  2213. Make sure to use Item ID for weapons and shields in mob_avail.txt for player monsters and not View ID.
  2214. Updated Valaris and MC Cameri mobs in item_avail.txt to use Item IDs.
  2215. * Fixed cutting Castle Name (was 14 instead of 24) [Lupus]
  2216. * Corrected Grimtooth counting a short-range skill when it's actually
  2217. ranged. [Skotlex]
  2218. * Corrected Venom Splasher's splash range, and the splash damage is now
  2219. divided by number of targets (sort of, skill % dmg is adjusted according
  2220. number of targets) [Skotlex]
  2221. * Tarot Card of Fate won't break equipment now if equip_skill_break_rate is
  2222. 0. [Skotlex]
  2223. * Improvements and optimizations to the online db management in the char
  2224. txt/sql servers. [Skotlex]
  2225. * Updated the guild cache (char sql) to have it load/unload characters
  2226. whenever they are updated in the char online_db (previously they were only
  2227. updated on normal char-select/char-quit when there were more cases where a
  2228. char is set online/offline) [Skotlex]
  2229. * Now when the guild is not found in the cache it will be loaded from the
  2230. sql db first before failing. [Skotlex]
  2231. * Fixed equip_skill_break_rate equation being messed up for Acid Demonstration. [Skotlex]
  2232. * Fixed Aura Blade adding damage to Spiral Pierce (it shouldn't) [Skotlex]
  2233. * Script function getnameditem now sets flag 254 (created) instead of 255 (forged) [Lupus]
  2234. To prevent ADDITIONAL Blacksmith FAME TOP10 bonuses, applied to signed but not forged weapons
  2235. e.g. You have a custom quest for rare weapons. You tag items with players name (using getnameditem command).
  2236. if a TOP10 BS get an Infiltrator.. then it used to give extra atk bonus 8)
  2237. 2005/11/30
  2238. * Updated item_db.sql to latest. [Skotlex]
  2239. * Updated mob_db.sql to latest. [Skotlex]
  2240. * Updated Gospel to force the removal of the ground-effect when the status
  2241. change ends. [Skotlex]
  2242. * Made Snatch/Intimidate work on Guild maps (I have read around this is how
  2243. it is) [Skotlex]
  2244. * Added the auction maps to maps_athena.conf [MasterOfMuppets]
  2245. * When players are hit while moving, they should now move one last cell
  2246. in the same direction they were walking when interrupted. [Skotlex]
  2247. * Walk delay won't be applied now unless the attack deals damage... [Skotlex]
  2248. * Major reorganization of player variables and bonuses. If something broke,
  2249. report it up. Otherwise, struct map_session_data should look quite a bit
  2250. more clean now. [Skotlex]
  2251. * Fixed duel bug when you can't cast some skills on yourself. [LuzZza]
  2252. * Fixed (I think) pets losing the "rename flag" when you sent them back to
  2253. egg. [Skotlex]
  2254. * Added a index check in the equip packet, should fix crashes from invalid
  2255. packets. [Skotlex]
  2256. * Fixed a horrible bug that was making the walk delay not work for sure x.x
  2257. [Skotlex]
  2258. 2005/11/29
  2259. * Fixed race exp bonuses. [Skotlex]
  2260. * Fixed ## account variable saving disconnecting the char-login servers. [Skotlex]
  2261. * Updated the way multi-hit skills add overrefine/star crumb/spirit sphere
  2262. damage so that the total bonus is multiplied by the total number of this.
  2263. [Skotlex]
  2264. * Fixed the config variables being "lost" on startup. [Skotlex]
  2265. * Fixed Restore requiring Regeneration lv2 [Skotlex]
  2266. * Fixed the spirit sphere bonus not applying to Throw Spirit Sphere. [Skotlex]
  2267. * Rewrote and cleaned up duel code. Formed independent duel_xxx functions.
  2268. I suggest to place this functions in duel.c/duel.h. New features: [LuzZza]
  2269. - Now when you in duel, you can't attack anything out of your duel
  2270. (mobs, other players etc...);
  2271. - Now you can't take part in duel more often than it set in battle_athena.
  2272. Default delay is 60 minutes.
  2273. - New battle_athena.conf options: duel_allow_pvp - allow/disallow duel
  2274. on pvp-maps; duel_allow_gvg - allow/disallow duel on gvg-maps;
  2275. duel_time_interval - delay between using duel in minutes.
  2276. * Updated damage formula for Spiral Pierce. [Skotlex]
  2277. * Fixed speed change being lost when speed is increased/decreased while
  2278. walking with Free-cast. [Skotlex]
  2279. * Fixed pets being renameable after turning them back into eggs. [Skotlex]
  2280. * Reverted the guild data position in the mob/npc packets, should restore
  2281. the emblems in flags. [Skotlex]
  2282. * Corrected battle_check_target Guild checks returning true for non-guild,
  2283. party'ed characters and viceversa. [Skotlex]
  2284. 2005/11/28
  2285. * Added dontBR's experimental configure script. It's still in alpha stage,
  2286. so use with caution! [Skotlex]
  2287. * Fixed a pair of exp exploits possible with to Rich Man Kim and
  2288. race-add-exp card bonuses. [Skotlex]
  2289. * Updated behaviour of skillrange_from_weapon. If set, those skills with
  2290. negative range use the weapon's range. If not set, then the skill range
  2291. used is the absolute value of the range specified in the skill_db. [Skotlex]
  2292. * Small cleanup of the color broadcast packet using data provided by Master
  2293. of Muppets. It should hopefully fix the font-size on said colored messages.
  2294. [Skotlex]
  2295. * Fixed the setting of the guild id and guild emblem in packets 0x7b and
  2296. 0x78 for mobs/npcs (this is assuming the position is correct when filling
  2297. these same packets for players) [Skotlex]
  2298. * Added battle_config option skillrange_from_weapon which, when set, allows
  2299. weapon based, target-selected, offensive skills to take the equipped
  2300. weapon's range instead of the range defined in the skill_db. [Skotlex]
  2301. * WARNING/ACHTUNG! Update all your NPCs ASAP. Massive NPC fix's out. [Lupus]
  2302. * Updated monster_ai&8 so that mobs scatter as soon as they lose their
  2303. target. Use this setting for an effective counter measure to Grimtooth
  2304. mass-mob training. [Skotlex]
  2305. * Added pc_damage_walk_delay_rate to separate the walk delay adjustment of
  2306. players from that of mobs. The adjustment for players is 20% while for mobs
  2307. is 100%, pending further adjustments. [Skotlex]
  2308. * Added the weapon upgrade damage bonus of Spiral Pierce [Skotlex]
  2309. * Removed the mob_stop_walking code from mob_damage as it should be invoked
  2310. on battle_walkdelay (the mob walk delay issue will likely need it's own
  2311. config option) [Skotlex]
  2312. * Added joshuali's new Visual Studio files. [Lance]
  2313. * Novice Warp Portal fixes from jAthena. [Lance]
  2314. * Final warning elimination in plugins.c (most of them are gone with warning level set to 1). [Lance]
  2315. * Fixed typo in msg_athena.conf and 'users with autoloot turned on will not have their rare drops announced.'. Thanks to Kaseki.
  2316. * Mob should stop walking when hit if not enduring. Thanks to Playtester. [Lance]
  2317. * Included pcre.dll and libmysql.dll from joshuali. [Lance]
  2318. * Eliminated Level 3 warnings. Setting compile warnings to Level 3. (Level 4 just kills eAthena XD) [Lance]
  2319. 2005/11/27
  2320. * Fixed an overflow pointer bug in the gvg eliminate timer. [Skotlex]
  2321. * Updated the damage code if Spiral Pierce, Shield Chain and Shield
  2322. boomerang to be closer to official. [Skotlex]
  2323. * Fixed a crash when setting all chars offline in the char-sql server. Also
  2324. fixed that delete_timer mismatch on shutdown [Skotlex]
  2325. * Autospells now won't trigger if the range between the source and the
  2326. target is not satisfied. [Skotlex]
  2327. 2005/11/26
  2328. * Added bonus2 bAddSkillBlown for adding a custom knockback value to a
  2329. skill. Note that this knockback bonus is ADDED to whatever the default
  2330. knockback of the skill is. [Skotlex]
  2331. * Fixed Soul Linker skills showing up on the tree for leveling up. [Skotlex]
  2332. * Probably fixed the crash in inter_guild_CharOffline [Skotlex]
  2333. * Modified the skill get range routine to correctly account for the attack
  2334. range and the AC_VULTURE range bonus where needed. [Skotlex]
  2335. * Fixed alchemists Fame Points bug: It were giving 1 fame point [Lupus]
  2336. on making 4 Condensed Potions in row, instead of 3, etc. Now tested ^_-
  2337. * Some restructuring and cleaning up in map loading to make it easier for
  2338. future plans (like removing Grfio) [celest]
  2339. - split map loading into separate sources properly
  2340. - added map server will display a list of enabled map sources on startup
  2341. - added maps will be auto-imported into the map cache if it's loaded with
  2342. AFM, AF2, or any other source
  2343. The server looks for maps in this descending order: the map cache, AFM maps,
  2344. AF2 maps, and finally GAT files from the GRF (slowest); so, if you enable map
  2345. caching it should be a liiiittle bit faster then before ^^
  2346. 2005/11/25
  2347. * Uploaded fixes to int_guild, tested and working safely. [Kevin]
  2348. * Added @showzeny @ command. [Skotlex]
  2349. * Some code cleanup to make AutoBerserk work the way it was intended to
  2350. (skill toggles "auto-berserk" state on/off, if on, you automatically get
  2351. Provoked when under 25%HP) [Skotlex]
  2352. * Fixed Auto-Berserk auto-ending after a minute. [Skotlex]
  2353. * Added a fix to mob skills to prevent them from being checked too
  2354. frequently during battle (which was sort of bumping up their rate to double
  2355. or more from what the skill db would state) [Skotlex]
  2356. * Added cleaning up the fifo before sending the guild information (since
  2357. the packet is big, the fifo should be cleared to avoid overflow problems)
  2358. [Skotlex]
  2359. * Added monster_ai&8, when set monsters stop walking as soon as they lose
  2360. their current target [Skotlex]
  2361. * Reflect Sword again reflects damage versus players. [Skotlex]
  2362. * Corrections to the skill code so only Heaven's Drive may damage traps. [Skotlex]
  2363. * Reverted the mob random walk delay after unlocking a target to 3~6 secs. [Skotlex]
  2364. * Added pow, sqrt and distance to scripting commands. [Lance]
  2365. * Removed players with 0 Fame Points from Blacksmith/Alchem/Taekwon TOP10 lists [Lupus]
  2366. * Should fix night glowing bug. [Lance]
  2367. * Added setd and getd variable retrieving and setting with dynamic names. [Lance]
  2368. * Added petstat command as requested by Dubby. [Lance]
  2369. 2005/11/24
  2370. * Fixed a small bug in the guild search by name routine. Should fix the
  2371. crash on new guild creation. [Skotlex]
  2372. * Added debug information in case the guild isn't found in the cache when
  2373. it should be there. This should help fix any problems the guild cache
  2374. might have (eg: for some function that may take effect on a guild which
  2375. has no members online) [Skotlex]
  2376. * Finished cleaning up and merging the guild cache withthe guild timers
  2377. behaviour. It should be mostly safe to update now. [Skotlex]
  2378. * Reverted the sql save behaviour. [Skotlex]
  2379. - Now guilds timers and cache are both into effect, this requires a bit
  2380. more of cleaning to be considered done.
  2381. * Various things I made but already forgot xD [DracoRPG]
  2382. * Fixed and updated damage bonus for forged weapons: VVVS is +40 (was previously +50
  2383. for the right hand...) and "famous maker bonus" gives a no-miss +10 dmg, same as
  2384. 2 additional Star Crumbs. [DracoRPG]
  2385. * Added or updated several Taekwon skills [DracoRPG]
  2386. - Jump Kick uses clif_slide to the target's exact pos , waiting for capture/video
  2387. - Taekwon ranking is now supported by the fame system, but there's no way to gain
  2388. points atm (Taekwon Mission has no effect), infinite kick combo should be OK
  2389. - 4 basic kicks updated, you now stop attacking when a stance triggers, and have 2
  2390. seconds to hit the button before attacking again
  2391. - Run uses SC_SPORT to increase your STR and affect the way Break Fall works
  2392. - Break Fall dodges ranged magic/weapon attacks, as well as melee weapon ones
  2393. when SC_SPORT is active
  2394. * Made Sword Reject / Counter Instinct reflect damage only against monsters (not
  2395. 100% sure about it, but let's say 90%... iRO site says it, although it isn't
  2396. the best source ever) [DracoRPG]
  2397. * Made Spiral Pierce use SC_STOP instead of setting canwalk_tick, some other such things
  2398. need to be reviewed [DracoRPG]
  2399. * Fixed Pneuma. [Skotlex]
  2400. * Fixed dead mobs reappearing on the map. [Skotlex]
  2401. * Cleaned up the duel code in battle_check_target. [Skotlex]
  2402. * Added config option summons_inherit_effects, defaults to yes, check
  2403. battle_athena.conf for further details. [Skotlex]
  2404. * Updated duel [LuzZza]
  2405. - Now "@duel <Num>" may be used for indication max players limit of duel.
  2406. - Now "@duel <Nick>" creating duel for two players and automatically send invitation to Nick.
  2407. * Added a new script function: getequipcardid(equipSlot,CardSlot) [Lupus]
  2408. Returns Card ID or just a value from your EQUIPPED item
  2409. Useful to check equipped items PROPERTY, STRONG value, Author ID, etc
  2410. Check npc\sample\getequipcardid.txt and read script.c comment ^_-
  2411. 2005/11/23
  2412. * Fixed the crash on guild creation in new guild cache. [Kevin]
  2413. * Implemented duel organizing commands: @duel, @invite, @accept, @reject, @leave. [LuzZza]
  2414. * Made the walk-delay a timer, so that it triggers after the actual attack
  2415. motion of the src. [Skotlex]
  2416. * Added back the combo damage delay config, now renamed to
  2417. multihit_delay, and set to the default of 230ms it had before. [Skotlex]
  2418. * Added displaying file which caused an error on incorrect mob lines.
  2419. [Skotlex]
  2420. * Small memory corrections to sql castle saving/loading, mostly Lance's
  2421. work. [Skotlex]
  2422. * Updated the walk delay routine to not invoke stop-walking when character
  2423. is not walking (fixes the case in which the packet is sent while sitting,
  2424. which causes a 'standing' sprite even if the char is sitting). [Skotlex]
  2425. 2005/11/22
  2426. * Implemented a guild cache in char sql, saves all online guilds every 5 minutes. [Kevin]
  2427. * More grammar fixes [Kayla]
  2428. * Added 1-tile of range grace in skill_use_id and skill_use_pos since
  2429. that's how it is on Aegis servers. [Skotlex]
  2430. * Updated the skill info packets to deliver the skill names as expected by
  2431. the client. [Skotlex]
  2432. * Updated mob ai to enable changing targets while attacking ONLY if the
  2433. attacker is within melee range (Aegis AI). monster_ai&4 can be used to
  2434. override this and allow mobs to change target and pursue ranged attackers.
  2435. [Skotlex]
  2436. * Updated the config comments for the ip-related settings. Thanks to
  2437. akusarujin for the update. [Skotlex]
  2438. * Added rates to at_command.conf, set it's default to GM lv1 [Skotlex]
  2439. * Removed the icon from Fire Break's fire-elemental bonus. [Skotlex]
  2440. * Updated the walkdelay function to only be invoked if the attack did
  2441. damage. [Skotlex]
  2442. * Some more fixes to the english in ShowInfo()'s [Kayla]
  2443. * Cleaned out the SVN a bit [Kayla]
  2444. 2005/11/21
  2445. * Removed "(now unlimited loop start!)" from char-sql in an info line...wtf xD..[Kayla]
  2446. * Mob AI update: updated the conditions used to specify if a mob can change
  2447. targets as per the forum provided information (by Komurka and Kyoki).
  2448. Mode 512 (MD_CHANGETARGET) no longer does anything. [Skotlex]
  2449. * Mobs that assist now link nearby mobs when they attack. [Skotlex]
  2450. * Made the damage delay be applied after knockback rather than before
  2451. (magical/misc instant effect attacks are still applied before the
  2452. knockback) [Skotlex]
  2453. * The damage delay timer now stores the distance between source/target, if
  2454. this distance is increased by 2 or more, the damage delay fails and takes
  2455. no effect (if the '2' needs to be made higher, do point it out. It
  2456. shouldn't be much of a problem since you aren't supposed to be able to walk
  2457. from the damage delay anyway). [Skotlex]
  2458. * Changed the way damage delay works. It is no longer applied on
  2459. mob_damage/pc_damage, but instead is invoked from clif_damage (or
  2460. clif_skill_damage), which means the "can't walk" delay is sync'ed with the
  2461. damage packets when they are sent. This should fix most delay-damage
  2462. 'stun-lock' related issues. [Skotlex]
  2463. 2005/11/20
  2464. * Mobs now can't move while casting. [Skotlex]
  2465. * Updated mob_db.txt and mob_db.sql with the most recent data from Kyoki.
  2466. [Skotlex]
  2467. * Corrected the mob_db by adding the canmove/canattack bits to pretty much
  2468. all mobs that needed them. [Skotlex]
  2469. * Some fixes to the confusion code. [Skotlex]
  2470. * Crash-fix in status_change_start [Skotlex]
  2471. * Implemented confusion as it should be (not tested yet!) [Skotlex]
  2472. * Updated run_script to backup the current script of a player and
  2473. restore it if the current script ends inmediately. This should fix losing
  2474. the script info if status_calc_pc is invoked while running a script.
  2475. [Skotlex]
  2476. * Fixed a memory leak in the guild eliminate timer. [Skotlex]
  2477. * Removed the extra tile of range mobs have when walking. [Skotlex]
  2478. * Added mob reloading to battleconfig reload @ command. [Skotlex]
  2479. * Updated mob_db.sql with the new modes by Kyoki. [Skotlex]
  2480. 2005/11/19
  2481. * Made characters stop walking when inflicted by SC_STOP, may fix
  2482. GrimTooth's stop effect not seeming to take effect. [Skotlex]
  2483. * Made the pk_min_level config not take effect in WoE/GvG grounds.
  2484. [Skotlex]
  2485. * Fixed showing falcon when player is hide. [LuzZza]
  2486. * Updated mob_db.sql and item_db.sql to current [Skotlex]
  2487. * Updated the skill db step guessing code to allow for negative ranges (Now
  2488. spear boomerang should progressively get longer range with higher levels)
  2489. [Skotlex]
  2490. * Fixed Tarot Card, the card that gets two random effects can't retrigger
  2491. itself, and it causes STOP instead of Stun where appropiate. [Skotlex]
  2492. * Updated devotion to only work on damage attacks that have a source (will
  2493. prevent it from "blocking" COMA, which is what caused the crash). [Skotlex]
  2494. * Fixed not always showing CRIT attacks, thanks to Irmin [Lupus]
  2495. 2005/11/18
  2496. * Updated mob_ai so aggressive mobs change target when chasing, and
  2497. change-target mobs do so when attacking. [Skotlex]
  2498. * Fixed weapon forging showing success even when it fails. [Skotlex]
  2499. * Some cleaning up of @time, may fix the weird time displays. [Skotlex]
  2500. * Modified mob_ai so hyper-active mobs change target if they are
  2501. cast-sensors even if attacking (angry mode). They will also change target
  2502. if attacked while in angry/follow mode regardless of their change-target
  2503. mode. [Skotlex]
  2504. * Moved the night-inducing code from "map loaded ack" to "spawn pc", should
  2505. fix characters going ultra-blue after stuff like fly-wings. [Skotlex]
  2506. * Delayed the mob emotion when doing skills so that it gets executed AFTER
  2507. the skill is successfully performed. [Skotlex]
  2508. * Implemented PR_REDEMPTIO. Is the penalty for both base and job exp?
  2509. That's how it is currently. And if the map has the nopenalty flag,there's
  2510. no exp penalty. Awaiting further input on the matter (altough, do note the
  2511. skill isn't tested either) [Skotlex]
  2512. * Fixed three memory issues (char txt shutdown, npc reloading, ore
  2513. discovery logs) which were pointed out by End of Exam. [Skotlex]
  2514. * Added support for hyper-active mobs (MD_CHANGECHASE = 0x400), these mobs
  2515. will change to the closest target while chasing/following other players.
  2516. Needs be added to the mob_db. [Skotlex]
  2517. * Added support for hyper-aggressive mobs (MD_BERSERK = 0x800), these mobs
  2518. change their skill state to angry/follow instead of attack/chase when they
  2519. select/change target (except if they changed target because the new target
  2520. attacked them). Needs be added to the mob_db, for now all aggressive mobs
  2521. are considered hyper as well. [Skotlex]
  2522. * Updated mob mode cast-sensor (MD_CASTSENSOR = 0x010), mobs that are
  2523. Aggressive can also change target if they are chasing/following a player
  2524. when someone else casts a skill on them. [Skotlex]
  2525. * Fixed Dark Blessing. [Skotlex]
  2526. * Changed the default battle_delay_damage value from no to yes. [Skotlex]
  2527. * Added check to prevent reinitiating SC_GOSPEL on a character that already
  2528. has GOSPEL and val4 == BCT_SELF, may fix multiple Gospels being placed on
  2529. the ground. [Skotlex]
  2530. 2005/11/17
  2531. * Altered behaviour of NPC_EMOTION/NPC_EMOTION_ON as requested by Komurka.
  2532. [Skotlex]
  2533. - val[0] (the first one) is the emotion the mob does. If val[1] is
  2534. different from 0, then the mob's mode is changed to THIS value. If val[2]
  2535. is different from zero, it'll add/remove a mode based on skill used
  2536. (EMOTION_ON adds mode, EMOTION removes it), both can stack [Skotlex]
  2537. * Fixed for sure the Makefile... [Skotlex]
  2538. * Modified Wedding effects. That is, changing base to 22 does NOT displays
  2539. wedding outfit anymore. To display the wedding outfits, you have to start
  2540. SC_WEDDING instead. Tux/Wedding dress scripts likely need being updated.
  2541. [Skotlex]
  2542. * Added battle option disp_zeny, will display on console how much zeny you
  2543. earned (be it from selling, trading, mobs, etc, as long as you "earned"
  2544. zeny) [Skotlex]
  2545. * Updated status_calc_pc to prevent infinite recursion loops. [Skotlex]
  2546. * Applied End of Exam's suggested signedness fixes to npc.c [Skotlex]
  2547. * Updated sting lib, to avoid SQL troubles [Lupus]
  2548. * Fixed moonlit not properly checking for nearby walls. [Skotlex]
  2549. * Added a recursion protection system to status_calc_pc which should avoid
  2550. exploits derived from recursively calling status_calc_pc which certain
  2551. equipment scripts could trigger. Thanks to End of Exam for pointing it out.
  2552. [Skotlex]
  2553. * Applied Celest's patch which should help compiling eA under mingwin.
  2554. [Skotlex]
  2555. 2005/11/16
  2556. * Fixed AFM map loading (something was missing there which was gonna make
  2557. the map server crash for sure later on) [Skotlex]
  2558. * Some corrections to the mob states, linked/cast-sensitive mobs engage in
  2559. attach/chase modes, not angry/follow (which seem reserved entirely for
  2560. aggressive mobs) [Skotlex]
  2561. * Cleaned up and corrected target types MSS_AROUND->MSS_AROUND8, also added
  2562. and documented them in mob_skill_db.txt [Skotlex]
  2563. * Probably corrected whispers to GMs. Thanks to Slennox for pointing it
  2564. out. [Skotlex]
  2565. * Modified mob-skill states to use Aegis-based information. Modes are
  2566. MSS_IDLE, MSS_WALK, MSS_LOOT, MSS_DEAD, MSS_BERSERK, MSS_ANGRY, MSS_RUSH
  2567. and MSS_FOLLOW. Mob skill db is unaltered other than for the fact it now
  2568. supports "angry" and "follow" states. [Skotlex]
  2569. * Cleanup of how knockback routines are invoked. [Skotlex]
  2570. * Added MOB_LAZYSKILLPERC to mob.c, determines probability of a mob doing a
  2571. skill when there are no players nearby (but there has to be players in the
  2572. same map for it to trigger). Currently set to 10/1000 chance. [Skotlex]
  2573. * battle_check_target update. Rewrote the party/guild checks, this should
  2574. hopefully fix any problems left with pvp/gvg and mapflags not working
  2575. properly. [Skotlex]
  2576. * Fixed playerattached() returning char id instead of account id. [Skotlex]
  2577. * Added battle option party_even_share_bonus to enable use of Valaris's evn
  2578. share experience bonus equation rather than the official one. [Skotlex]
  2579. * Corrected @jump not displaying the actual coords you jumped to. Thanks to
  2580. kitty74x9 for noticing (and fixing) it out. [Skotlex]
  2581. 2005/11/15
  2582. * Fixed multi-hitting skills not increasing the "can-walk" delay
  2583. accordingly. [Skotlex]
  2584. * Modified way to updating hp/position of party members. [LuzZza]
  2585. * Added battle config option "aura_lv", specifies which level characters
  2586. have to be for the server to report their level as "max_lv" (which normally
  2587. is used to enable the aura). See battle_athena.conf for more details. It
  2588. may not work for your self, but only for other characters (this is,
  2589. afterall, untested yet) [Skotlex]
  2590. * Implemented High Jump (works 100%) and Fighting Chant (untested but should work). [DracoRPG]
  2591. * Various cleanups and typo fixes here and there. [DracoRPG]
  2592. * Corrected the upkeep SP cost of Moonlight Petals. [Skotlex]
  2593. * Modified Magnum Break's fire bonus to be 20% ADDITIONAL fire damage of
  2594. your total damage previous to the elemental modifier. [Skotlex]
  2595. * Modified Fatal Blow's stun chance to kRO's equation (+5% stun chance per
  2596. bash skill level over 5) [Skotlex]
  2597. * Corrected Sharpshooting's damage equation to +50%*skill_lv [Skotlex]
  2598. * Updated Magnum Break's bonus from 10% to 20% fire elemental. [Skotlex]
  2599. * Updated Arrow Shower to be a ground based skill (untested yet) [Skotlex]
  2600. * Pretty much rewrote how Moonlight Petals work, it should be working
  2601. mostly right now. [Skotlex]
  2602. * Splitted gat map information into gat and cell info. gat info is
  2603. permanent map data (walls, ground, etc) while cell is temp map info
  2604. (basilica, pneuma, etc). Modified Pneuma and Moonlight Petals to work based
  2605. on map cells. [Skotlex]
  2606. 2005/11/14
  2607. * New Visual Studio projects, compiling works, need zlib.dll for txt server. [Kevin]
  2608. * Longing for Freedom can't be used during Moonlight Petals now. [Skotlex]
  2609. * Corrected True Sight's critical bonus (from +0.1 cri per level to +1 cri
  2610. per level) [Skotlex]
  2611. * Made coma a status effect. SC_COMA. Sets HP/SP to 1. Bosses/Emperium are
  2612. inmune to it. [Skotlex]
  2613. * Fixed null pointer crash in battle_damage. [Skotlex]
  2614. * Increased max account variables to 32. [Skotlex]
  2615. * Pressure/Gloria Domini now isn't instant-cancelled by status effects, and
  2616. bypasses the Devotion/Sacrifice check. [Skotlex]
  2617. * Added handling of the /pk packet, even thought it just shows an empty
  2618. listing for now. [Skotlex]
  2619. * Applied zBuffer's suggested fix to prevent S. Novices from getting mental
  2620. Strength at 100% exp. [Skotlex]
  2621. * Fixed Friends List not able to add more than 20 friends (current clients support up to 40) [Lupus]
  2622. thanks to CAHTEXNIK for pointing it out 8)
  2623. 2005/11/12
  2624. * Probably fixed the name of freshly captured pet eggs. [Skotlex]
  2625. * Changes Win32 to not require svnversion.h, but instead tries to peek in
  2626. .svn\entries to check for svn version. If the file doesn't exist it'll
  2627. display "Unknown" though, which I guess isn't a good thing ^^; [celest]
  2628. * Removed the option to load zlib as a plugin for Win32 since it should be
  2629. linked at compile time [celest]
  2630. * Added zlib and libmysql .lib files for compiling in Visual Studio [celest]
  2631. Note: The project files on SVN don't have them yet, you'll need to include
  2632. them yourself for now
  2633. * Fixed a compile error in Visual Studio [celest]
  2634. * Readded a missing zlib file needed by Win32, sorry ^^; [celest]
  2635. 2005/11/11
  2636. * New readme content/layout (IE warning: IE hates new readme) [Evera]
  2637. * Imported use of the refine weapon packets from jA. [Skotlex]
  2638. * Removed SC_MODE, now NPC_EMOTION and NPC_EMOTION_ON can change a mob's
  2639. mode permanently (until their death, that is), and it won't work on
  2640. player summoned mobs. As before, val1 is the emotion value, val2 is the
  2641. mode to add/remove. Val3 is now ignored (used to be duration) [Skotlex]
  2642. (no, no need to wipe SC data this time around either)
  2643. * Cleaned up sql-files to use TYPE rather than ENGINE as TYPE is supported
  2644. by older MySQL versions and not quite deprecated yet. [Skotlex]
  2645. * Modified the party even share exp bonus to be +10% per extra party member
  2646. as official sources state. [Skotlex]
  2647. * Organized the clif_devotion packet, and added clif_marionette as per
  2648. jA's implementation. [Skotlex]
  2649. * Added db_path to map_athena.conf, used to specify an alternate directory
  2650. to locate the db/ files. Defaults to "db", obviously. [Skotlex]
  2651. * Removed SC_FALCON and SC_RIDING, the status icons are directly managed
  2652. through the change of the character's option now. The actual defines were
  2653. not removed to avoid shifting all the SC_ values again (no need to wipe sc
  2654. data) [Skotlex]
  2655. * Added additional debug information to battle_attr_fix until the cause of
  2656. those errors are found and resolved. [Skotlex]
  2657. * Fixed win32 compiles always reporting "unable to set socket to
  2658. non-blocking mode", together with other minor win32 fixes. [Skotlex]
  2659. 2005/11/10
  2660. * Fixed char-sql cart loading. [Skotlex]
  2661. * Updated the function that specifies the cards to support more than four
  2662. slots. [Skotlex]
  2663. - Since the packets are fixed sized the client can never receive data of
  2664. more than four cards, therefore if the client was compiled with MAX_SLOTS
  2665. above 4, a random subset of cards will be sent each time the item data is
  2666. sent (eg: if the item has 6 slots, it may randomly choose to send cards
  2667. 1->4, 2->5, or 3->6).
  2668. * Removed the OnAgitInit call when the map connects to char server. Fixes
  2669. double guardian spawn. [Skotlex]
  2670. * Fixed the sql query strings that would appear "incomplete" under certain
  2671. *nix systems. [Skotlex]
  2672. * Applied zBuffer's patches to correct memory leaks in the PCRE module
  2673. (regular expression support for npcs) and prevent server crashing when
  2674. scripts divide (or do mod %) by zero. [Skotlex
  2675. 2005/11/09
  2676. * Fixed Ankle Snare and Spider Web not being cleared when the trapped
  2677. target dies. [Skotlex]
  2678. * Fixed the range flag being incorrectly set in BF_MISC skill attacks.
  2679. [Skotlex]
  2680. * Corrected Venom Knife using Level1 always for the poisoning chance rather
  2681. than learned Envenom's level. [Skotlex]
  2682. * Fixed the crash on shutdown if PCRE support was enabled. [Skotlex]
  2683. * Fixed possible item duping while vending, thanks to End of Exam for
  2684. pointing it out. [Skotlex]
  2685. * Fixed the blue aura of Night effect. Thanks to zBuffer [Skotlex]
  2686. * Fixed mobs moving one tile when hit even if they can't move (this is what
  2687. broke Ankle Snare) [Skotlex]
  2688. * Fixed night/day implementation (which broke due to the addition of SI_
  2689. constants). [Skotlex]
  2690. * Cleaned up the SI_ constants to have defined only those which actually
  2691. display something on the client. [Skotlex]
  2692. * Fixed a bug which caused a captured pet's name to be displayed as beloved
  2693. even though it was just captured. [Skotlex]
  2694. * Added temp skill quests for all complete 2nd Class Quest Skills [Lupus]
  2695. 2005/11/08
  2696. * Updated the documentation on the announce script commands. [Skotlex]
  2697. * Removed the global color message support as there's now a way to craft
  2698. custom colored announces. [Skotlex]
  2699. * Probably fixed mapannounce. [Skotlex]
  2700. * Implemented SI_ constants to specify the icon number for different SC_
  2701. changes, idea adopted from jAthena. All SC_ data was reorganized and
  2702. several checks are now in place. It is likely all saved sc_data is wrong
  2703. after this update due to the numbers changing places. It won't cause any
  2704. glue-boots.. but the wrong status changes will be loaded the first time
  2705. anyway, so it may be a good idea to wipe that file/table for this update.
  2706. [Skotlex]
  2707. * Added mob boss inmunity to status changes: poison, curse, deadly poison.
  2708. [Skotlex]
  2709. * Now when the mob starts casting a skill and stops walking, a packet will
  2710. be sent to update the mob position on the clients. [Skotlex]
  2711. * Fixed a bug in mob_stop_walking which may fix stun-lock. [Skotlex]
  2712. * Fixed not showing named/carded items in Vending [Lupus]
  2713. (when you drag'n'drop them from your cart into your shop list)
  2714. 2005/11/07
  2715. * Expanded script commands announce/mapannounce/mapareaannounce to take an
  2716. additional parameter to define the color. This uses the new packet 0x1c3 to
  2717. send the broadcast, and even though the packet is not fully understood yet,
  2718. it should be at the point where it can be used. [Skotlex]
  2719. - eg: "announce "hello world", bc_map, 0xFFFF00;"
  2720. * Cleaned up and optimized the way card data is set in packets. Should
  2721. correct most, if not all, pet-egg related issues. [Skotlex]
  2722. * Removed combo_damage_delay and added damage_walk_delay_rate. Now the total
  2723. delay during which you can't move is a percent of the normal damage delay
  2724. rate adjusted by number of hits and this rate. Defaults to 50% for now. [Skotlex]
  2725. * Removed the random damage delay value from status_get_dmotion as it is
  2726. not really helping the walk-stun-lock. [Skotlex]
  2727. * Made Gravitation ignore target's cards. [Skotlex]
  2728. * Updated readme with new layout [Evera]
  2729. * Updated bAddMonsterDropItem bonuses to work with cards: Mimic Card, Mystcase Card
  2730. where bonus_item_rate = base_rate * (killed_mob_level/10) + 1
  2731. So if 2nd argument is negative, then it's 'rate'
  2732. Now, if you kill Porings, u'd have OBB/GIFT BOX drops with 0.01% chance
  2733. and if u kill Leaf Cats then u'd have them with 0.05% chance
  2734. Max chance is 0.1% (when u kill MVPs with level > 94) [Lupus]
  2735. 2005/11/06
  2736. * Cleaned up a bit the warp portal code. [Skotlex]
  2737. * Added a timer to invoke the OnAgitInit event 10 seconds after the char/map
  2738. servers are connected. Scripts should now carefully use OnInit to load the
  2739. castle data, and OnAgitInit to check for castle owners, mobs, WoE, etc.
  2740. [Skotlex]
  2741. * Reverted the damage delay equation to 800 -4*agi, which is the correct
  2742. data from packets examined. [Skotlex]
  2743. * Slow motion Fix: Reverted weight packet, thanks to Momoko [Lupus]
  2744. 2005/11/05
  2745. * Fixes on sending to client status of char (guild, position, etc). [LuzZza]
  2746. * Updated backsliding to work as it should. [Skotlex]
  2747. * Added back the GPL licence on the root directory (why was this removed?)
  2748. [Skotlex]
  2749. * Fixed knock-back packets, thanks to Vicious for collecting the packet
  2750. samples. [Skotlex]
  2751. * Fixed pretty much all ground skills not working when you "walked into
  2752. them" (they were fine if casted on top of you, though) [Skotlex]
  2753. * Fixed not working ZENY LOG. You can use logging filter as well. [Lupus]
  2754. - Only SQL logs available.
  2755. - Logs only Vending, Trade, Shops yet
  2756. - Don't forget to update your logs SQL DB and log_athena.conf
  2757. * Added previously removed (by an accident) "MVP Prize item log" into pick_log [Lupus]
  2758. 2005/11/04
  2759. * Added support for new quest skills to @allskills/@skillall. Thanks again to blackhole89 for
  2760. pointing that out! [Kayla]
  2761. * Fixed various occurencies of assuming Guild Skills being >= ID 10000
  2762. rather than 500<skill<1000 still after skill_chk. Thanks blackhole89! [Kayla]
  2763. * Hopefully fixed Weapon Refine. [Skotlex]
  2764. * Applied a change which prevents pc_setpos from working for characters
  2765. between maps, as doing so makes the character appear on a different
  2766. position on the client than the position stored in the server. [Skotlex]
  2767. * Added friend_db option to inter_athena.conf, now friend table is
  2768. usable in multi server and/or custom db configs. [Foruken]
  2769. 2005/11/03
  2770. * Corrected the basilica check which should disable casting offensive
  2771. skills from within inside the basilica. [Skotlex]
  2772. * Modifed status_change_end to prevent peco-peco/falcon from ending until
  2773. the player's 'falcon/peco option' value is removed first. [Skotlex]
  2774. * Removed the knockback code for players and changed it for a "fix
  2775. position" code. The new code is not right as it makes your character
  2776. "teleport" to the position rather than walk really fast to it, but it fixes
  2777. the "Do not use bot!" messages. [Skotlex]
  2778. (someone has to log the actual packets used when being knocked/knocking
  2779. back for this to really be fixed)
  2780. * Heaven Drive now can target traps. [Skotlex]
  2781. (I find it impossible to target a trap with Arrow Shower unless the
  2782. skill's info is set to 32 -target traps-, but when it's done so, the
  2783. client refuses to use the skill on enemies, and mode 33 makes the skill
  2784. useless. How does one makes this work?)
  2785. * Various cleanups to the skill system. [Skotlex]
  2786. * Update: Now your cast cancels on recieving status change such as:
  2787. Stun, Stone Curse, Freeze or Sleep [LuzZza]
  2788. * Updated the code to allow the Emperium to be inflicted by Pneuma and
  2789. Safety Wall. [Skotlex]
  2790. * Updated @recallall to revive any dead characters before moving them,
  2791. should fix that weird ghost bug. [Skotlex]
  2792. 2005/11/02
  2793. * Made Spell breaker not be able to cancel Pressure/Gloria domini [Skotlex]
  2794. * Another fix/optimization to thenight/day system. [Skotlex]
  2795. * Fixed possibility of freezing / stunning already frozen/stunned players
  2796. - Now you can't freeze an already frozen one [Lupus]
  2797. * Fixed non-GMs allowing send trade requests from far places [Lupus]
  2798. * Fix of lowest_gm_level (inter_athena), now logins with access under
  2799. lowest_gm_level overides gm_can_drop_lv. [Kayla]
  2800. * Spell Breaker now works on any skill with a cast time. [Skotlex]
  2801. * Made Dispell not work on Meltdown and Cart Boost [Skotlex]
  2802. * Made Meltdown not dispellable upon death. [Skotlex]
  2803. * Probably fixed Warp Portal [Skotlex]
  2804. * Fixed players being able to mute others even if their gm level is not
  2805. high enough to use @mute [Skotlex]
  2806. * Fixed Dispell not clearing a lot of status changes it should. [Skotlex]
  2807. * Corrected the way the Emperium skill-defense works. Damage skills other
  2808. than Gloria Domini, Raging Trifecta and Gravitation do no damage. Status
  2809. changing skills have no effect, and normal heal heals for 0. [Skotlex]
  2810. * Some more corrections to the night/day system. [Skotlex]
  2811. * Multiple fixes to the skill system. Should fix Warp Portal, Teleport and
  2812. mob skills crashing the server. [Skotlex]
  2813. * Updated sql-files/item_db.sql with the latest. [Skotlex]
  2814. * Some optimizations to the script config events loading/storing/saving.
  2815. (Somehow it fixes the warning from the memory manager on shutdown...)
  2816. [Skotlex]
  2817. 2005/11/01
  2818. * Updated battle_check_target to allow ground skills that affect "Everyone"
  2819. to affect the emperium, only the ones that target only enemies will have no
  2820. effect. [Skotlex]
  2821. * Changed the default of mob_max_skilllv from 11 to 100, as many of the
  2822. recent mobs use higher level skills. [Skotlex]
  2823. * Moved the check which made emperiums receive 0 damage to: [Skotlex]
  2824. - status_check_skilluse, so that all targetted skills fail.
  2825. - battle_check_target, so that all ground-based offensive skills fail.
  2826. * Cleaned up a bit the skill related code. [Skotlex]
  2827. * Updated @ commands. NO command comes at gm-level 0 by default now, that's how
  2828. it should be, the new default minimum is 1 for most trivial @ commands. Also added
  2829. a bunch of commands to conf/atcommand.conf which were missing. I STRONGLY
  2830. recommend everyone to at least fetch the new atcommand file as there
  2831. were abusable commands at level 0 (abusable in the sense they can incur
  2832. performance penalties if over-used by everyone) [Skotlex]
  2833. * Fixed crash when a mob was killed while under Rich Man Kim effect by a
  2834. non-player, also fixes Rich Man Kim not giving the correct exp bonus.
  2835. [Skotlex]
  2836. * Modified the socket subsystem to not close all connections on an "Service
  2837. Temporarily Unavailable" error (it is a non-fatal error which basicly means
  2838. "try again later"). [Skotlex]