Changelog-Trunk.txt 143 KB

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