Changelog-SVN.txt 110 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001
  1. Date Added
  2. 02/21
  3. * Updated Bleeding effect [celest]
  4. * Removed some unused code for Graffiti [celest]
  5. 02/20
  6. * Char SQL: Rewrote/Fixed the castle save function, now the sql version saves castles! [Sirius]
  7. * Fixed the /mm /mapmove command access bug [Sirius]
  8. * Added skill requirements for the new guild skills [celest]
  9. * Allow Emergency Recall to be cast in guild castles even if nowarp and
  10. nowarpto mapflags are enabled [celest]
  11. * Add 'minimum job level required' for skill_tree reading [celest]
  12. - Berserk now requires job level 50
  13. * Added Spring Trap to be able to trigger ankle snare traps that aren't
  14. activated yet [celest]
  15. * Added a fix in guild.c by Mellowz [celest]
  16. * Some rewrites on the pet skill bonuses system -- also fixes pet bonuses
  17. not effecting stats as they should [celest]
  18. * Check whether a monster is still alive before starting a status change
  19. -- also fixes the status_change_timer nullpo errors with grimtooth [celest]
  20. 02/19
  21. * Added bSubSize, bHPGainValue, and bDamageWhenUnequip [celest]
  22. * Updated bSPDrainValue/Rate to accept a 'type' [celest]
  23. * Set baby class players' size to 0(small) [celest]
  24. * Fixed item_db2.txt reading printing wrong number of entries read [celest]
  25. * Fixed @allskill not giving the newer stalker, whitesmith and creator skills
  26. [celest]
  27. 02/18
  28. * Fixed a bug with statpoint.txt reading and giving too much stat points,
  29. thanks to Benz / eAthenaC [celest]
  30. * Fixed client errors when pecopeco Lord Knights/Paladins log in with a weapon
  31. equipped [celest]
  32. * Added bAddRace2 -- check item_bonus.txt [celest]
  33. * Added mob_race2_db.txt -- contains 'main races' of certain monsters [celest]
  34. * Updated description for backup_txt in char_athena.conf a bit [celest]
  35. * Set read_map_from_cache to 2 (enable compression), and map_cache_file back to
  36. saving in /db instead of /save, as suggested by Poki#3 [celest]
  37. * Updated description for auto_counter_type, and set plaer_auto_counter_type
  38. to 0 by default, as suggested by Poki#3 [celest]
  39. * Use the event names from script_athena.conf to check whenever a player event
  40. trigger is being read/set [celest]
  41. * Removed an unused save/bank.txt [celest]
  42. * Added some new cards effects. (check DB\changelog.txt) [Lupus]
  43. 02/17
  44. * Now all mobs have 10 drops slots. the last one is used for Cards Drops [Lupus]
  45. Don't forget to update your SQL files (Drop Log: logs.sql and db_tables.sql
  46. if u were using SQL Mobs DB. Update it from TXT! )
  47. * Fixed Branch Log TXT filename [Lupus]
  48. * Made all logs work with compiled TXT Server, too (removed old #ifndef) [Lupus]
  49. * Added 4 columns into mob_db.txt (check DB\changelog.txt) [Lupus]
  50. * Fixed some mobs drops (Whisper, etc) and some MVP mobs (bonuses were shifted...) [Lupus]
  51. * Readded Chemical Protection -- i forgot to check for it when changing some
  52. jA stuff earlier, sorry ^^; [celest]
  53. * Removed some old eA code that was causing Frost Nova to do an extra hit
  54. [celest]
  55. * Corrected Vulcan Arrow's hits in skill_db -- the bug appeared when the
  56. correct numbers hardcoded were removed [celest]
  57. * Readded zlib and zconf .h files to under /lib for compiling in Windows,
  58. thanks to Ser [celest]
  59. * Fixed some compile errors in Windows, thanks to Ser [celest]
  60. * Changed remove_control_characters back to supporting korean chars [celest]
  61. * Moved some other code around [celest]
  62. * Added Shinomori's changes to Dissonance -- don't increment the timer again
  63. if the target has died [celest]
  64. * Changed some nullpo checks back to normal null checks -- in some situations
  65. it would be normal to get a NULL [celest]
  66. * Changed some nullpo checks to print some debug information [celest]
  67. * Added some sd checks before calling pc_blockskill [celest]
  68. * Added Dino9021's fix for SQL char's friend list updating [celest]
  69. * Fixed a crash if the player invited to join a guild is not online, thanks to
  70. Alex14 [celest]
  71. * Find the guild invitation sender first before clearing its ID [celest]
  72. * Added 2 new script commands to support 2/15's cards patch... most of the
  73. effects in kRO should be available now ^^ [celest]
  74. - isequipped(...): Accepts a list of item ID's and checks whether all of
  75. the items/cards have been equipped.
  76. - isequippedcnt(...): Same as above, except it returns how many of the items
  77. are being equipped
  78. Example: if(isequipped(4002,4004,4006)) bonus bStr,1;
  79. 02/16
  80. * Char SQL: Fixed the Whisper chat on splittet mapservers (i think now all features work!) [Sirius]
  81. * Added 3 more of the new card effects -- check item_bonus.txt [celest]
  82. * Added 'bonus4' to support the new card effects that might need up to 4
  83. parameters [celest]
  84. * Set 'killerrid' and do PCKillEvent before calling PCDieEvent, thanks to
  85. mrmagoo for pointing it out [celest]
  86. * Added some new script event related options to script config [celest]
  87. - [die/kill/login/logout]_event_name: Name of script to activate when an
  88. event has occured
  89. - event_requires_trigger: whether or not a 'set [EventName],1;' has to be
  90. defined first for the event to be activated
  91. * Added 8 of the new card effects on the 2/15's patch (still untested and
  92. not yet added to the item_db)
  93. - Refer to doc/item_bonus.txt for description
  94. * Minor rewrites on self and enemy weapon/armor breaking during battle [celest]
  95. * Added missing code for 'bBreakWeaponRate' and 'bBreakArmorRate' effects
  96. [celest]
  97. * Added missing code for 'bAddStealRate' effect [celest]
  98. * Removed redundant 'infinite_autospell' in map_session_data [celest]
  99. * Fixed Treasure Box spawn bug in all castles. [Lupus]
  100. * Fixed wrong PresentLOG (it wasn't showing PRESENT BOX type ID) [Lupus]
  101. * Expanded Monsters Drops Slots from 8 to 10. Everywhere in the sources. [Lupus]
  102. But in TXT / SQL monsters DB reading functions, I added a temp plug
  103. to make eA work fine with existing DBs. It reads only 8 drops and fills
  104. 9th and 10th drops with Zero.
  105. On expanding MOB_DB.TXT we'll remove that plug.
  106. We are adding new cards and some monsters
  107. have no free slots for them. Current state is tested and works fine.
  108. 02/15
  109. * Allow Potion Pitcher to be able to cast on yourself -- i've almost forgot
  110. about this, thanks to Filougarou and Poki#3 for the fix ^^; [celest]
  111. * Added Wallex's changes for weapon skills to read list_num from the skill_db
  112. when calculating damage [celest]
  113. * Login / Login SQL: Fixed the EXE-Version check (now it works finally :) [Sirius]
  114. * Char SQL: Fixed the '0x2b05' reply to the mapserver (now multi - mapservers works again!)
  115. * Rewrote skill blocking system that was allowing people to bypass blocking
  116. time simply by casting a different skill [celest]
  117. * Edited out some inconsistencies with skillnotok [celest]
  118. * Corrected Investigate's damage calculation, thanks to matthias [celest]
  119. * Generate the remaining entries of the stat point DB if the number of
  120. entries in db/statuspoints.txt is less than MAX_LEVEL, or statuspoints.txt
  121. was not found [celest]
  122. * Try to spawn the player at a default map ("prontera.gat") when logging in if
  123. the save point map was not found [celest]
  124. 02/13
  125. * added an @autoloot switch that Upa-kun has forgotten [Shinomori]
  126. * changed pet_skillattack_timer and corrected the poison spore attack
  127. * tighter check's on "unknown skill" error; but added prints to trace it
  128. * Added Wallex's changes to only evoke script_rid2sd if agitcheck(1) is used
  129. [celest]
  130. * Merged jA's equipment breaking system into the current one, and corrected
  131. items with unbreakable effects in the item_db [celest]
  132. - "bonus bUnbreakable,[chance];" changed to
  133. "bonus bUnbreakable[Weapon/Armor/Helm/Shield],0;"
  134. 02/12
  135. * Merged Dexity's pc_statpointdb into pc_readdb, changed statp's string
  136. array to short (less memory), and fixed the db not giving status points if
  137. character level is above 255 [celest]
  138. * fixing and optimizing sharp shooting
  139. have implemented two different versions, just have a look and
  140. decide which to use, description is in the code [Shinomori]
  141. * Changed default map cache path from db/map.info to save/mapinfo.txt [celest]
  142. * Removed old code for Sharp Shooting (still a little buggy) [celest]
  143. * Merged Shinomori's code into map_foreachinpath [celest]
  144. 02/11
  145. * mob.c fixed doubling entries in DROPS LOG, optimized [Lupus]
  146. * item_noequip.txt now you can disable named consumable items
  147. during GvG / PvP, too by Maya, optimized and checked [Lupus]
  148. NOTE: Get rid of old cards on your server!!! IDs: 4149-4332
  149. before using of this item_db.txt (some cards have changed their IDs)
  150. and it could cause ALIEN cards in your players equipment 8))
  151. i.g. a weapon compounding CARDS inserted in armor, etc...
  152. * item_db.txt Massive update: [Lupus]
  153. - Added all new missing items (up to st.Valentine's Day Event)
  154. - Added new cards 4149-4332, sorted them and set their sripts.
  155. - Fixed some names, typos, weigths and prices
  156. * Commented out old custom cards from Old_Card_Album.txt till we brush them up [Lupus]
  157. * Removed old custom cards from MOBs drops [Lupus]
  158. thanks to Landarma(new items templates) Poki#3(removing cards from drops)
  159. * Tidied up battle_check_target abit [celest]
  160. * Updated traps to affect allies as well in GvG [celest]
  161. * Check if login server is online before setting character to online (in SQL),
  162. thanks to Alex14 [celest]
  163. * Synchronise storage as well when saving character to cut down on item
  164. rollbacks or duping, by Yor / Frea [celest]
  165. * Added fix for super novices' Guardian Angel system crashing when base_exp = 0
  166. thanks to Alex14 [celest]
  167. * not realy fixing the "unknown skill" error
  168. but returning skill_castend_damage_id when called with skillid < 0
  169. still need to search a reason why it is called with -1 [Shinomori]
  170. * EXPERIMENTAL: Reduced memory used for the skill_tree DB by 30+mb [celest]
  171. * Added script commands isday and isnight - checks whether its night or
  172. daytime. Example: if(isnight()) ... [celest]
  173. * Skill Updates [celest]
  174. - Sharp Shooting: Dropped jA's and kA's code and wrote a new
  175. map_foreachinpath function in map.c -- about 14 times faster, but still
  176. uncomplete
  177. - Ankle Snare: Added matthias' suggestion to let agility reduce more trap
  178. time, but no less than 3 seconds.
  179. - Magnum Break: simplified code a bit, and changed to non-targetting /
  180. automatically damages an area around the caster
  181. - Tiger Fist: enable it to be used by its own besides as a part of
  182. the combo skills
  183. - Devotion: Fixed maximum level difference not reading its setting from
  184. battle_athena.conf, thanks to leinsirk
  185. - Soul Burn: Added some safety checks
  186. 02/10
  187. * Login/Login SQL: fixed the client version check function [Sirius]
  188. 02/09
  189. * Added conf-tmpl/readme.txt, explaining the import folder [1066: Ajarn]
  190. * SQL Char: Rewrote the char_create function (now it's faster/optimized) [Sirius]
  191. * SQL Char: Fixed the reply if a charname is invalid on create (now it replys denied..) [Sirius]
  192. * SQL Char: Added a Character limit per Account (can be set in the config) [Sirius]
  193. * SQL Char: Optimized some SQL-Querys [Sirius]
  194. 02/06
  195. * NULL entries for guild data fixed [Credit to Sirius] [1060: Ajarn]
  196. * Login server uses login_db_userid and login_db_user_pass for
  197. queries now [Credit to Sirius] [1059: Ajarn]
  198. * Login server can now check clientversion in clientinfo
  199. [Credit to Sirius] [1059: Ajarn]
  200. * Fixed txt build compile problems[1057: MouseJstr]
  201. * Corrected end-of-line issues in source code [1056: MouseJstr]
  202. * Coded new command: @MOBINFO <monster name|monster N> [Lupus]
  203. the command has also 2 aliases: @monsterinfo, @mi
  204. It shows all Monster stats, Element, Race and stuff
  205. It shows all items with their drop chance
  206. It also shows MVP bonuses (MVP EXP, MVP Drops)
  207. 02/05
  208. * increased the max_files allowed in a grf [1054: MouseJstr]
  209. * Changed the way char deletion works for SQL [1051: Ajarn]
  210. - If the email the client fails check then check if the
  211. email is blank and the DB email is a@a.com (default)
  212. If so, assume it was created with _M/_F, and delete it
  213. * SQL Login accepts _M/_F now [Credit to Sirius] [1049: Ajarn]
  214. * Map server now actually reads bind_ip [1048: Ajarn]
  215. Side note: login reads bind_ip, but doesn't use login_ip now.
  216. * Made eA compile under AMD64 64-bit native [1047: MouseJstr]
  217. * Changed interface binding to use a bind_ip instead of using
  218. the login_ip, char_ip, or map_ip. This lets you still be
  219. able to set your WAN IP seperate from what interface you
  220. wish to bind to. Also, the default is back to binding to
  221. all interfaces on the machine. [1045: MouseJstr]
  222. * optimizing OnTouch event name generation [Shinomori]
  223. * fixing Celests Sharp Shooting [Shinomori]
  224. * Updated Sharp Shooting AoE code, thanks to Neodis / k-Athena [celest]
  225. - Update: Adapt jA's path_search algorithm and removed the need of struct
  226. 'dev' in map_session_data
  227. - Update: Increase range to 14
  228. * Tidied up explicit typecasts in status_get_max_hp, thanks to Ilpalazzo-sama
  229. [celest]
  230. * Non-MVP / miniboss summoned monsters should give exp, my mistake ^^; [celest]
  231. Note:- minibosses are considered a 'Boss' as well, not just MVP's
  232. * Fixed a typo that was preventing packet version 5 clients (628sak) from
  233. logging in (it was supposed to only block those with 4 or below) [celest]
  234. 02/04
  235. * Fixed more compile signed/unsigned errors [SVN 1040: MouseJstr]
  236. * TXT convertors now read the import command in inter_athena.conf
  237. [SVN 1038: Ajarn]
  238. * Fixed some compile errors [SVN 1037: MouseJstr]
  239. * Added common/buffer.(c/h) [SVN 1033: Ajarn]
  240. * Login server can now set it's ip address in the config [SVN 1033: Ajarn]
  241. * Servers now bind to a single ip address, thus allowing multiple servers to
  242. a single port [SVN 1033: Ajarn]
  243. * Added experimental code to generate a stack dump when it segfaults, thanks
  244. to Ser [celest]
  245. - does not work with Cygwin, as it does not have glibc
  246. - to enable, edit the Makefile and remove the # on the line:
  247. # OPT += -DDUMPSTACK -rdynamic
  248. - What it does: everytime eA crashes it'll generate a file "stackdump_
  249. <number>.txt" in your save folder with a backtrace, which you can
  250. examine and send to a dev to be fixed.
  251. * Some more tidying up in status_get_ functions [celest]
  252. 02/03
  253. * When loading shop scripts automatically check if the prices can be exploited
  254. with OC/DC [celest]
  255. * If the buying price provided in item_db.txt is above 2x higher than selling
  256. price for an item no need to reset and redetermine the buying price [celest]
  257. * Fixed a mistake that was causing Ruwach to only work in PvP and PvM [celest]
  258. * Added DracoRPG's code for Joint Beat effects, thanks! [celest]
  259. 02/02
  260. * Added checks to prevent some crashes in skill.c
  261. [Full credit to shinomori] [SVN 1022: Ajarn]
  262. * Removed nullpo check in skillnotok() -- otherwise it will display fail
  263. messages for monster skills [celest]
  264. * Added crash check for Ice Wall [celest]
  265. * Added some optimisations by Ilpalazzo-sama [celest]
  266. - reduce mob_data->size variable to 1 bytes
  267. - change from if-else to switch statements in buildin_strmobinfo
  268. 01/31
  269. * Fixed a typo in Pressure causing it to deduct sp from the caster, and remove
  270. its sp_rate requirement [celest]
  271. * Updated skill_range_leniency code when casting a ground targetting spell
  272. ( as in Revision 968) [celest]
  273. * Added Karma and Manner to const.txt
  274. -- To change a player's alignment to more Good/Evil in scripting for example,
  275. use:
  276. set Karma, Karma + <number here>;
  277. In older exe's (11-08 or older) you can actually check your karma in the
  278. character alignment screen (alt-A)
  279. The rest is up to your scripting creativity ^^
  280. * Delete players' ID from id_db when kicking everyone from the map-server due
  281. to char disconnection -- Fixes an odd crash with lazy mob AI [celest]
  282. * Added at(@) command @autoloot, which turns autoloot on or off for the
  283. player who uses it [Upa-Kun]
  284. 01/29
  285. * Fixed Storage Bug with Named Stackable items. Thanks to Nimion [Lupus]
  286. e.g. Arrows, Iron, Elemental stones, etc...
  287. * Added a crash check to Safety Wall, thanks to LebrEf[TaVu] / Freya for
  288. pointing it out [celest]
  289. * Added some optimisations in clif_parse_MapMove, by Ilpalazzo-sama [celest]
  290. 01/28
  291. * Fixed a typo that was causing /in to always report failure even when the
  292. name was removed from the ignore list [celest]
  293. * Link "wisexin", "wisexlist" and "wisall" to the PM ignore functions, and
  294. "friendslistadd" and "friendslistremove" to the friends list functions
  295. when parsing the packet DB [celest]
  296. * added clif_parse_PMIgnoreList (packet 0xd3) from jA [celest]
  297. * Added DUMP_ALL_PACKETS and moved dump packets code in clif_parse a bit to
  298. support it [celest]
  299. * Added base code for Party Item Sharing -- still needs some work in client-
  300. server support [celest]
  301. * new GC link http://amber.stormbirds.org/~joshs/gc6.4.tar.gz
  302. This fixes some issues... works better
  303. * Added macros skill_chk and skill_get to check for out of bounds errors when
  304. retrieving info from the skill_db [celest]
  305. 01/27
  306. * Added memory leak fixes with temporary script variables and pets-related
  307. actions, by End_of_exam / jA 1109 [celest]
  308. * Kick all characters when the char server disconnects from the map
  309. server [celest]
  310. * Added @changelook command for spriters to test view ID's [celest]
  311. * Added a check to Pneuma to prevent crashing, thanks to LebrEf[TaVu]/Freya for
  312. pointing it out [celest] [celest]
  313. * Tweaked garbage collection code after feedback from users
  314. [SVN 1002: MouseJstr]
  315. * Fixed TRADE exploits (it cures proxy hack / vending+trade hack) thanks to Freya [Lupus]
  316. 01/26
  317. * Added bug fix for a memory leak caused when a character logs out,
  318. by End_of_exam / jA 1108 [celest]
  319. * Fixed a bug in gettick cache when compiling in Windows, thanks to Shinomori
  320. (jA 1094) [celest]
  321. * Added updates from jA 1092 [celest]
  322. - Changed "read_map_from_bitmap" to "read_map_from_cache",
  323. "map_bitmap_path" to "map_cache_file" in map_athena
  324. - Fixed item effects not showing when only one was used
  325. - Fixed a bug in Safety Wall
  326. - Allow only either Storm Gust or Lord of Vermillion to cause damage if
  327. stacked together
  328. - Added path_search_long, map_find_skill_unit_oncell
  329. * Added status_get_sc_def for calculating resistance against status
  330. abnormalities [celest]
  331. * Added status.c and status.h of jA 1091 update and moved some functions into
  332. the new source files:
  333. -- skill_status_change_ -> status_change_
  334. -- battle_get_ -> status_get_
  335. -- pc_calc_ -> status_calc_
  336. -- pc_getrefinebonus and pc_percentrefinery -> status_getrefinebonus and
  337. status_percentrefinery
  338. * Updated auto_counter_type's description in battle_athena, thanks to
  339. akusarujin for pointing it out [celest]
  340. * Removed some unnecessary skill level checks in battle.c [celest]
  341. * Removed my changes to /stable/Makefile which has libGC enabled by default
  342. that i've accidentally commited, sorry ^^; [celest]
  343. * Removed an unnecessary "cloneskill_lv" from map_session_data [celest]
  344. * Removed WATER.TXT (this file wasn't used at all. There's no such mapflag as WATER even). [Lupus]
  345. * Added Water Height of New Yuno Fileds 9 and 11.
  346. Now Water Ball works there as should. Wizards could levelup on sleepers, too. [Lupus]
  347. * libGC isn't ready to be the default quite yet... [MouseJstr]
  348. Enough people have asked so... Once you grab a copy of the
  349. libGC library from (http://amber.stormbirds.org/~joshs/gc6.3.tar),
  350. you start up a bash shell from inside cygwin and untar
  351. the gc6.3.tar. This will produce a gc6.3 directory. Then
  352. cd into that directory and type ./configure. Once that is
  353. done you type "make" and then "make install". This will
  354. spray the various includes and libraries all over your
  355. cygwin install (most in /usr/local).
  356. Now, edit Makefile and change the CC line to use the
  357. CC = gcc -pipe -DGCOLLECT
  358. entry. Also change the GCLIB to
  359. GCLIB = -L/usr/local/lib -lgc
  360. Remember to comment out the ones no longer used. Do a clean
  361. build and good luck. Obviously, this has not been tested
  362. by that many people so you really are on the cutting edge
  363. but if you have good results, send me a note
  364. (joshs@stormbirds.org) so that we can see if it really is
  365. ready for prime time.
  366. What should you see? Well, the map-server should not
  367. grow/consume extra memory anymore. More so, it should use
  368. dramatically less memory then it did before using the
  369. garbage collector.
  370. The downside is that it will consume a little more CPU...
  371. The question is, how much? how laggy? what effect on lots
  372. of players? I've heard stories saying it makes the server
  373. unplayable and others told me that they saw no
  374. player-visible effects at all.
  375. 01/25
  376. * Fixed TXT compile problems with libGC [celest]
  377. * Added "Clients older than 2004-09-06aSakray" option to packet_ver_flag in
  378. battle_athena, just in case server owners still prefer the older clients.
  379. With so many changes to Sakray over the past months its much better upgrading
  380. to the newer clients (November or higher recommended) available ;P [celest]
  381. * Merged Full Strip into jA's tidier stripping skills code -- also fixes
  382. a typo that was causing Full Strip to do the reverse effect instead,
  383. and the skill not updating the target's status after successfully unequipping
  384. items [celest]
  385. * Tidy up the 4 chemical protection skills into one code block [celest]
  386. * Corrected Slim Pitcher's code -- sorry, i missed a few things ^^; [celest]
  387. 01/24
  388. * Fixed a typo in Provoke that was causing crashes [celest]
  389. * Fixed another compile warning in src/char/char.c
  390. [SVN 985] [MouseJstr]
  391. * Fixed a account wipe bug in login/login.c (Thanks Wallex)
  392. [SVN 984] [MouseJstr]
  393. * Fixed a crash in char_sql/char.c where people were selecting
  394. chars before requesting connections [SVN 983] [MouseJstr]
  395. * some G++ compile tweaks and got through several files in the
  396. map server - [SVN 976] [MouseJstr]
  397. Why are we doing a C++ conversion? We have a lot of duplicate
  398. code and would like to make the "classes" in the server share
  399. code.. For example, a pet should be able to share code from
  400. the player or from a mob. Similerly, introducing a new type
  401. of entity in the game should be as simple as creating a
  402. sub-class instead of having to crawl through the entire source
  403. tree searching for every class check and introducing handler
  404. code in for your new type.
  405. Finally, while a garbage collector is "cool", it would still
  406. be nice to have enough object knowledge on how to clean up
  407. data that it is not absolutely required. It is faster for
  408. us to clean up our own messes then introduce a whole system
  409. for cleaning up after ourselves.
  410. Is there a C++ performance penalty? Not if the code is
  411. written correctly. For example
  412. 1) No templates - code bloat and destroys cpu cache
  413. coheriancy
  414. 2) No C++ exceptions - slows down entering and
  415. exiting functions
  416. 3) No operator overloading - makes it hard to
  417. understand what is going on.
  418. 4) No C++ STL libraries - Templates, huge, bloated,
  419. unportable
  420. 5) No method inlining - code bloat and reduces cache
  421. coheriancy. Let the optimizer do it...
  422. 01/23
  423. * char-server (SQL & TXT), login-server (SQL & TXT), and txt-coonvertors
  424. (char and login) all compile on g++ now [svn 975] [Ajarn]
  425. * Fixed the sizeof errors in g++ [SVN 972] [Ajarn]
  426. * Reverted back some of the char* changes [SVN 972] [Ajarn]
  427. * Changed parse_script to now return char* [SVN 969] [Ajarn]
  428. * Converted run_script and run_script_main from unsigned char* to char*
  429. [SVN 969] [Ajarn]
  430. * Forgot a couple small changes [SVN 35] [Ajarn]
  431. * Changed map_data.gat and map_data_other_server.gat from unsigned char*
  432. to char* (this might be needed, because of unicode or something, please
  433. correct me if I'm wrong) [SVN 34] [Ajarn]
  434. * Converted decode_zip, encode_zip, remove_control_chars, mapif_sendall*,
  435. and e_mail_check to use char* instead of unsigned char* (again, please test)
  436. [SVN 34] [Ajarn]
  437. * Modified skill unit group checking in skill_unit_onplace that might have
  438. been causing crashes [celest]
  439. * Updated packet 0x143 length's for version 14 (2004-11-01Sakexe) and version
  440. 16 (2005-01-10Sakexe), thanks to jathena and ice2big [celest]
  441. * Fixed login-server compile error with the "new" -> "new_" changes [celest]
  442. 01/22
  443. * Fixed an error that was in my last commit (optimising g++ build) [SVN 29]
  444. [Ajarn]
  445. * Made strlib functions char*, instead of unsigned char*. Strings are meant
  446. to be char. (Shouldn't break anything, but might, please test this for me)
  447. [SVN 26] [Ajarn]
  448. * Added cast for TXT version [SVN 25] [Ajarn]
  449. * Added cast from allocation calls, from void* to intended type [SVN 24] [Ajarn]
  450. * Changed bool -> bool_. Still need to make convertions between
  451. char* and unsigned char* valid, and some other convertions too.
  452. Also, sizeof is being used wierd in map.c, at least g++
  453. complains [SVN 22] [Ajarn]
  454. * Changed the rest of the class variable names to class_ and all the new
  455. variable names to new_, for futher g++ support [SVN 21] [Ajarn]
  456. * Update both caster and target's SP after using Soul Change -- thanks to Aalye
  457. / Freya [celest]
  458. * Force a monster to switch attack target when being casted Provoke [celest]
  459. * Corrected description for @enablenpc -- "@npcon" -> "@enablenpc" [celest]
  460. * Since job normalising is still buggy require all 1st class skills to check
  461. for Basic Skill level when calculating the skill tree [celest]
  462. 01/21
  463. * Updated packet DB configurations : enable_packet_db, packet_db_ver,
  464. -- check the .txt for description [celest]
  465. Note: For people having connection problems try setting 'enable_packet_db'
  466. to 'no'... and use the latest client (01-10Sakexe)
  467. * Fixed a small typo in 12-06's packets -- 21b => 21d [celest]
  468. * Updated packet_db.txt to only contain the latest version, like jAthena,
  469. since there's not much point to re-read packets eA already supports
  470. (although if you remove all the //'s it can still read multiple versions)
  471. [celest]
  472. * Added clif_config in clif.c - for keeping packet/client connections related
  473. stuff [celest]
  474. * Send 'Game Exe not latest version' to a client if it hasn't been authentified
  475. yet, but is sending a non-connection-related packet to prevent crashing
  476. -- assume the client is using an unknown exe [celest]
  477. 01/20
  478. * Fixed compile time problems with the non-GC case [MouseJstr]
  479. * Introduced aMallocA and aCallocA
  480. These two functions allocate "atomic" memory which means
  481. "memory that does not contain references to other memory".
  482. This lets the garbage collector ignore these objects when searching
  483. memory for references to other objects dramatically increasing
  484. performance of the GC.
  485. When in doubt, use aMalloc and aCalloc. It is better to add
  486. a tiny bit of work to the GC then do cause a crash due to memory
  487. being cleaned up when it shouldn't.
  488. [MouseJstr]
  489. * Modified all calls to aMalloc and aCalloc that reference
  490. atomic memory to use aMallocA and aCallocA
  491. [MouseJstr]
  492. * Modified the socket buffer allocator to use "atomic" memory
  493. for the fifo data buffers [MouseJstr]
  494. 01/19
  495. * added support for the Hans-J. Boehm libC garbage collector
  496. (A copy is in http://amber.stormbirds.org/~joshs/gc6.3.tar).
  497. It is ABSOLUTELY critical for people to use
  498. aFree/aMalloc/aCalloc/aStrdup for this to work. If somebody
  499. has just used free or malloc, this will crash when used with
  500. the garbage collector.
  501. A amusing environmental variable to set is GC_PRINT_STATS (to 1)
  502. so that you see real time statistics of leaked data being
  503. recovered.
  504. grab a copy of the gc6.3.tar.. build it .. install it..
  505. modify the Makefile to have the
  506. CC = gcc -pipe -DGCOLLECT
  507. GCLIB = -lgc
  508. lines... and make the sql servers (the txt server doesn't
  509. build using this right now due to stupid Makefile issues)
  510. [MouseJstr]
  511. * SVN 3 on http://svn.stormbirds.org/svn/eathena will be what
  512. I diff against when I merge back into delta.. if we ever merge
  513. back into delta [MouseJstr]
  514. * Removed 12-06 Sakexe detection, since it doesn't seem to work, and
  515. might be conflicting with 10-25 clients [celest]
  516. * Update the Soul Burn target's SP when it has been successfully reduced to 0,
  517. thanks to Aalye / Freya [celest]
  518. * Moved SC_PRESERVE and SC_BATTLEORDERS's id so they'll display a status icon
  519. when cast, thanks XiaoLin of cAthena [celest]
  520. * Added missing code for Preserve -- i totally forgot to add it ^^; [celest]
  521. 01/18
  522. * Added some skill bug fixes, thanks to Aalye / Freya [celest]
  523. - stop player attacking if the target goes into hiding
  524. - fixed Sword Reject not working against swords, only daggers
  525. - additional check in case Marionette Control doesn't end properly even
  526. when one of the partners has logged off
  527. * Added stun, bleeding and SP loss effect for Pressure, thanks to DracoRpg
  528. [celest]
  529. * TEST: Fixed more compile warnings in MSVC [celest]
  530. * TEST: Fixed some compile errors in MS Visual C++, thanks to Ser [celest]
  531. 01/17
  532. * Some rewrites in skill_delayfix [celest]
  533. - If the delay is < 0, add the weapon aspd delay to it
  534. - If the skill is not weapon type, and has 0 delay, add 300ms as default
  535. * Added min_skill_delay_limit as the minimum allowed delay for any skills
  536. [celest]
  537. * Some tidying up in battle_get_ functions [celest]
  538. * Set exp table and job bonus table to 0 before reading - might solve some
  539. memory bugs [celest]
  540. * Updated skill range leniency code - If possible try and move towards the
  541. skill target so that when casting it no longer falls out of range [celest]
  542. 01/15
  543. * Added effects to enemies for Gospel [celest]
  544. * Added mobs spawn to all Yuno fields (according to 4th Jan patch) [Lupus]
  545. 01/14
  546. * Added party supporting effects for Gospel [celest]
  547. 01/13
  548. * Added and testing support for 2004-12-06Sakexe [celest]
  549. * Removed emblem changing requiring Glory of Guild limited to TXT only [celest]
  550. * Corrected a typo preventing Plagiarism to work, thanks to orn [celest]
  551. * Fixed Berzebub card and other 'reduce cast delays' equipment not working
  552. [celest]
  553. * Updated packet_db.txt loading to support reading into multiple packet
  554. versions [celest]
  555. * Removed packet_db_ver defining in packet_db.txt -- it'll determine itself
  556. based on MAX_PACKET_VER [celest]
  557. * Integrated packet size and function DB's into 1 packet_db [celest]
  558. * Added MAX_PACKET_VER -- maximum versions supported by eA, including the
  559. packet_db -- and changed packet size and function DB's to use it [celest]
  560. * When sending 'Game exe not latest version' packet don't close the session
  561. immediately so it will still be delivered [celest]
  562. * Added map-server display if an unidentified client was rejected --
  563. also fixes the 'empty string sent to _showmessage' [celest]
  564. * Added a bug - Celest, LOOK AT THIS BUG ASAP. [Codemaster]
  565. * Tided up/fixed some mobs [Lupus]
  566. 01/12
  567. * Implemented Vending Log [Lupus]
  568. TODO: use log option to log only important deals (much money, rare items, etc)
  569. 01/11
  570. * Added Shinomori's changes to npc event timers (I never realised it, thanks
  571. ^^; ) [celest]
  572. * Updated clif.c to be able to identify client versions based on the packet DB
  573. [celest]
  574. * Correct packet_db_ver to the maximum version allowed if it was set too high
  575. or too low in packet_db.txt [celest]
  576. * Added support for 2005-01-10Sakexe [celest]
  577. * Updated packet functions for 2004-11-08 and 2004-12-06 (Note: eA *can*
  578. support 12-06, but still doesn't recognise it... so unless we find a way,
  579. it is *not* supported yet) [celest]
  580. * Updated packet_db, thanks to Sara-chan [celest]
  581. * REMOVED support for clients before packet version 10 (2004-08-25 and
  582. earlier) - the client will receive a 'Game Exe not latest version' message
  583. [celest]
  584. * Added a check to prevent crashing when trying to log in with
  585. 2005-01-10aSakexe in servers that don't support it [celest]
  586. * Added a fix to @sound where if you forgot the .wav exention, i'd attempt to play the file without it (it adds the .wav) [Codemaster] [SVN 949]
  587. * Added @disguiseall / @undisguiseall [Codemaster] [SVN 949]
  588. * Added misc. clif.c fixes (jAthena added alot of close(fd)'s, so i added them, too) [Codemaster] [SVN 949]
  589. * Added bug reports - Celest, you might want to check one of those out [Codemaster] [SVN 949]
  590. * Fixed a bug in clif.c which didn't allow to enther the map-server.
  591. It worked under win32, but didn't under Linux. [Lupus]
  592. 01/10
  593. * Completed adding packet DB reading... still needs (a lot) more work in
  594. clif.c [celest]
  595. * Added Shinomori's suggestions for npc timers, thanks again ^^ [celest]
  596. * Removed checking for script event timers' length, and added Shinomori's
  597. changes [celest]
  598. * Start adding packet DB reading [celest]
  599. * Added 'max_eventtimer_length' (default is 32) to script_athena.conf. [celest]
  600. Some event timers with names longer than 24 could cause the server to close
  601. itself, change this if you need support for even longer names
  602. * Removed PCLoginEvent requiring 'PCLoginEvent' for the player to be set to 1
  603. first to be activated. [celest]
  604. * Added Shinomori and orn's fix for the skill tree to only check the first
  605. required skill in the DB and skipping the rest [celest]
  606. * Modified 'wedding' script command to work with "OnTimer" scripts even without
  607. doing 'attachnpctimer' (The 'player not attached' error will still display,
  608. but the effect will appear *over the NPC* instead of the player...
  609. at least it won't fail ^^) [celest]
  610. * Added 'attachnpctimer' script command for attaching the player to the current
  611. npc's timer in "OnTimerxxxx" scripts, thanks to Wallex for the idea. [celest]
  612. Syntax:
  613. attachnpctimer;
  614. attachnpctimer "<Player Name">;
  615. Check /npc/sample/npc_test_npctimer2.txt for example.
  616. * Added 'detachnpctimer' script command for detaching players from the npc's
  617. timer. [celest] Syntax:
  618. detachnpctimer;
  619. detachnpctimer "<NPC Name">;
  620. * Added 'OnInterIfInitOnce' for WoE scripts & modified the WoE scripts as well [Ajarn & Codemaster] [Thanks to FREYA] [SVN 943]
  621. * Added the @sound command and the NPC command of soundeffectall
  622. - works just like soundeffect, but plays for everyone in the area [Codemaster] [SVN 942]
  623. * Don't allow Pets to attack Guardians outside of WoE [Codemaster] [SVN 940]
  624. * Require 15% of HP or more for WE_MALE skill [Codemaster] [SVN 940]
  625. * Require 15% of SP or more for WE_FEMALE skill [Codemaster] [SVN 940]
  626. 01/07
  627. * Upon changing to high novice 100 stat points should be given, not 88 [celest]
  628. * Give high novices First Aid and Trick Dead upon job changing [celest]
  629. * Remove some unnecessary checks in battle.c [celest]
  630. * Added some checks to prevent novices still allowed to attack when using
  631. Trick Dead [celest]
  632. * Added 'summon' script command. Syntax:
  633. summon <monster name>,<monster id>[,<event>];
  634. Example: 'summon "Poring", 1002, "OnPoringKilled"; 'will summon (note:
  635. not *spawn*) 1 poring that'll help its master for 1 minute,
  636. and activate the "OnPoringKilled" event when killed.
  637. 'summon "--ja--",-1;' will summon a random monster.
  638. * Added Wallex's fix for the wedding script functions [celest]
  639. * Added the below-mentioned alive packet to SQL's char and login [celest]
  640. * Enabled login server 'anti-freeze' by default as a temporary solution
  641. to char-login disconnection [celest]
  642. * The TXT char server was rejecting login's "i'm alive" packet and disconnecting
  643. it... fixed [celest]
  644. * Stall_time wasn't being read in login_athena at all (not by the login server,
  645. because the code didn't read it, nor by TXT map server, since its in the SQL
  646. inter_athena.conf reading)... so moved it to inter_athena.conf, and
  647. change sql_config_read in map.c to inter_config_read [celest]
  648. * Some tidying up of battle_get_def and _def2 [celest]
  649. * Added 'bDelayrate' and changed Phen card, Marduk Card and Berzebub Card's
  650. effects to use this instead of bCastrate (which was reducing casting time,
  651. not delay time) [celest]
  652. * Some tidying up of skill_castfix and skill_delayfix [celest]
  653. * Added Filougarou's fix for Bowling Bash causing it to only display damage,
  654. but doesn't do any - thanks! [celest]
  655. * Set delay_dependon_dex in battle_athena to 'no' by default [celest]
  656. Note: Just to clarify things, on official servers dex is not supposed to
  657. reduce skill delays, only Poem of Bragi and Berzebub card does!
  658. * Fixed typo in skill_delayfix - reduce delays only if delaynodex was *not* set,
  659. sorry ^^; [celest]
  660. 01/06
  661. * Fixed various memory corruptions causing crashes (SVN 925) [MouseJstr]
  662. * Fixed typo in src/map/map.c causing compile
  663. errors (SVN 924) [MouseJstr]
  664. * Removed the alive_timer mechanism entirly replaced with
  665. a stall detection mechanism that will disconnect a player
  666. who has not sent any data for a configurable
  667. (conf/login_athena.conf:stall_time) amount of time. The default
  668. is currently 60 seconds.
  669. The root cause of the disconnect error is that some NAT based
  670. routers are not dropping the TCP connection when the aliased
  671. machine goes offline abnormally. This means that we are seeing
  672. a stalled but perfectly valid TCP connection.
  673. (SVN 924) [MouseJstr]
  674. 01/05
  675. * Fixed some typos in map_versionscreen() [MC Cameri]
  676. * Removed loop freeing in map-server's do_final(), it was causing seg faults [MC Cameri]
  677. * Finished do_storage_final() in map-server's do_final(), it was there but doing nothing [MC Cameri]
  678. * Fixed Celest's typo making all vended items cost 0 zeny [Codemaster] [SVN 919]
  679. * If a vending item was priced at 0 it'll be auto changed to 1million [celest]
  680. * Fixed TXT logging - log_athena.conf reading was kind of messed up [celest]
  681. * Added a simplified version of Qamera's OnConnect: OnDisconnect: OnDeath:
  682. NPC events mod, (All credits go to him.) except adapted based on eA's current
  683. PCLoginEvent. (by davidsiaw) [celest]
  684. - Currently only 4 events have been added: PCDieEvent, PCKillEvent,
  685. PCLogoutEvent and PCLoginEvent
  686. - For notes and usage example check /npc/sample/PCLoginEvent.txt (by
  687. davidsiaw)
  688. - To enable them for a player in a script, do
  689. "set <name of event>, <0 or 1>;"
  690. (yes it's saved in a permanent character variable and auto read every time)
  691. - Simply put, if any of them is set to 1 the appropiate event will activate
  692. p.s - Scripters who are already using PcLoginEvent, you'll need to add a
  693. "set PCLoginEvent, 1;" now, sorry for the trouble.
  694. * Optimised PCLoginEvent activation a bit [celest]
  695. * Set 'droprate0item''s default to 'yes' so that items with 0 rate will never
  696. drop [celest]
  697. * Look at item type other than item ID as well to check whether it is a card
  698. in card-related script commands - better support for custom items [celest]
  699. * Reset all skill variables if the skill fails so certain skills can't be
  700. abused (such as Warp, thanks to Alex14 for pointing it out) [celest]
  701. * Added /mapflag/noreturn.txt for disabling butterfly wings (not fly wings)
  702. [celest]
  703. * Fixed skill_require_db reading somehow getting corrupted if weapons usable
  704. for the skill is more than 20, thus causing the skills to fail everytime
  705. [celest]
  706. * Fixed @killmonster crashing the server with summoned monsters, thanks to
  707. Alex14 [celest]
  708. * Added double_connection_system to battle_athena (not completed yet) [celest]
  709. 01/04
  710. * Fixed GM Command Logging (Not sure why TXT logging still isn't working properly :( ) [Codemaster] [SVN 907]
  711. * Fixed one of Lupus' additions to the item_db [Codemaster] [SVN 907]
  712. * Fixed Seismic Weapon Skill (it 100% didn't break target's weapon at 4 level of the skill) [Lupus]
  713. 01/02
  714. * Re-fixed map-server crashing if an empty line is in skill_castnodex.txt,
  715. thanks to Alex14 for pointing it out (SVN 899) [celest]
  716. * Modified breaking rates calculating - meltdown's chances is separated from
  717. self breaking chances (SVN 900) [celest]
  718. * Reduced MAX_SKILL_LEVEL to 10 to save a bit of memory and speed [celest]
  719. * Tidied up parts in skill_castfix a bit (SVN 895) [celest]
  720. * Fixed map-server crashing if an empty line was added in any of the skill-xx
  721. db files (SVN 895) [celest]
  722. * Updated skill_castnodex reading - An *optional* 3rd value can be added to set
  723. whether a skill's delay time can be affected by dex (SVN 895) [celest]
  724. Example: 46,1,1 - double strafe's delay is not affected by dex
  725. 46,1,0:0:0:0:1 - only level 5 double strafe is not affected by dex
  726. * More atempts at memory leak fixes [Codemaster] [SVN 890]
  727. * Updated weapon breaking rates, thanks to DracoRPG (SVN 891) [celest]
  728. * Optimized enchanting skills success rates calculation, thanks to Wallex
  729. (you were right! ^^; ) (SVN 891) [celest]
  730. * Modified Spiral Pierce and Breaker to type ranged (SVN 891) [celest]
  731. 01/01/05
  732. * Attempted to fix a memory leak [Codemaster] - tell me if it works XD (NPC/Mob memory leak in npc_parse_mob(...)) [SVN 886]
  733. * Added a char config that allows GMs that have a certain level or above to
  734. bypass the server's user limit [Codemaster]
  735. * Changed some create arrow outputs for new kRO 12/21/04 patch [Aria]
  736. * Fixed some respawn delays of MVP/Miniboss monsters. Redo Umbala/Niflheim fields, added missing mobs, corrected
  737. monsters quantity. In Niflheim fixed wrong Lord of Death monster ID. [Lupus]
  738. 12/30
  739. * Added ispartneron, getpartnerid, and warppartner script
  740. commands to properly support jawaii NPC's (SVN 880) [MouseJstr]
  741. * Moved supernovice guardian angel messages to msg_athena.conf [celest]
  742. 12/29
  743. * Fix account register wipe issue (SVN 868) [MouseJstr]
  744. * Double storage/lag exploit fixed (SVN 867) [MouseJstr]
  745. * Another -1 alive_timer fix (SVN 866) [MouseJstr]
  746. * Added @dmstart and @dmtick for debugging malloc tests [MouseJstr]
  747. * Fix some more compile errors on different platforms [MouseJstr]
  748. * Fixing a crash if you change the name of a pet you don't have (SVN 863) [MouseJstr]
  749. * Eliminated src/common/malloc.c when not needed [MouseJstr]
  750. * Some code cleanup in prep for new debugging malloc (SVN 861) [MouseJstr]
  751. * Updated Soul Breaker's damage calculation [celest]
  752. * Updated Meteor Assault's cast delay to be not affected by dex [celest]
  753. * Changed int_guild.c so it will calculate average guild level only if > 0
  754. members are found - prevent divide by zero crashes (why would an empty guild
  755. be requested to update its' member info in the first place?) [celest]
  756. * Added Shinomori's fixes for string copying in script.c [celest]
  757. * Removed @giveitem since #item it's the one that does this and added some of it's support to #item [MC Cameri]
  758. -#item <item_name> <item_count> <charname|all|everyone>
  759. * Uncommented out import in charcommand_athena.conf, there is
  760. need to have it commented (all the others ones are
  761. uncommented) [Ajarn]
  762. 12/28
  763. * When restarting the char-server, reset the online status
  764. of all characters and guild-members (SVN 849) [MouseJstr]
  765. * Fix double timer_delete caused by pc_alive_timer (SVN 848)
  766. [MouseJstr]
  767. * Fixed typo in npcs_athena.conf (mc_cameri verses mc_Cameri),
  768. thanks Mellow972 for pointing that out (SVN 845) [MouseJstr]
  769. * Reduced weapon breaking chance for Overthrust, thanks Draco - i almost
  770. forgot to add this update [celest]
  771. * added checks into the skill code to prevent proxy's/bots
  772. from crashing the server by using skillid's that
  773. are WAY out of range (SVN 841) [MouseJstr]
  774. * Fixed clif.c errors that prevent old clients from being used. [nsstrunks]
  775. * Fixed @jobchange to not default to upper (SVN 837) [MouseJstr]
  776. * Fixed a compile error in @mobsearch (SVN 836) [MouseJstr]
  777. 12/27
  778. * Updated 1206's packet fuctions in clif.c [celest]
  779. * Updated the new guild skills - cannot be reused within 5 minutes of
  780. activating it [celest]
  781. * Added @mobsearch, @cleanmap and @giveitem from jA [celest]
  782. * Fixed the guild issues (SVN 832) [MouseJstr]
  783. * Updated description for player_check_cloak_type [celest]
  784. * Increased skill range limitations in pc_no_footset [celest]
  785. * Added exp_calc_type - to alternate between 3 different versions for exp
  786. calculating [celest]
  787. * Reinitialized variable 'c' in map_readmap, it's supposed to have a start value. Ex. '-'. [MC Cameri]
  788. * Commented out dump_timer_heap() again... [MC Cameri]
  789. * Added include of string.h in malloc.c, was causing compile errors/warnings [MC Cameri]
  790. * Modified the map progress bar to reduce updates (SVN 829) [MouseJstr]
  791. * Updated map cache system from jA 1087 - change read_map_from_bitmap to 2 to
  792. enable zlib compression [celest]
  793. * don't delete alive_timers of -1 (SVN 823) [MouseJstr]
  794. * switched malloc,calloc,realloc to aMalloc, aCalloc, aRealloc
  795. so support the use of a garbage collector (SVN 821) [MouseJstr]
  796. * Removed some printf's from map-sql [MC Cameri]
  797. * Uncommented MSG_SQL, for _ShowMessage(), usage: ShowSQL() [MC Cameri]
  798. * Removed fixed bugs in dev/bugs.txt [MC Cameri]
  799. * Now I remember what I was smoking.. (SVN 819) [MouseJstr]
  800. * Fixed a bug in the guild_castle persistance code
  801. in char_sql. What was I smoking? (SVN: 816) [MouseJstr]
  802. * Corrected a bad error in itemdb_read_itemslottable [celest]
  803. * Corrected wrong logging of text in int_guild.c, thanks to Alex14 [celest]
  804. * Summoned monsters will not give exp and items [celest]
  805. * Added the 6 new Yuno fields to maps_athena.conf [celest]
  806. * Added some Freya's optimisations in clif_parse [celest]
  807. * Added clif_update_mobhp - monsters' hp viewing now updates properly [celest]
  808. * Set alive_timer to -1 when quitting, not 0, or the map server might assume
  809. its still active [celest]
  810. * Changed the *_override_grffile to no by default, because many were having issues with it [Ajarn]
  811. 12/26
  812. * Fixed ANOTHER pet crash (double free) (SVN: 804) [MouseJstr]
  813. * Added a proper #define for MAX_VENDING (SVN: 802) [MouseJstr]
  814. * Fixed crash associated with vending more then 12 items
  815. which walked on memory.. corrupting the pet data
  816. structure (SVN: 801) [MouseJstr]
  817. * Fixed a crash that resulted when disconnecting (SVN 800)
  818. the new client when the old client is still connected [MouseJstr]
  819. * Fixed some gcc 2.95 compile errors [MouseJstr]
  820. * Fixed some array bounds errors (SVN 799) [MouseJstr]
  821. * @mapexit (and do_final) now persist all data to the
  822. char server before exiting to eliminate storage/inventory
  823. inconsistancies.. [MouseJstr] (SVN 793)
  824. * Some cleanup of spiritball memory management [MouseJstr]
  825. * Dramatic performance work for exp updates to sql. Previously, [MouseJstr]
  826. when u killed a mob (in party share), it would cause the char_server to
  827. 1) Delete all guilds for all members of your party
  828. 2) Re-create all guilds for all members of your party with the new exp
  829. values.
  830. Now it just generates 2 sql statements per party member,
  831. 1) update the guild exp,
  832. 2) update the guild_member exp.
  833. src/common/socket.c src/common/socket.h src/char_sql/char.c
  834. src/char_sql/int_guild.c src/map/chrif.h src/map/pc.c
  835. src/map/map.c src/map/chrif.c
  836. * Disabled import charcommand_conf.txt by default [celest]
  837. * Added Bitmap File system from jA 1086 - automatically generates a cache
  838. from maps in the GRF to speed up loading. You can enable/disable it with
  839. read_map_from_bitmap in map_athena.conf. Note: AFM maps will override this
  840. cache [celest]
  841. * Added --run_once flag for the map server for testing purposes - closes itself
  842. when everything is done loading [celest]
  843. * Added some code for Moonlit Petals and Basilica [celest]
  844. 12/24
  845. * Added suggested fix when client disconnected [celest]
  846. - send "disconnected due to time gap" and close session when timed out
  847. - send "server still recognises last login" message and close existing
  848. session when client reconnects
  849. * Upped windwalk to lv 10 in skill_tree [MouseJstr]
  850. * Fixed a scripting crash (SVN: 781) [MouseJstr]
  851. * removed @changesex and @charchangesex until we can
  852. fix it properly [MouseJstr]
  853. * Fixed item-dup bug in storage and cart [MouseJstr]
  854. * @skilltree was looking outside of the particular class
  855. of the char to see if they could do a skill [MouseJstr]
  856. * Fixed a calc_skill_tree bug where too many skills were
  857. visible [MouseJstr]
  858. * Added Dev/GDB_reports.txt, take a look in it devs [Ajarn]
  859. * Corrected description for player_skill_nofootset and monster_skill_nofootset
  860. in battle_athena.conf [celest]
  861. * Added a special NPC Logging command 'logmes'. It works as mes"Hello world!";
  862. It is useful for such NPC as BANKS, CASINO, etc. To keep track of won money, etc.
  863. Check kafra_bank.txt 1.1 for example.
  864. Note: mes = otput into client's NPC window
  865. debugmes = output into map-server window
  866. logmes = output into lognpc log DB.
  867. 12/23
  868. * Fixed some bugs in the clif.c changes (SVN 766 to SVN 767) [MouseJstr]
  869. * Added ayo monsters to @disguise
  870. * Began updated clif.c to work with 1108 and 1206, tested and works [nsstrunks]
  871. * Fixed skills still being available after a job change [MouseJstr]
  872. * Changed pc_alive_timer to use map_id2sd - should be more accurate [celest]
  873. * Added jA 1084's fix to mob.c - check whether the player is still alive
  874. when calculating exp [celest]
  875. * Added clif_changed_dir, clif_adopt_process [celest]
  876. * updated Backstab to show the target's new direction [celest]
  877. * Corrected the file types of several files in the SVN tree to
  878. fix the newline issues [MouseJstr]
  879. * Updated mapflags (added missing payon_in03,ayo_in01,ayo_in02, que_god01, que_god02) [Lupus]
  880. * Updated Sacrifice : it's now self-activating, and lasts for 5 attacks [celest]
  881. * Fixed compile errors in party.c [celest]
  882. * Moved SC_EDP back to 114 [celest]
  883. * Added some of Shinomori's fixes [celest]
  884. * Added optimisation in intif_parse_WisMessage from Freya [celest]
  885. 12/22
  886. * Eliminated skill tree mapping since we have entries
  887. for all the classes in the skill_tree.txt files [MouseJstr]
  888. * Added finding_ore_rate to battle_athena.conf, thanks to orn [celest]
  889. * Changed how party exp is passed out to eliminate players
  890. current in a chat window or those who havn't moved or attacked
  891. in 2 minutes [MouseJstr]
  892. * Fixed a bug in resnametable from local directories,
  893. by fixing a bug in grfio_read causing memory corruptions [MouseJstr]
  894. * Rearranged how guild messages, gm messages, and party messages
  895. are moved back and forth between the inter server and the
  896. map server.. eliminating unneeded round trips to eliminate
  897. lag on a loaded char-server. [MouseJstr]
  898. src\char_sql\int_party.c src\char_sql\int_guild.c
  899. src\char_sql\inter.c src\map\atcommand.c src\map\guild.c
  900. src\map\intif.c src\map\party.c src\char\int_guild.c
  901. src\char\inter.c src\char\int_party.c
  902. * Reverted npc.c back to before jA 1081. This fixes warp portals missing and other npc bugs [Ajarn]
  903. * Added conditional SHOW_DEBUG_MSG for displaying ShowDebug()'s output, it was missing before [MC Cameri]
  904. * Added #zeny, removed @charzeny [MC Cameri]
  905. * Fixed reading itemslottable.txt causing cards to become unuseable [celest]
  906. * Added error message if file renaming in lock_fclose fails [celest]
  907. * Fixed frost diver not working ... my bad =p [celest]
  908. * Corrected typo in clif_hpmeter - md -> sd [celest]
  909. * Check if the player has been authentified by the char server before
  910. clearing any timers in map_quit [celest]
  911. * Added eventtimercount and timerskill_count - check these before clearing
  912. or deleting timers [celest]
  913. * Added sc_count check in skill_stop_dancing [celest]
  914. * Translated the japanese part in battle_athena.conf [celest]
  915. * Added ignore the new skill delays when chaining monk combos [celest]
  916. 12/21
  917. * Since conf/maps_list.txt was removed, added conf/maps_athena.conf [Ajarn]
  918. * Fixed a few NPCs that were giving curly errors. It seems to be caused by a bug that the NPCs' last line isn't read or something [Codemaster]
  919. * Fixed a tiny compile warning in npc.c [Codemaster]
  920. * Allowed the NPCs without proper curly brackets to still load, but give an error still [Codemaster]
  921. * Added variable 'current_file' which tells the filename of the script while loading npcs [MC Cameri]
  922. -the variable its set in do_init_npc() or something like that, so you can only access it
  923. after the use of do_init_npc().
  924. * Fixed the display of a warning saying that a right curly brace was missing [MC Cameri]
  925. * Removed @charwarp and @rura+ and added #warp, #rura, #rura+ [MC Cameri]
  926. * Removed conf/npcs_list.txt, and placed it in npc/npcs_athena.conf [MC Cameri]
  927. * Moved some code in pc_break_equip that was causing compile errors [celest]
  928. * guild skills vanished due to incorrect placement of a
  929. check for quest skills in the calc_skilltree code [MouseJstr]
  930. * Fixed skill LK_HEADCRUSH, LK_JOINTBEAT to work on both on
  931. and off peco's for lord knights (fixed typo in
  932. skill_tree.txt) [MouseJstr]
  933. * removed LK_SPIRALPIERCE from lord knights not on peco's[MouseJstr]
  934. * Moved the code from map_quit to pc_makesavestatus that
  935. "adjusts" the skill tree before persisting to the character
  936. server [MouseJstr]
  937. * made pc_makesavestatus() properly persist skills that are
  938. unavailable but not forgotten (example, spiral pierce). You can now
  939. get spiral pierce, get off your peco, log out, log in, and
  940. get back on your peco and still have not lost the skill
  941. points you invested. This also solves the problems of when
  942. the skill tree gets changed, players loosing the points. [MouseJstr]
  943. * Made pc_resetskill() properly reset skills that are
  944. currently not visible due to skilltree changes [MouseJstr]
  945. * Finished updating most of the map-server to 1082... i'll leave the more
  946. technical ones for the other devs ^^; [celest]
  947. * Added other new battle_athena options from jA 1082 ... descriptions not
  948. translated yet [celest]
  949. * Removed my own additions for skill delays using aspd and added jA's code
  950. (-removed-) [celest]
  951. * Adapted skill_range_leniency to jA's code - should be more stable [celest]
  952. * Fixed drop rates only limited to multiples of 100's - thanks to jathena
  953. for pointing it out [celest]
  954. * Added missing code for castle_defense_rate [celest]
  955. * Removed pc_undead_nofreeze - no code for it [celest]
  956. * Updated unrefineable items table - thanks to jathena [celest]
  957. * Added 3 new script commands: [celest]
  958. - skilleffect : shows a skill effect on the player
  959. - doskill/skilluseid (originally by Qamera) : casts a skill on the player
  960. - skillusepos : casts a skill on a position
  961. * Added SC_SpeedUp0 [celest]
  962. * Merged itemdb_read for SQL and TXT [celest]
  963. * Moved itemdb_read_itemslottable in itemdb.c for better readability [celest]
  964. * Removed itemdb_read_cardillustnametable limited to TXT only [celest]
  965. * Added reading itemslotcounttable.txt from the GRF to auto set number of slots
  966. per item [celest]
  967. * Added a display message when reading itemslottable from the GRF [celest]
  968. * Added options in battle_athena.conf to enable/disable reading the GRF for
  969. indoorrswtable.txt, leveluseskillspamount.txt, num2cardillustnametable.txt,
  970. itemslottable.txt & itemslotcounttable.txt [celest]
  971. * Removed conf/npcs_list.txt, and placed it in npc/npcs_athena.conf
  972. 12/20
  973. * Fixed npc_parse_mob with large/tiny monsters causing
  974. memory corruption [MouseJstr]
  975. * Fixed a crash in char.c with new chars [MouseJstr]
  976. * Updated npcs_list.txt [Ajarn]
  977. * If last_pos.x or .y == 0, set to start point [MouseJstr]
  978. * Fixed map loading. If a map was not found, it would remove the next map in the list [Ajarn]
  979. * Moddified some *_athena.conf's (my typos and some inncorect default values) [Ajarn]
  980. * Added Valaris' double connection bug fix (imalive watchdog) [Valaris]
  981. * Fixed map-server exiting when it came across a bad NPC file [Codemaster]
  982. * Updated Valaris' large/tiny monsters - of course, he told us what he did wrong and how to fix it :) [Codemaster & Valaris]
  983. * Updated makefiles to new strlib locations [Codemaster]
  984. * Moved strlib.h and strlib.c into the common directory [Codemaster]
  985. * Updated a bit of jA 1081 - it's not completly updated yet!!! [Codemaster]
  986. * Fixed some gcc 2.95 problems [MouseJstr]
  987. * Speedups in socket code [MouseJstr]
  988. * made samesex weddings work and give out correct ring [MouseJstr]
  989. * CFixed wedding NPC halting after server reboot/crash (shadowlady put in comments but didn't add to code) [Aria]
  990. * Added reading leveluseskillspamount.txt from the GRF to auto set sp used for each skill [celest]
  991. * Added reading indoorrswtable.txt from the GRF to auto set 'indoor' mapflags
  992. [celest]
  993. * Added check in grfio.c to prevent crashing if a file wasn't found [celest]
  994. * Rolling GUILDCACHE and FASTCHAR into main branches/stable
  995. tree [MouseJstr]
  996. * Changed max_paramter to an unsigned int so that you can have over 255 as your max stat [Codemaster]
  997. * Experimental: Reverting a change on deleting any skill units when we're
  998. logging off - might reduce the 'delete_timer' errors [celest]
  999. * Added check whether an item is allowed to be dropped, for example wedding
  1000. rings [celest]
  1001. * Updated Acid Terror - should never miss [celest]
  1002. * updated Sword Reject - should display reflected damage properly now [celest]
  1003. * Updated Double Strafe - should only work with bows [celest]
  1004. * Replaced checking whether items can be refined or not with a new function [celest]
  1005. * Added Gengar's fix for npctalk outputting to chat [celest]
  1006. * Allowed some values in script_config to be customised in script_athena.conf [celest]
  1007. 12/19
  1008. * Added -DFASTCHAR to char_sql for testing performance work
  1009. before I merge it into the main running code [MouseJstr]
  1010. * Added ShowDebug(), Debug(), DisplayDebug(), printDebug(), CL_DEBUG, MSG_DEBUG to _ShowMessage() [MC Cameri]
  1011. * Replaced many \033[x;xm with their corresponding CL_xx constants [MC Cameri]
  1012. * Separated NPCs and Maps from map_athena.conf into npcs_list.txt and maps_list.conf [MC Cameri]
  1013. * Modified all the *_athena.conf's to have the import command enabled by default [Ajarn]
  1014. * Added charcommand_conf.txt and log_conf.txt in conf-tmpl/import [Ajarn]
  1015. * Fixed import command for log_athena.conf file [Ajarn]
  1016. * Updated charcommand.conf [nsstrunks]
  1017. 12/18
  1018. * Added some of my info to Dev/quotes.txt, not done yet... [Ajarn]
  1019. * Added some ideas to Dev/Ideas_Suggestions.txt [Ajarn]
  1020. * Fixed import command in inter_athena.conf file [Ajarn]
  1021. * Fixed a few command compiling problems for TXT [Codemaster]
  1022. * Modified the main.sql to add the friend0 column; also added the upgrade_1.0.0.sql file [Codemaster]
  1023. * Introduced StringBuf into utils for use in building larger queries [MouseJstr]
  1024. * tested GUILD_CACHE (reducing guild related sql traffic to 30%) in
  1025. prep for unleasing it on the sql using public [MouseJstr]
  1026. * Fixed some SQL queries crashing char server [davidsiaw]
  1027. * Added several PID GM commands, thanks to Dino9021 [nsstrunks]
  1028. * Storage was merging items incorrectly [Mousejstr]
  1029. * eliminated a uninitialized var when using afm maps [MouseJstr]
  1030. * Added concept of dirty storage to reduce saves/load
  1031. to the char server (do a clean build!) [MouseJstr]
  1032. * Eliminated storage_storageopen2 as unused [MouseJstr]
  1033. * Switched to account2storage2() whenever possible
  1034. to eliminate the possibility of saving empty storage
  1035. back to the character server (storage wipes) [MouseJstr]
  1036. * Made it save storage as soon as you close the storage
  1037. window to reduce possibility of loss/abuse [MouseJstr]
  1038. 12/17
  1039. * Added #item [MC Cameri]
  1040. * Added #storagelist, removed @charstoragelist [MC Cameri]
  1041. * db.c: Fixed probs with OnInit, OnTime, and etc NPC probs
  1042. Just reverted it back. [Lupus]
  1043. * Fixed warning message in db.c line 445 [MC Cameri]
  1044. * Added #effect, removed @chareffect [MC Cameri]
  1045. * Reverted a change in map.c causing problems, sorry >.< [celest]
  1046. * Updated Sphere Mine - it'll now move in the opposite direction if
  1047. being hit by its master [celest]
  1048. * Updated Wind Walk [celest]
  1049. * Fixed skill #301 causing crashes [MouseJstr]
  1050. * Fixed documentation error on gm_skills_unconditionl [MouseJstr]
  1051. * added @grind test command.. only for testing [MouseJstr]
  1052. * Added clearweather to the atcommand configuration file. [nsstrunks]
  1053. 12/16
  1054. * Added a fix for AFM loading, thanks to Pete [celest]
  1055. * Updated maximum levels for supernovice to 99 [celest]
  1056. * Updated supernovice jobexp table - should be same from 50 onwards [celest]
  1057. * Corrected maximum job level checking in @joblvup and @charjob [celest]
  1058. * Added the new spell scrolls, thanks to Landarma [celest]
  1059. * Corrected a few skills, thanks to orn [celest]
  1060. * Corrected Extremity Fist to not require Explosion Spirits when being used
  1061. right after using Combo Finish or Dilemma [celest]
  1062. * Added instant cast weapon skills rely on attack speed as cast delays, not
  1063. on dex [celest]
  1064. * Fixed mob_ghostring_fix not working [celest]
  1065. * Changed default value for mob_ghostring_fix to 'yes' [celest]
  1066. * Added #itemlist, removed @charitemlist [MC Cameri]
  1067. * Changed @job and #job so that when it's used it unequips all the items, to prevent sprite errors [MC Cameri]
  1068. * Fixed a misuse of mysql_config (thanks Daegalus for
  1069. creating a reproducable environment for me) [MouseJstr]
  1070. * Fixed compile time errors for gcc 2.95 [MouseJstr]
  1071. * Updated Forging and Potion making formulas by DracoRPG [celest]
  1072. * Changes to the guild skills
  1073. - Dropped using sc_data and use flag values instead
  1074. - Changed moving guild skill units to once every 'move request' only instead
  1075. of every movement - should reduce server load abit
  1076. - Corrected crash when checking its skill requirements
  1077. * Initialise 'canregen' when logging into map - forgot to add this earlier,
  1078. sorry ^^; [celest]
  1079. 12/15
  1080. * Fixed more compile errors gcc 2.95 [MouseJstr]
  1081. * Removed log files from svn... they will be created when
  1082. needed [MouseJstr]
  1083. * Removed unused var in src/map/map.c:107 [MouseJstr]
  1084. * fix compile error in text converters [MouseJstr]
  1085. * Skill Updates [celest]
  1086. - Corrected traps to last longer in GvG
  1087. - Some minor changes to Hiding, Cloaking and Chasewalk to prevent it from
  1088. not working if sc_data is null
  1089. - Corrected an error in Cannibalize
  1090. - Updated Marionette Control to check its range from the partner
  1091. - Updated Berserk to disable hp and sp regen for 5 minutes after the skill
  1092. * Changed the weather gm commands to be able to toggle on and off. For example,
  1093. use @snow once to turn it on, reuse it again to turn it off. [celest]
  1094. * Added Jawaii and Ayothaya to @go list [celest]
  1095. * Changed the default values for ranged, magic and misc damage rate in
  1096. battle_athena to 60, 50 and 60 [celest]
  1097. * Removed redundant 'berserkdamagetick' from map_session_data [celest]
  1098. * Added changes to map.h according to Shinomori [celest]
  1099. 12/14
  1100. * Changed "Map-server can't connect to char-server" message to reduce output spamming and set it to
  1101. display only once [MC Cameri]
  1102. * Added a busy animation for npc loading [MC Cameri]
  1103. * Replaced the way map loading was displayed into a progress-like way [MC Cameri]
  1104. * Fixed some typos in _ShowMessage() [MC Cameri]
  1105. * Replaced lots of more printf's in map-server with _ShowMessage() [MC Cameri]
  1106. * Added constants for console colors in showmsg.h [MC Cameri]
  1107. * src/char_sql/int_guild.c:56 - t_mes2 was not big enough causing
  1108. stack overrun's, corruptions, and crashes [MouseJstr]
  1109. * common/mmo.h: changed base_level and job_level to unsigned int to increase max levels [Codemaster]
  1110. * char/char.c: added a NULL check for the file in parse_friend_txt [Codemaster]
  1111. * map/atcommand.c/.h: added @clearweather (thanks to Dexity) [Codemaster]
  1112. * map/charcommand.c/.h: added #spiritball [Codemaster]
  1113. * map/mob.c: fixed a compiler warning (ln was an int and was supposed to be an unsigned long int) [Codemaster]
  1114. * Added nullpo_retb to nullpo.c - does a break; if null [celest]
  1115. * Replaced some parts in skill.c with nullpo checks [celest]
  1116. * Corrected some typos - penaly -> penalty [celest]
  1117. * Skill Updates [celest]
  1118. - Most of 12/14's Sakray patch
  1119. * The SKILL_MAX_DB (yes, a different #define from the one below)
  1120. was not large enough for current skills causing memory
  1121. corruptions and crashes [MouseJstr]
  1122. * Fixed how socket handles EAGIN errors (retry instead of
  1123. disconnecting) [MouseJstr]
  1124. 12/13
  1125. * Skill Updates [celest]
  1126. - Added the new 'Throw Tomahawk' skill (Requires Sakexe1129 or newer)
  1127. - Added some new monster skills - but still not complete.
  1128. - Adjusted Palm Strike, Tiger Fist and Chain Crush based on 12/14's patch
  1129. * Removed redundant 'sg_count' for map_session_data and mob_data [celest]
  1130. * Save both persons' data after trading in case a crash causes them to
  1131. rollback - fix by Freya [celest]
  1132. * Removed 'type' paramater from pc_unequipitem to use 'flag' instead[celest]
  1133. * Moved unequip checking code from clif.c to pc.c [celest]
  1134. * Replaced many printf's in map-server with _ShowMessage(). [MC Cameri]
  1135. * Skill timers for skills with id's higher then 450 were
  1136. corrupting memory [MouseJstr]
  1137. * Increased max skills to 650 from 450 fixing MANY crashes [MouseJstr]
  1138. * Creating Guild events were reading beyond supplied guild names ,
  1139. causing crashes [MouseJstr]
  1140. * trades were derefing -2 into the inventory table sometimes [MouseJstr]
  1141. * Not having a arrow in your inventory but having a bow
  1142. could cause it to set sd->status.inventory[-1].equip=32768
  1143. resulting in a memory corruption [MouseJstr]
  1144. * local broadcasts of messages larger then 64 bytes were
  1145. corrupting the stack, causing crashes [MouseJstr]
  1146. * mob eventnames were reading beyond source point, risking
  1147. going over page boundries, causing crashes [MouseJstr]
  1148. * Internal MAIL system: moved all strings to msg_athena.conf [Lupus]
  1149. 12/12
  1150. * Made guild skills to check for skill levels first when casting [celest]
  1151. 12/11
  1152. * Modified arrow checking in skill.c [celest]
  1153. * Corrected Cart Revolution damage calculation [celest]
  1154. 12/10
  1155. * Fixed players unable to move in AFM maps [celest]
  1156. * Added error message if a player's last map couldn't be found [celest]
  1157. * Moved AFM map check to map_mapname2mapid [celest]
  1158. * Added USE_AFM and USE_AF2 to be used later [celest]
  1159. * Modified sc_data check in pc_damage [celest]
  1160. 12/9
  1161. * Moved a map_freeblock_unlock() around to eliminate a
  1162. crash [MouseJstr]
  1163. * Fixed how players are cleaned up when they disconnected
  1164. during authentication [MouseJstr]
  1165. * Adjusted some messages in @marry [MouseJstr]
  1166. * Skill Updates [celest]
  1167. - Fixed Auto Spell not working
  1168. - Fixed skill level check causing Baphomet card not to work at all (possibly
  1169. other problems too)
  1170. - Added some new monster skills based on jA mod 1077
  1171. * Changed @job to accept text job names - For example: @job wizard, @job high
  1172. priestess, @job super baby [celest]
  1173. * Added sc_data check for pc_damage [celest]
  1174. 12/8
  1175. * Fixed @rings [MouseJstr]
  1176. * Added @marry, @divorce, and @rings [MouseJstr]
  1177. * fixed @revive [MouseJstr]
  1178. * Added option to turn off login server logging [celest]
  1179. * Moved char server starting logging to after we've read the configuration
  1180. file first [celest]
  1181. * Fixed crash with supernovices with 100% base exp [celest]
  1182. * Updated the readme a little. [Mass Zero]
  1183. 12/7
  1184. * Added GUILDCACHE #define to int_guild.c for testing performance
  1185. effects [MouseJstr]
  1186. * Skill Updates [celest]
  1187. - Arrow Shower, Double Strafing, Charge Arrow, Throw Arrow, Sharp Shooting,
  1188. Arrow Vulcan, and Musical Strike now take arrows when used
  1189. - Level 6-10 Stone Curse will not consume a red gem now when it fails
  1190. - Players should be able to use items when they're stoned but not yet
  1191. completely petrified
  1192. - Corrected Triple Blow to work with bows (they actually do ^^)
  1193. * Added 'guildgetexp' script command [celest]
  1194. * Added bLongAtkRate item effect [celest]
  1195. * Implemented Confusion (50%) - still need more info on how monsters act
  1196. when they're confused [celest]
  1197. * Added 'Guardian Angel' code for supernovices [celest]
  1198. 12/6
  1199. * Fixed file props for new npcs [MouseJstr]
  1200. * Fixed weddings.txt as per Fress_Boy [MouseJstr]
  1201. * Added a case_sensitive to login [MouseJstr]
  1202. * Fixed follow crashing server when gm dies [MouseJstr]
  1203. * Fixed global message not working on txt [Wizputer]
  1204. * fixed a server crash in mobinsite [MouseJstr]
  1205. * fixed a server crash in party sharing exp [MouseJstr]
  1206. * fixed a server crash in BS_FINDINGORE [MouseJstr]
  1207. * Updated Chase Walk [celest]
  1208. * Added 'checkoption1' and 'checkoption2' script functions - Refer to
  1209. /npc/sample/npc_testchkoption.txt for similiar examples [celest]
  1210. * Updated maximum level for Guild Skills [celest]
  1211. 12/5
  1212. * Fixed another crash sending updates to disconnected
  1213. clients [MouseJstr]
  1214. * Fixed the range_check again to stop it from crashing
  1215. servers [MouseJstr]
  1216. * removed stubbed out unfinished atcommands as per Cameri [MouseJstr]
  1217. * Fixed nullpo's for gcc 2.95 [MouseJstr]
  1218. * Fixed bug in which login-txt was crashing in do_final() due to some free's [MC Cameri]
  1219. * Added nullpo's to all atcommand's functions, phew... [MC Cameri]
  1220. Note: I point out that MouseJstr has added some @commands that start with char which
  1221. havent been finished, they are just there but don't do anything.
  1222. * Removed mapbug.txt and corresponding function in map.c (realized it's pointless) [MC Cameri]
  1223. * Added allow_atcommand_when_mute - Change this to set whether muted players
  1224. can use gm commands [celest]
  1225. * Temporarily leaving the changing guild emblems requiring Glory of Guild
  1226. feature only for TXT until the SQL char-server supports guild skills fully[celest]
  1227. * Modified battle_range again to check if src's type is a player first [celest]
  1228. * Corrected typo in battle_range [celest]
  1229. * Fixed a crash where party chats can be sent to a
  1230. partially disconnected player [MouseJstr]
  1231. 12/4
  1232. * Fixed a crash in clif_send when player disconnects but player
  1233. object is not fully removed from map [MouseJstr]
  1234. * Fixed a crash associated with NPC_BARRIER [MouseJstr]
  1235. * Renamed flush_fifos_at_exit to flush_fifos [MouseJstr]
  1236. * call check_connect_char_server() on char_server disconnect [MouseJstr]
  1237. * stale skill groups were crashing server [MouseJstr]
  1238. * Fixed crash in SC_LULLABY [MouseJstr]
  1239. 12/3
  1240. * hacked the frozen mob issue [MouseJstr]
  1241. * Fixed a battle_range crash [MouseJstr]
  1242. * Updated Stone Curse, Soul Drain, Auto Berserk [celest]
  1243. * Added a fix for MVP exp being multiplied twice by Gengar
  1244. * Modified battle_range to check for sd first [celest]
  1245. 12/2
  1246. * Fixed double login feature, resets online users when map connects to char [Wizputer]
  1247. * Changed all LOGS inserts to INSERT DELAYED (MySQL has this feature and cache unimportant queries, then
  1248. executes them at once together = 10x faster) [Lupus]
  1249. * Skill Updates [celest]
  1250. - Modified Weapon Refine - should only +1 every time.
  1251. - Updated Berserk, Chase Walk, Slim Pitcher
  1252. - Added skill_range_leniency : In some cases when moving to cast a skill the
  1253. exe will a send a UseSkill packet before the server has moved us to the
  1254. correct position, causing it to fail. Leaving this at 1 should be enough.
  1255. - Fixed a bug that was causing monsters not to move towards the target
  1256. * Added check for clif.c in case the server didn't realise we've died [celest]
  1257. * Added a fix for @npcmove by JohnC and Fredzilla
  1258. * Added motd_type : Set this to 1 if your clients have langtype problems and
  1259. can't display the motd properly[celest]
  1260. * Edited atcommand.c to fix compile warnings [celest]
  1261. 12/1
  1262. - Make it build against gcc 2.95 [MouseJstr]
  1263. - Changed #define MAX_PET_DB to 300, it's easier for people adding new pets like this. [Nas]
  1264. * Skill Updates [celest]
  1265. - Updated Poison React
  1266. - Added Soul Change, Soul Burn
  1267. - Added a somewhat crude timer for Venom splasher
  1268. - Added a fix for Guild Skills causing crashes by Sara, thanks!
  1269. 11/30
  1270. * Fixed client crash when disguised characters die [celest]
  1271. * Skill Updates [celest]
  1272. - Fixed and finished Guild Skills (~90%)
  1273. - Fixed Meltdown and Overthrust used together breaking your own weapon
  1274. - Updated Weapon Repair :- uses different materials depending on repaired item
  1275. (Iron Ore/Iron/Steel/Rough Oridecon)
  1276. - Fixed sp recovery problem, thanks to OutSider for pointing it out
  1277. - Updated Tiger Knuckle Fist stun time
  1278. - Added cooldown time for Emergency Recall
  1279. - Fixed typo in skill.c, thanks to Toster
  1280. 11/29
  1281. * Fixed crash in src/char_sql/char.c when setting chars offline [MouseJstr]
  1282. * Added mapbug.txt which is displayed in map-server, displays
  1283. the last bug or w/e fixed for the map-server [MC Cameri]
  1284. -You may change it whenever you want
  1285. -It will only show if mapbug.txt exists
  1286. -This file must not be included in releases
  1287. * Made some changes in map_versionscreen() to make it easier to
  1288. read/change in the source [MC Cameri]
  1289. * Fixed a typo in _ShowMessage() removing the message caption. [MC Cameri]
  1290. * Fixed typo in map_helpscreen() showing -h instead of --?. [MC Cameri]
  1291. * Added more sc_data checks in skill.c and pc.c [celest]
  1292. * Updated Quagmire, Enchant Deadly Poison, Fog Wall [celest]
  1293. 11/28
  1294. * Fixed a crash in login_sql/login.c [MouseJstr]
  1295. * made common/socket.c more crash resistant [MouseJstr]
  1296. * Added flush_fifos to socket.c so that we can make sure everything
  1297. has been sent before we shut the process down [MouseJstr]
  1298. * Modified src/char_sql/char.c to flush fifos on exit [MouseJstr]
  1299. * Fixed a crash in src/map/map.c shutdown where it would
  1300. use the char_fd session after it was alrady cleaned up [MouseJstr]
  1301. * removed conf-templ/atcommand_athena.conf.orig [MouseJstr]
  1302. * removed a USE from sql-files/main.sql that should not be there [MouseJstr]
  1303. * Changed MSG_INFO color to bright white, since bright blue want so bright... [MC Cameri]
  1304. * Made Map Removed: %d string be displayed only if there were maps removed. [MC Cameri]
  1305. * Fixed online system for char not sending players left "online" to login when restarting [Wizputer]
  1306. * Fixed damage formula of Cart revolution: 150% +1% per 80ea [Lupus]
  1307. * Removed 2x Chance of Equipment Breaking during CRITICAL attacks [Lupus]
  1308. * Fix some file props [MouseJstr]
  1309. * Added map_versionscreen(), displayed when --version flag is passed on command-line. [MC Cameri]
  1310. * Finished map_helpscreen(), displayed when --help flag passed on command-line. [MC Cameri]
  1311. * Changed Guilds Extention Skill to +6 people per level. [Lupus]
  1312. (tested it for 2 weeks! or a big server)
  1313. * Added a fix for gettimeofday() for WIN32 [Codemaster]
  1314. * skill Updates:
  1315. - Updated Slow Poison, modified checks for skill_unit_onplace abit. [celest]
  1316. - Updated Finger Offensive, thanks to orn [celest]
  1317. * Updated packet_ver_flag's default value, thanks to iscandium [celest]
  1318. * Added warning if motd.txt was not found [celest]
  1319. (Turn on error_log in battle_athena.conf to enable it)
  1320. 11/27
  1321. * Fixed a few map crashes when char-server crashes [Wizputer]
  1322. * Added fix of 0x2aff and 0x2af8 flooding [Wizputer - thanks Toster]
  1323. * Fixed Map crash when person uses global message hacks [Wizputer]
  1324. * Fixed online system, online column works and prevent double login at the login server [Wizputer]
  1325. * Fixed some compile time errors associated with showmsg [MouseJstr]
  1326. * Added get_svn_revision() in core.c [MC Cameri]
  1327. -Only if you have the file .svn\entries, it will show the revision # at runtime.
  1328. 11/26
  1329. * Fixed Abrakadabra (2 minor bugs of consumed items - they were ignored if placed in 0 pos) [Lupus]
  1330. * Finished Full Strip, Weapon Refine, Slim Pitcher and Full Protection. [celest]
  1331. * Added skill_nocast_db.txt. Use it to set which skills cannot be used in
  1332. which conditions [celest]
  1333. 11/25
  1334. * Added @skilltree to help GM's answer skill tree questions [MouseJstr]
  1335. * Update Spider Web; I believe you cannot use it on yourself now. [Codemaster]
  1336. * Added Ore Discovery, and base code for Slim Pitcher and Preservation [celest]
  1337. 11/24
  1338. * @charreset #reset [MC Cameri]
  1339. * @charstatsall is now #statsall [MC Cameri]
  1340. * @charsave is now #save [MC Cameri]
  1341. * Updated most of jA's 1067; battle.c and skill.c might need more updates! [Codemaster]
  1342. * Fixed char-txt crashing when closing, Codemaster free()'s. [MC Cameri]
  1343. * Skill Updates: [celest]
  1344. - Updated guild skills (60%)
  1345. - updated Weapon Repair and Aura Blade by DracoRPG
  1346. - modified Weapon Repair to use Identify's packet, should show a list of
  1347. repairable items now
  1348. 11/23
  1349. * Fixed script loading small/large monsters. [Valaris]
  1350. * @charoption is now #option [MC Cameri]
  1351. * @charpetfriendly is now #petfriendly [MC Cameri]
  1352. * @charstats is now #stats [MC Cameri]
  1353. * Skill Updates: [celest]
  1354. - Added some code for the new guild skills (50%) and Moonlit Petals (5%)
  1355. - Notes to other devs: Guild skills with id's 10000-10014 will be stored in
  1356. skill_db[500-514]
  1357. - Corrected Hilt Binding
  1358. - Corrected Assassin Cross' dual wield
  1359. - Changed player_cloak_check_type to yes by default and edited description
  1360. since it's already fully implemented.
  1361. - Added a bit more restrictions to Call Partner and Emergency Recall and
  1362. updated mapflag for sec_pri.gat
  1363. - Added pc_calcspeed and updated Cloaking so it won't need to recalculate
  1364. the player's entire status everytime there is movement.
  1365. 11/22
  1366. * (TXT)Stripped some code off read_gm_accounts() and made with it addGM() [MC Cameri]
  1367. -Usage: addGM(account_id,level);
  1368. * (TXT)Changed GM_accounts.txt to meet new standards. [MC Cameri]
  1369. * (TXT)Enabled the use of id ranges in GM_accounts.txt [MC Cameri]
  1370. * Added a few free()'s so that I am sure it freed the allocated memory (char & login) [Codemaster]
  1371. * Changed monsters_ignore_gm option to a level value. [Valaris]
  1372. (accounts greater than or equal to this setting won't be attacked by aggressives.)
  1373. * Fixed mapflag #s and constants for setmapflag and remove mapflag. [Valaris]
  1374. * Added skill names for kRO 11/23's new skills [celest]
  1375. - Preserve, Full Strip, Weapon Refine, Slim Pitcher, Full Chemical Protection,
  1376. (Throw) Tomahawk
  1377. * timer.c static int timer_heap_max=0; //fix by Shinomori from eA forums
  1378. ititialize static var!!!
  1379. * Added the old effect list # into effect_list.txt of spira's. [shadow]
  1380. * Added new flag (#3) to clif_specialeffect [MC Cameri]
  1381. * @doom,@die,@doommap now display the Dark Cross effect on you. [MC Cameri]
  1382. 11/21
  1383. * Display IP when wdata is expanded [Wizputer]
  1384. * Added bClassChange,%; Has random chance to turn monster into another monster. [Valaris]
  1385. * Re-Fixed Trade/Vending exploit [Lupus]
  1386. * Fixed @whozeny. [Valaris]
  1387. * Added rest of mapflags to const.txt. [Valaris]
  1388. * Closed AFM files after reading, this fixed the improper char-server session #. [Valaris]
  1389. * Skill updates: [Celest]
  1390. - Updated Basilica, Sharp Shooting, Berserk, Meditatio (Thanks to DracoRPG!)
  1391. - Fixed a typo with Blade Stop that was causing crashes, sorry. ^^;
  1392. - Reverted changes to Cloaking, ours is already more updated! ^_^
  1393. - Added temporary code for guild skills to stop crashing
  1394. * @alive, @raisemap, @raise, @revive now display the resurrection skill animation [MC Cameri]
  1395. * @charpetrename(AtCommand) is now #petrename(CharCommand) [MC Cameri]
  1396. * @charjob/(AtCommand) is now #jobchange(CharCommand) [MC Cameri]
  1397. * Removed japanese interserver packets, should fix various problems (jumpto, where, charposreq). [Valaris]
  1398. * Added Yor's trade exploit bug fix. Added 2 skills bugs in the bugs.txt [Lupus]
  1399. * Added charcommand.c/.h for the following reasons: [MC Cameri]
  1400. - Less congestion in atcommand.c
  1401. - Port commands that start with @char to #, example:
  1402. ~ @charoption will now be #option
  1403. 11/20
  1404. * Added str_lower() function to atcommand.c (from OA). [MC Cameri]
  1405. * Simplified @charchangesex to @charchangesex [player], your sex is changed to the opposite one [MC Cameri]
  1406. * Added @refresh, which is like a @jumpto <<yourself>>. [MC Cameri]
  1407. * Added @petid <pet name> to find pet names, useful when you dont know which pets have eggs. [MC Cameri]
  1408. * Added an effect_list in docs/ for descriptions, free to add onto that later. [spira]
  1409. - Attempt to find new skill effects.
  1410. * Added "nogo" mapflag to prevent the use of @go on a specified map. [Valaris]
  1411. * Fixed small/big monster spawning crashing (mixed up the merge). [Valaris]
  1412. * Fixed crash with upgrading TXT and having more than 256 accounts. [Valaris]
  1413. * TXT upgrades will convert broken flag to attribute column. [Valaris]
  1414. * Prevent use of emotion packet to display red mute emote. [Valaris]
  1415. * Initialized "day" variable in npc.c. [Valaris]
  1416. * Added @whozeny. Shows list of top 50 online players and their zeny sorted from highest to lowest. [Valaris]
  1417. * Added @happyhappyjoyjoy. Makes all players on server do a random emote. [Valaris]
  1418. * Removed -funroll-loops from compile, thanks to kashy for pointing out the problems caused by this. (Do not re-add!) [Valaris]
  1419. * Added check for max vending_max_value when reading config [kobra_k88]
  1420. * Skill updates [celest]
  1421. - Napalm vulcan, Enchant Deadly Poison, Slow Poison (based on jAthena 1066)
  1422. - Create Deadly Poison, thanks to DracoRPG!
  1423. - Added effect for Meteor Assault
  1424. * Added night_darkness_level to battle_athena.conf. [celest]
  1425. Use this to set 'how dark' it'll become during night time. Use 0 for default,
  1426. or between 1-10. (Yeah, i know lots of people hated the original night! xP)
  1427. Warning: It may cause errors with old exe's!
  1428. 11/19
  1429. * Re-added check for empty bottle when using aqua benedicta. [Valaris]
  1430. * Fixed skills not showing after using @allskill [celest]
  1431. 11/18
  1432. * Added a line to @unmute, added @mute. [celest]
  1433. Usage: @mute <time in minutes> <character name>
  1434. * Added save_flag for skill_status_change_start [celest]
  1435. * Fixed muting not being saved when you quit/change characters/log off [celest]
  1436. * *Hopefully* fixed the skill tree problem where you have to use 49 skill
  1437. points first before 2nd job skills will show... please report any bugs found
  1438. with it, thank you. [celest]
  1439. * Added flag to pc_unequipitem (thanks to DracoRPG for suggestion) [celest]
  1440. * Skill updates [celest]
  1441. - Updated Cloaking (thanks to orn), Endure
  1442. - Pneuma (thanks to DracoRPG)
  1443. - Changed sc_ id for Basilica
  1444. - Cancel Basilica (100%) when caster moves or uses another skill
  1445. - Updated Poison React (90%), Endure
  1446. - Added SC_BLOCKSKILL, SC_SLOWDOWN
  1447. * Modified pc_attack to fix monster npc's not working in certain exes, thanks
  1448. to leinsirk10 [celest]
  1449. * Moved mapflags organized by type to main mapflag folder and removed "type" folder.
  1450. Removed mapflags organized by location.[kobra_k88]
  1451. 11/17
  1452. * Added stub-handler for packet 0x3090 into char_sql [MouseJstr]
  1453. * Fixed a crash in the afm reading/closing code [MouseJstr]
  1454. * Added skill_steal_type to battle_athena.conf for the new (but unconfirmed)
  1455. stealing formula [celest]
  1456. * Skill updates: [celest]
  1457. - Removed annoying skill fail messages from rogue's Snatcher
  1458. - Add sc_data check for firewall and fogwall
  1459. - Fixed Berserk (99% hopefully? ^_^)
  1460. 11/16
  1461. * Fix for compiling against gcc 2.95 [MouseJstr]
  1462. * Added day of week events (OnSat2000) into scripting engine [MouseJstr]
  1463. * Temporarily Disabled GM Command Logs; Weren't working Properly >_<! [Codemaster]
  1464. * Fixed a typo in ../db/Changelog.txt [Nana]
  1465. * Added -funroll-loops argument to makefile to further increase performance [Shinigami]
  1466. * Fixed 2 bugs in DELITEM script command. [Lupus]
  1467. - added deleting priority: If you have some items with the same ID and want to delete some of them, then
  1468. at first it'll delete common items then, if necessary, delete the rest items but upgraded/named/with cards. [Lupus]
  1469. * Added checks for Perfect hiding [celest]
  1470. * Modified level 0 skill check to allow auto blitz beat and steal. [celest]
  1471. * Added constant BaseJob. [celest] Usage: For example, instead of
  1472. If (Class==12) || (Class==4012) || (Class==4035)
  1473. you can use
  1474. If (BaseJob==12) or If (BaseJob==Job_Assassin)
  1475. * Added 'indoors' mapflag : When in-doors players will not be affected by Night [celest]
  1476. * Skill updates [celest]
  1477. - Assumptio is now disabled in GvG maps.
  1478. - Changed cloaking checks a bit.
  1479. - Tidied up some parts of skill.c abit. ;P
  1480. * Added pk_min_level option in battle_athena.conf. Change this to define the
  1481. minimum level players can attack others when pk_mode is on. [celest]
  1482. 11/15
  1483. * Added a Database Changelog.txt File, use it for any changes inside the db folder. [shadowlady]
  1484. * Added GM Command Logs & Added TXT Logs + TXT Log Options [Codemaster]
  1485. * Added spawning of monsters at specific level by adding ,# after the spawn name. [Valaris]
  1486. mobs_level_up option should be on when using this.
  1487. (Example: {ama_dun01.gat,0,0,0,0 monster Shinobi,99 1401,1,0,0,0} to spawn a level 99 shinobi.)
  1488. * Added addtoskill script command for (levels can stack on top of existing levels). [Valaris]
  1489. Use same usage as skill script command.
  1490. * Added -ffast-math argument to makefile to increase performance, thanks to kashy. [Valaris]
  1491. * Added small and big mob sprite spawning. [Valaris]
  1492. -Added @monstersmall and @monsterbig commands.
  1493. -For using in scripts, use id +2000 for small and id +4000 for big.
  1494. (Example: 3002 for small poring and 5002 for big poring)
  1495. * Added mobs_level_up option. [Valaris]
  1496. -Everytime a monster kills a play their level will increase and show levelup animation.
  1497. -Their 6 main stats and speed will increase as they level.
  1498. -They will recover 10% of the max hp of the player it kills.
  1499. -Player will gain extra exp based on how much stronger a monster is than normal.
  1500. -Skill estimation will show monsters current level (instead of reading from db).
  1501. -Will display level 99 aura if and when a monster hits level 99.
  1502. -They will not go higher than level 99.
  1503. * Fixed maximum skill levels not following skill tree [celest]
  1504. * Updated HP/SP for baby classes [celest]
  1505. * Corrected pc_calc_base_job [celest]
  1506. * Skill updates [celest]
  1507. - Marionette Control (70%), Berserk (thanks to DracoRPG)
  1508. * Modified pc_jobchange code to work with new pc_calc_base_job [celest]
  1509. * Corrected skill_tree_get_max, sorry >.< [celest]
  1510. 11/14
  1511. * Made the Advance jobchangers to kRO standars with the following;
  1512. - Checks if you are level 99/50 and 2nd class OR above.
  1513. - Checks if you have an Cart of Falcon equiped.
  1514. - Checks if you have any Quest Skills, stores a variable on you and gives them back
  1515. when you change to 1st advance class.
  1516. - Added minimum joblevel to change to an 2nd or 2-2 advance class to job 45 after kro. [Nana]
  1517. * Fixed loading of AFMs when no resnametable is found. [Valaris]
  1518. * mob_db.txt: Fixed Golden Thief Bug MVP MOB mode (it wasn't moving/attacking) [Lupus]
  1519. * Added AFM (Advanced Fusion Map) support, thanks to alexkreuz and fusion. [Valaris]
  1520. Use the afm_dir option in grf-files.txt (currently needs a resnametable.txt).
  1521. * Initialized password variable in login.c. [Valaris]
  1522. * Added zeny_from_mobs option. [Valaris]
  1523. * Corrected the file type attribute on most of the files in three which fixes the
  1524. newline issues between linux and dos [MouseJstr]
  1525. svn propset -R svn:eol-style native .
  1526. * Skill changes [celest]
  1527. - Corrected steal formula, updated BladeStop, Headcrush.
  1528. 11/13
  1529. * Fixed map-server loading, doesn't require data\resnametable.txt anymore [Wizputer]
  1530. * Updated & Optimized TXT Login from FREYA. (need to do SQL now) [Codemaster]
  1531. * Removed compile warnings in intif.c. [Valaris]
  1532. * Fixed chrif_changesex and @changesex, now uses packet 0x3000. [MC Cameri]
  1533. * Updated some skills, credits to orn and midas. [celest]
  1534. - Magnum Break, Throw Stone, Sprinkle Sand, Magic Power, Memorise, Quagmire,
  1535. Spider Web, Reject Sword, assassin's Dodge, Demonbane, Divine Protection.
  1536. - Firewall, Quagmire, Fog Wall (100%), Marionette Control (30%), Sandman,
  1537. Claymore Trap
  1538. - Adjusted some mob skills for mod support.
  1539. * Fixed weight increase when riding. [celest]
  1540. 11/12
  1541. * added folder: /save-tmpl, removed folder /save
  1542. * battle_athena.conf: Updated Packet Version Flags.
  1543. * !!!Fixed Mobs Attacking!!!: Thanks for MagicalTux and Yor, I fixed the mobs attacking by using one of their files. [Codemaster]
  1544. * Warps Update : Added ayothaya warps in ./npc/warps/ and in map_athena.conf [Nana]
  1545. 11/11
  1546. * Skill Updates : (Need to revise skill_cast_db.txt for new updates)
  1547. ( Sharp Shooting, Sword Reject, Chain Crush Combo, Tiger Knuckle Fist,
  1548. Head Crush, Arrow Vulcan, HP COnversion) Thanks to DracoRPG.
  1549. Fixed Devotion use requeriments. Thanks to Orn. [shadow]
  1550. 11/11
  1551. * Corrected minor typo in item_db, and removed/commented out dupe items.[kobra_k88]
  1552. 11/10
  1553. * Updated Sprout (Item #7193), Thin Trunk (Item #7186),
  1554. Huge Leaf (Item #7198), and Rante Whip (Items #1956, #1957)
  1555. - thanks to cheng - [Codemaster]
  1556. * Updated Parasite (Mob #1500) Drops - thanks to cheng [Codemaster]
  1557. * Updated Soft Grass Leaf (Item #7194) - thanks to cheng [Codemaster]
  1558. * Added, Fixed & Updated ALOT of skills: [Codemaster]
  1559. - Fire Pillar, Backstab, Grimtooth, Poison React, Falcon Assalt,
  1560. Skin Tempering, Hilt Binding, Frost Nova, TEMPORARY fix for Create Deadly Poison,
  1561. Enchant Deadly Poison, Endure, Sacrifice, Spider Web, Memorize,
  1562. Hyper Spirit Sphere, Palm Strike, Sword Reject, Pressure, Magic Crasher,
  1563. Amplify Magic Power, Napalm Vulcan, True Sight, Wind Walk, Aura Blade,
  1564. Concentration, Cart Boost, Magic Power
  1565. - Thanks goes to Celest, Midas, and DracoRPG!
  1566. * Fixed spira's mistake in using the packet_len_table; no biggie ^_^ [Codemaster]
  1567. * char/char.c & char_sql/char.c: Fixed start_armor and start_weapon - thanks to AppleGirl [Codemaster]
  1568. * Added packetver 6 flag to makefile. [Valaris]
  1569. 11/09
  1570. * mob_db.txt: Fixed Drake dropping the wrong card - thanks to roslen [Codemaster]
  1571. * chat.c: Fixed multiple joins in a single chat - thanks to Alex14 and CHaNGeTe. [Codemaster]
  1572. * clif.c: Fixed sitting. [spira]
  1573. * - Fixed item 657 Job ID , 11/09 patch updates to item_db, Correct stats for item 5097
  1574. - Added Unbreakable funcions to item_db armors/shields/garments/footgear [shadow]
  1575. * Defined SO_REUSEPORT to allow the servers to re-use ports if server crashes [Wizputer]
  1576. 11/08
  1577. * Added new script command: getMapXY(MapName$,MaxX,MapY,type,[CharName$]) by Lorky [Lupus]
  1578. Get position for char/npc/pet/mob objects.
  1579. * Attempted to fix the mob bug (still haven't :( ). Still updated mob.c/clif.c/chrif.c according to jA 1057. [Codemaster]
  1580. * Fixed item_cardalbum.txt: Removed extra column which mad all albums empty [Lupus]
  1581. 11/07
  1582. - Fixed a few npcs will start implementing new ones soon, have alot on paper, need to type them up. [Nasedo]
  1583. * clif.c: Added a few things from jAthena 1057 [Codemaster]
  1584. * Corrected some typos in item_db. Items 1143 and 1719 need to be re-checked.[kobra_k88]
  1585. * Fixed compiling error in Map Server in which @repairall was using old broken system [Shinigami]
  1586. 11/06
  1587. - Added missing items in item_db.txt and reorganised it.[Nasedo]
  1588. - Fixed wrong coords for payon guild flags (it has the old map coords), fixed some weapon effects in item_db,
  1589. updated the mob_db (90%+ done), added EP 5-9 mobs to mob_branch.txt and EP 6 cards to item_cardalbum.txt[shadowlady]
  1590. * atcommand.c/.h,chrif.c/.h, added @changesex. [MC Cameri]
  1591. * mob.c & clif.c: Added & Modified a few parts dealing with monsters and guilds [Codemaster]
  1592. * mob.c: Re-did a few parts according to jA's 1057 version. [Codemaster]
  1593. 11/05
  1594. * Fixed and redo optional Umbalian quests:
  1595. - Wise Man Fabius' Umbalian Language Quest (you can learn Umbalian language in
  1596. alternative way)
  1597. - On speaking with Umbalian Chief about meaning of masks you activate Turban Thief Quest
  1598. (For Sphinx Mask)
  1599. * Fixed several bugs in Niflheim Piano Keys Quest (wrong variable name, missing CLOSE buttons)
  1600. Zeny/Item Exploit in Niflhein Sairin NPC quest (should add similiar checks in every
  1601. easy quests with expensive prizes to avoid exploits) [Lupus]
  1602. * Revised and fixed all comodo,yuno,amatsu,gonryun,umbala mobs and drops. Also fixed mvp and woe mobs too [Shadowlady]
  1603. * Fixed crash from guild skill point allocation, there seems to be a problem with guilds loading still. [Valaris]
  1604. * Fixed committed typo in map_athena.conf, remove aria's dev npc (was giving errors preventing server startup). [Valaris]
  1605. 11/04
  1606. * Added sara-chan's packet db with support for 11-1 [Valaris]
  1607. * [alot of files >_<]: Changed connecting a bit, from oA source; it connected easier/better in my opinion so... [Codemaster]
  1608. * map/skill.c: Added a few checks for level 0 skills being used. [Codemaster]
  1609. 11/03
  1610. * Removed broken column, using attribute column for broken equip now. [Valaris]
  1611. 11/02
  1612. * Fixed compile time errors for gcc 2.95 [MouseJstr]
  1613. * Changed Blacksmith skill "Hammer Fall" to only be used with maces or Hammers [Aria]
  1614. 11/01
  1615. * Set Comodo Kafra to warp to Umbala (11/2/04 patch) [Aria]
  1616. 10/31
  1617. * Fixed Devnpcs giving off errors -_- [Aria]
  1618. * Fixed showmsg.c compile warnings thanks to LittleWolf. [Valaris]
  1619. * map/skill.c: removed a second declaration of sc_def_vit in skill_castend_nodamage_id; thanks to spira [Codemaster]
  1620. * map/battle.c: re-did Water Ball's damage calculation [Codemaster]
  1621. 10/30
  1622. * Added new guild skills to skill_db from sara-chan. [Valaris]
  1623. * db/skill_cast_db, map/skill.c, map/pc.c: Corrected a few CHASEWALK things; Thanks to Celest [Codemaster]
  1624. * char_sql/char.c: removed the double free()ing of gm_account [Codemaster]
  1625. * Added check for c value in int_guild.c before dividing to calculate average level. [Valaris]
  1626. * Commented unfinished dev npcs and added devnpc to map_athena. [Aria]
  1627. * Removed item requirement of Aqua Benedicta (10/26 patch) [Aria]
  1628. * Fixed some compiling error for Map-server [Shinigami]
  1629. * Removed Rogue's backstab pushback effect (kRO style again) [Aria]
  1630. * Changed requirement of Fire Pillar to fit kRO style; lv1-5 = no gem, but 6-10 = 1 gem. [Aria]
  1631. * Added Mugendai's oA GUI support for map-server (previously not added) [davidsiaw]
  1632. * Included Mugendai's oA GUI in the GUI folder [davidsiaw]
  1633. 10/29
  1634. * another exploit fix for mult in script [MouseJstr]
  1635. * Corrected mode for peco, condor mobs. Added custom mobs Easter Egg and Easter Bunny for easter egg event script.
  1636. Corrected mysteltain card location, penomena card typo.[kobra_k88]
  1637. 10/28
  1638. * Cloak Speed fixed [Aria]
  1639. * Throw stone damage fixed [Aria]
  1640. * Added new packets from Sara to packet database. [spira]
  1641. * Fixed and changed command lists to reflect on new packet changes. [spira]
  1642. - @jumpto, @recall, and @where
  1643. - Removed old @ignore* functions because they are no longer needed.
  1644. * Replaced old whisper ignoring code with better and more efficient code. [spira]
  1645. * Added packet_db.txt support, removed old packet functions. [spira]
  1646. * fixed forger-zeny exploit [MouseJstr]
  1647. Doing script math that returns a number greater then (1<<31) will now
  1648. return a (1<<31). This prevents you from finding a npc that
  1649. asks for a quantity then mults the cost by that quantity to get
  1650. what you need to pay.
  1651. 10/27
  1652. * Updated CSS styles for readme a bit [Aria]
  1653. * branched athena at version 340 to begin work on the packet_db
  1654. stuff from jA. To retrieve it, do a svn co http://dev.deltaanime.net:8080/svn/eathena/packetdb
  1655. later, once we are happy with it.. and feel it is stable, we will remerge it back into the main tree via the appropriate svn commands
  1656. as a FYI, the command I used to create this branch was:
  1657. svn copy http://dev.deltaanime.net:8080/svn/eathena/athena http://dev.deltaanime.net:8080/svn/eathena/packetdb -m "branch for packetdb work"
  1658. * Fixed Aldebaran (gatekeeper conditions bugs and wrong Key ID). Fixed some typos in other cities [Lupus]
  1659. 10/26
  1660. * Added more quotes -_- [Aria]
  1661. * Modified a few things related to guild skills. I hope it doesn't interfere with anyone else's work, and isn't seen as bad. [Sara-chan]
  1662. -Support for new guild skills, though they don't work yet. Added guild_skill_get_inf and guild_skill_get_max entries for them based on early info.
  1663. -Changed guild_skillup functions based on japanese code, but for a good reason.
  1664. It allows for guild skill trees, sort of. I made Kafra Contract and Guardian Research require Guild Approval, for instance.
  1665. I think the first four new guild skill requirements are correct, at the least.
  1666. I hope everything works alright, it's my first contribution to eA in quite some time and I'm rather rusty at programming of late.
  1667. * Fixed compile errors in showmsg.c. [Sara-chan]
  1668. * Fixed Mouse's devnpc only saying his quotes once per server reset [Aria]
  1669. * Added log_athena.conf & the logs.sql file [Codemaster]
  1670. * Added log configurations to inter_athena.conf [Codemaster]
  1671. 10/25
  1672. * Fixed a compiling error in Login-server [Shinigami]
  1673. * Added alot of Azndragon's spiffy logs & then added a few things of my own (Silly Dragon, structs are for kids!) [Codemaster]
  1674. * Corrected a small bug (forgot to change a few variables!) in my different GM option. [Codemaster]
  1675. * Fixed items and mobs in DB. Added new items. [Lupus]
  1676. * Fixed some NPC bugs (check NPC=changelog.txt) [Lupus]
  1677. * Fixed getting MAX PET ID (SQL only bug) [Lupus]
  1678. * Fix char/char.c which was crashing after double freeing logs
  1679. [MouseJstr]
  1680. * Improved basic server rebooters [MC Cameri]
  1681. * Commited common/showmsg.c/.h, previously missing x_X [MC Cameri]
  1682. * Added a basic server rebooter program, just use 'runserver.bat' to start up the server. [Shinigami]
  1683. 10/24
  1684. * Added files common/showmsg.c/.h which contain the function _ShowMessage(char *string, int flag) [MC Cameri]
  1685. -Check showmsg.h to see how to use it.
  1686. -This function is made to replace printf in all the cases, so it MUST be used instead of print from now on.
  1687. -Begin your own journey of replacing/removing old printfs, and using the new function.
  1688. -This function was previously called ShowMessage() in oA, it is now merged, some changes have been done:
  1689. 1.Outputting messages to a file is now disabled(commented out).
  1690. 2.MSG_SQL is now commented out.
  1691. 3.If the server is out of memory, it will not use abort().
  1692. 4.Returns 0 if successful, 1 otherwise.
  1693. -Example: ShowInfo("hello\n"); will print this to the screen: [Info]: hello
  1694. -Always add \n at the end. Unless someone edits the function to add the \n whether it exists or not.
  1695. -Just add #include "showmsg.h" wherever you need it.
  1696. * Edited ALL makefile's to include showmsg.o -> _ShowMessage(). [MC Cameri]
  1697. * Updated readme/gmcommands.html with new @uptime command [MC Cameri]
  1698. * Somebody had added some additional noskill checks that prevented
  1699. vending from happening in prontera [MouseJstr]
  1700. * Added bypass with gm_allskill of npc_selfdestruct2. [Valaris]
  1701. * Corrected some minor bugs in some Quests [Shinigami]
  1702. * Added new maps (from lateast kRO patch)
  1703. Touched WOE (u can't surrender the castle during the WOE), misc fix of the bank [Lupus]
  1704. 10/23
  1705. * Added the option to read GM accounts from a different table than login. Default set to login table. [Codemaster]
  1706. * Finished Aria and MC Cameri "Dev edition" NPCs. [Aria]
  1707. * Corrected extra stat points given to high classes. [Valaris]
  1708. * Added high classes getting the extra 40 stat points on stat reset. [Valaris]
  1709. * performance tweaks on socket.c to reduce lag [MouseJstr]
  1710. do a "OPT="-g -DNSOCKET" to compile with the changes
  1711. enabled.. and tell me if you notice a change in your
  1712. performance/lag
  1713. * Added @uptime to atcommand.c [MC Cameri]
  1714. * Added the stuff for my npc to Dev/quotes.txt [MC Cameri]
  1715. 10/22
  1716. * Replaced some checkcart and checkoption(x) with checkcart(0) in the guild folder [Aria]
  1717. * Waiting for various devs to tell me their coords, map, biography, quotes,
  1718. moving coords, etc. In the meantime, I replaced them with (x,y),(lols),
  1719. (sprite),(somewhere), and if they didn't give me any info, I didn't
  1720. add them yet =P. [Aria]
  1721. * Added Davidsiaw, Shinigami, Lord, Codemaster, MouseJstr, MC Cameri, and Darkchild
  1722. to "Dev edition" NPCs [Aria]
  1723. * Revised "Dev edition" NPC layout a bit, should go smoother now. Should be final
  1724. layout unless something goes wrong =O. [Aria]
  1725. * Fixed the eol markers on some checked in files [Mousejstr]
  1726. * Fix two crashes caused by calling isGM on mobs [MouseJstr]
  1727. * Added folder "mc_cameri" in npc/other which contains my bank npc. [MC Cameri]
  1728. * Changed "Dev edition" NPC layout so that they move by themselves by timers. [Aria]
  1729. * Changed "Dev edition" NPCs to walk during quotes, and added biography. [Aria]
  1730. * Fixed quest/all_quest.txt not showing the correct description of the binoculars. [Aria]
  1731. * Fixed quest/all_quest.txt not going to stop pass and not displaying requirements. [Aria]
  1732. * Fixed removing friends from the list [davidsiaw]
  1733. * Added PCLoginEvent NPC (When a character logs on, NPC runs as if he/she clicked the NPC) [davidsiaw]
  1734. The NPC sample is located in npc/sample/PCLoginEvent.txt (you only need one of these NPCs)
  1735. 10/21
  1736. * Fixed clothes_dyer.txt: Disabled Assassing/Rogues Dye. Also fixed wrong labels [Lupus]
  1737. * Fixed hair_dyer.txt: fixed missing menu label [Lupus]
  1738. * new_hats.txt 1.4 fixed amount of Fish Tail (300 -> 30), Zeny bugs in Ear of Angel,
  1739. Ear of Demon,Big Golden Bell, Mistress Crown,
  1740. Crown of The Ancient Queen, Indian Headband, Orc Hero Helm [Lupus]
  1741. * Fixed name of a flower in Prontera quest (Dreamy->Illusion) according to our DB [Lupus]
  1742. * Fixed item names in the temp Crusader Job Quest according to our DB [Lupus]
  1743. 10/20
  1744. * map/mob.c: Added mob_exclusion_add() & mob_exclusion_check() [Codemaster]
  1745. * map/map.h: Changed Vending Struct: amount and value to unsigned variables (so they CAN'T be 0 or less) [Codemaster]
  1746. * map/mob.h: Added mob_exclusion_add() & mob_exclusion_check() [Codemaster]
  1747. * Aligned the list of commands at the beginning of atcommand.c,
  1748. with tabs instead of spaces. [MC Cameri]
  1749. * Fixed AtCommand_SetBattleFlag, it was previously being called by "@send"
  1750. instead of "@setbattleflag". [MC Cameri]
  1751. * Finished basic layout, finished Aria starting to create Shinigami [Aria]
  1752. * Started to create "Dev edition" npcs [Aria]
  1753. * Fixed a compile error in src/char/char.c [MouseJstr]
  1754. * Fixed a bug in @trade where the distance was not ignored [MouseJstr]
  1755. * Fixed a potential inf loop in pc.c when multi_level_up is set to no. [MouseJstr]
  1756. * implemented Friends List support for TXT version [davidsiaw]
  1757. * added queries in main.sql for Friends List. mySQL support for friends list pending [davidsiaw]
  1758. 10/19
  1759. * switched login_sql/login.c to use binary when retrieving
  1760. by account name [MouseJstr]
  1761. * skill.c & skill.h: added skill_type_cloaking [Codemaster]
  1762. * storage.c & storage.h: added storage_storageopen2() [Codemaster]
  1763. 10/18
  1764. * Changed readme layout for 1.0 scheme. [Aria]
  1765. * added check for console variable in login_sql [MouseJstr]
  1766. * Fully translated the untranslated items in the database.sql for SQL. [Nana]
  1767. * Dev/TODO, asigned myself to some items. [MC Cameri]
  1768. * char/char.c: changed the online system to omniAthena's [Codemaster]
  1769. * char/char.c: added log_char and log_inter [Codemaster]
  1770. * char/char.c: added Mugendai's GUI Support [Codemaster]
  1771. * char/int_guild.c: added log_inter and db_path [Codemaster]
  1772. * char/inter.c: added log_inter [Codemaster]
  1773. * char/char.c: added db_path [Codemaster]
  1774. * char/inter.h: added log_inter [Codemaster]
  1775. * char_sql/char.c: added log_char and log_inter [Codemaster]
  1776. * char_sql/char.c: added Mugendai's GUI Support [Codemaster]
  1777. * char_sql/int_guild.c: added log_inter and db_path [Codemaster]
  1778. * char_sql/inter.c: added log_inter [Codemaster]
  1779. * char_sql/char.c: added db_path [Codemaster]
  1780. * char_sql/inter.h: added log_inter [Codemaster]
  1781. * conf-tmpl/char_athena.conf: Added log_char & db_path [Codemaster]
  1782. * conf-tmpl/inter_athena.conf: Added log_inter [Codemaster]
  1783. 10/18
  1784. * clif.c,clif.h,map.h,npc.c,npc.h,script.c: Added NPC Walking. [Valaris]
  1785. -npcspeed #; To change npc's walking speed.
  1786. -npcwalkto x,y; Move an npc to a position (keep it less than area size, or sprite will glitch and disappear).
  1787. -npcstop; Stops an npc's movement.
  1788. 10/17
  1789. * Made the IP autodetection code work under a pure win32
  1790. executable
  1791. * Fixed the win32 build and made a src\map\Makefile.win32 to
  1792. make it easier to do win32 builds of the map server
  1793. src\common\utils.c src\common\utils.h src\common\grfio.c
  1794. src\common\nullpo.h src\common\timer.c src\common\db.c
  1795. src\common\socket.c src\common\core.c src\common\mmo.h
  1796. src\common\socket.h src\map\script.c src\map\intif.c
  1797. src\map\npc.c src\map\clif.c src\map\map.c src\map\clif.h
  1798. src\map\chrif.c src\map\Makefile.win32
  1799. * skill.c: Fixed noicewall flag. [Valaris]
  1800. * battle.c: Battle calc weapon attack now checks to see if pc_breakweapon successfully broke the weapon then recalculates damage. [Valaris]
  1801. * pc.c: Removed broken weapon and equip status, just unequips items again when broken. [Valaris]
  1802. Removed useless code from pc_breakweapon and pc_breakarmor. [Valaris]
  1803. * Added template for server control from the console [Wizputer]
  1804. * conf-tmpl/login_athena.conf: added support for Mugendai's "I'm Alive" Timer and GUI Flush [Codemaster]
  1805. * login/login.c: added support for Mugendai's "I'm Alive" Timer and GUI Flush [Codemaster]
  1806. * login_sql/login.c: added support for Mugendai's "I'm Alive" Timer and GUI Flush [Codemaster]
  1807. * Usable GM commands from server console admin:<gm command>:<map of "GM"> <x> <y> [Wizputer]
  1808. * Added server:shutdown to shutdown server and help [Wizputer]
  1809. * Added user discretion for console commands in conf files [Wizputer]
  1810. 10/16
  1811. * Fixed Umbala Language Quest, where a certain NPC would freeze you due to an unfinished script [Shinigami]
  1812. * Fixed bug in new_hats.txt where free items are given out [Shinigami]
  1813. * Correct Morroc warp npc overlaying Kafra npc. [Aria]
  1814. * Corrected npc typos. [Aria]
  1815. * Skip over npc_selfdestruction2 on allskillup (thanks to celest) [Valaris]
  1816. * Fixed some typos in some of the NPCs [Shinigami]
  1817. * tweaked the auto-configure stuff to deal better with
  1818. machines that have no detectable IP addresses.. is this
  1819. possible? [MouseJstr]
  1820. src\char_sql\char.c src\char\char.c src\map\map.c
  1821. * Made it compile under gcc 2.95 [MouseJstr]
  1822. * made the char and map servers auto-configure their own IP's
  1823. whenever possible [MouseJstr]
  1824. If you do not specify the server IP address, it now determines it
  1825. on its own. This means that to get a server running that is
  1826. accessable from the internet you should only need to specify the
  1827. location of the data.grf files. This eliminates one more point
  1828. of misconfiguration.
  1829. It does not correctly auto-configure for when you are behind a
  1830. router or a firewall since there is no way of determining the
  1831. external IP address. On the other hand, we should be able to
  1832. eliminate the lan_conf file since we know our IP addresses as well
  1833. as our netmask.