Changelog-Trunk.txt 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612
  1. Date Added
  2. AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO INTO TRUNK.
  3. IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK.
  4. 2006/05/29
  5. * [Fixed]:
  6. - Missing ';' in item #4358 [Lance]
  7. * [Fixed]:
  8. - Missing maps in map index database. [Lance]
  9. * [Fixed]:
  10. - Battle mechanics in battle_check_target [Lance]
  11. * [Fixed]:
  12. - Typo in mob_dead causing crash. Thanks to reddozen and his gang for testing.
  13. [Lance]
  14. * Cleaned up friend list saving and fixed loading of friends.txt file
  15. (char-txt) [Skotlex]
  16. * Added the Arunafeltz maps, not tested yet [Playtester]
  17. - someone with an up-to-date client should test them
  18. * Fixed pc_gainexp resetting your exp to 0 rather than adding it in...
  19. [Skotlex]
  20. * Corrected aspd calculation code to avoid negative overflows. [Skotlex]
  21. * Fixed battle_check_target check on BCT_ALL to check versus BL_CHAR
  22. instead of BL_PC and BL_MOB [Skotlex]
  23. * [Fixed]:
  24. - Declaration of int map_getcellp(struct map_data*,int,int,cell_t); [Lance]
  25. * Removed Undead being inmune to poison status. [Skotlex]
  26. * Removed speed penalty from SC_SKA [Skotlex]
  27. * Fixed SC_SPURT triggering on Soul Linkers. [Skotlex]
  28. * SC_DODGE won't be dispelled on death now. [Skotlex]
  29. * [Fixed]:
  30. - pc_follow_timer possible triggering crash.
  31. - pc_reg_received to use battle_status.hp instead of status.hp
  32. [Added]:
  33. - macro map_id2index for non-cyptic mapid to mapindex conversion. [Lance]
  34. * Added a division by zero check in mob_dead to prevent the (impossible)
  35. case where a mob dies with received damage of zero. [Skotlex]
  36. * Modified skill_get_range2 to return range 9 for skills with range 0 for
  37. Non-Players. This usually signals Self skills, and mobs/pets should be able
  38. to use them in other characters. [Skotlex]
  39. * Optimized a bit the SC_PROVOKE code (to use val3/val4) [Skotlex]
  40. * Fixed draining when the amount drained is negative (invoke zap rather
  41. than heal) [Skotlex]
  42. * Implemented GS_FLING as per the current skill description. [Skotlex]
  43. * Fixed pc_readparam/pc_setparam to use battle_status.hp/sp rather than
  44. status.hp/sp, fixes scripts reading the wrong Hp/Sp values [Skotlex]
  45. * Added some missing SC_* entries on the initial listing (potion related
  46. and speed up ones) [Skotlex]
  47. * Fixed function declaration of map_getcellp() [Skotlex]
  48. * [Fixed]:
  49. - status.c:920: warning: 'mbl' might be used uninitialized in this function
  50. - skill.c:6648: warning: 'matk_min' might be used uninitialized in this function
  51. - skill.c:6648: warning: 'matk_max' might be used uninitialized in this function
  52. - skill.c:2826: warning: 'sid' might be used uninitialized in this function [Lance]
  53. * [Optimized]:
  54. - Removed unused variable (account_id) in storage_guild_storagesaved.
  55. * [Optimized]:
  56. - Removed unused checks for unsigned data type and possible logic error for
  57. char type (gcc treats char as unsigned). [Lance]
  58. * [Fixed]:
  59. - Relogging in with 0 HP didn't trigger dead event. [Lance]
  60. 2006/05/28
  61. * Added functions status_revive, pc_revive and mob_revive to handle revival
  62. (it doesn't handles player respawning, though). Fixed reviving @ commands.
  63. [Skotlex]
  64. * Added SC_BLADESTOP to the skill enum at the beginning of status.c (fixes
  65. Bladestop causing an unknown status change message). [Skotlex]
  66. * Fixed MSS_DEAD state skills not triggering. [Skotlex]
  67. * Changed undeads to by default always sustain 100% of the damage from firewalls [MasterOfMuppets]
  68. * [Fixed]:
  69. - script functions that doesn't pass references, thanks to End_of_exam. [Lance]
  70. * [Protected]:
  71. - clif_parse_LGMmessage from possible hacks [Lance]
  72. * Fixed unable to store n items into storage unless n was the total amount
  73. of items you had. [Skotlex]
  74. * Suppressed compilation warnings (unsigned and signed mismatches) [Lance]
  75. 2006/05/27
  76. * Added structure status_data which holds status-related information (str,
  77. agi, etc, speed, amotion, adelay, dmotion, weapon-damage, race, size, etc)
  78. and weapon_atk structure with the weapon specific info (atk, atk2, element)
  79. to be used by all combat structures (TODO: Homun needs to be updated to use
  80. it). This in change involves a LOT of changes throughout the code and many
  81. optimizations were done as well. Partial list (see svn changelog for complete
  82. changes): [Skotlex]
  83. - NOTE: Changes are substantial! I tested a bunch of stuff and all the
  84. skills I changed the most, but it is possible there are unnoticed bugs
  85. remaining to fix!
  86. - Cleaned up TBL_PC, TBL_MOB, TBL_PC and mob_db structures to use status_data.
  87. - Split damage received functions into pc_damage/pc_dead and mob_damage/mob_dead
  88. - Added status functions to deal with damage and healing (status_damage,
  89. status_heal, status_percent_change) and a bunch of defines for easier
  90. handling of them (status_percent_heal, status_percent_damage,
  91. status_fix_damage, status_kill, etc). Objects must be hurt/healed through
  92. THIS, pc_damage/mob_damage most no longer be directly invoked!
  93. - Rewrote and cleaned up battle_calc_misc_attack
  94. - Merged config options pc_attack_attr_none, mob_attack_attr_none,
  95. pet_attack_attr_none into attack_attr_none (type 4)
  96. - Removed config options player_defense_type, monster_defense_type,
  97. pet_defense_type in favor of weapon_defense_type
  98. - Modified skill_calc_heal to take into account the MEDITATION bonus.
  99. - Modified Slim Pitcher so it will work when casted by non-players. Will
  100. now also work with SP-healing items.
  101. - Rewrote Freedom of Cast code to use function status_freecast_switch to
  102. switch adelay/speed when cast begins/ends.
  103. - Modified Magic Power to store amplified MATK/MATK2 in val3/val4 for
  104. easier updating when used in conjunction with ground skills.
  105. - Fixed Asura Strike being usable from within a combo regardless of combo skill.
  106. - Added status_calc_bl which does status-change related calculations using
  107. as base the base_status of the bl object and the SCB_* flag passed. This is
  108. invoked on status changes, and status_calc_pc will no longer be invoked
  109. (which results on much faster status-change calculations).
  110. - pc_clean_skilltree will now also remove item-granted skills.
  111. - Learning skills will now only invoke status_calc_pc when the skill is passive.
  112. - Cleaned up pc_check_base/job_lvup to only invoke the lv-up related
  113. packets and functions ONCE regardless of skill-levls earned.
  114. - Cleaned up pc_ regen related functions.
  115. - Made player-sprite mobs have item pickup animation and walkdelay when taking items.
  116. - Clones will copy a player's base status rather than battle status (so
  117. status-change alterations are not cloned)
  118. 2006/05/26
  119. * Part B of the homunculus code. [blackhole89]
  120. While most of the homunculus handling functions are in now, it still lacks
  121. code required for players to create it.
  122. Given I haven't screwed up, you could master yourself one through the DB though.
  123. * Fixed crashing in mob.c [Lance]
  124. * Patches to allow everything to work right. + 1 more sample script. [Lance]
  125. * Mob control engine tested 99% working so far. [Lance]
  126. * Change scripting engine's NPC scope vars to dot (.) style.
  127. * Improved and (should be fully) fixed the mob control engine. [Lance]
  128. * Fixed typos in char.c [Lance]
  129. * Rewrote fame rank lists system to reduce char-server load, as requested by
  130. Skotlex: now it has a copy of those lists, and updates only the proper one
  131. when needed instead of rebuilding all from saves everytime (which required
  132. to always save the character before rebuilding the lists) [DracoRPG]
  133. - Note it hasn't been compiled nor tested with SQL, please do it for me
  134. 2006/05/25
  135. * Simplified ASC_BREAKER by making it a BF_WEAPON attack with an additional
  136. int-based damage component (which is added right before elemental
  137. modifiers) as described by AuronX. Pending further refining. [Skotlex]
  138. * Resolved differences between Stable/Trunk msg_athena.conf. [Lupus]
  139. Fixed atcommand @request MSG numbers accordinly.
  140. On adding new MSG strings, plzm reserve them in STABLE msg_athena.conf, too
  141. * Added NoVending mapflag. You may disable vending in the streets [Lupus]
  142. * Increased capacity for Account Variables to 64 [Skotlex]
  143. * Reverted Intravision implementation to that of stable's. [Skotlex]
  144. * Corrected Login Server taking it's first argument as both login config
  145. and lan config. [Skotlex]
  146. * Fixed mob control commands.
  147. * Fixed memory leak in scripts (again). Still have a few lying. [Lance]
  148. 2006/05/24
  149. * Fix to the slave AI problem. [erKURITA], by [Skotlex], reported by Niktout.
  150. * Item sharing now shares the same rules as exp sharing (no sharing when
  151. dead, or idle, etc) [Skotlex]
  152. * Fixed summoned slaves being able to cast onspawn summon-skills (slaves
  153. aren't supposed to be able to call minions) [Skotlex]
  154. * The clif_skill_poseffect packet will not be invoked in Snap unless the
  155. skill was successful. May fix the client-position lag. [Skotlex]
  156. * Merged item_db.sql from stable (the one from stable was more recent than
  157. the one of trunk...) [Skotlex]
  158. * Corrected SL KA* spells not working on other Soul Linkers. [Skotlex]
  159. * Corrected a pair of incorrect sql query parsing logic in the login-sql
  160. ban request packet. [Skotlex]
  161. 2006/05/23
  162. * Corrected mob angry mode, now it only "restores" itself after being hit
  163. when the mob has no target within their range of sight rather than on
  164. picking a new target. [Skotlex]
  165. * Fixed wedding sprite where it would stay active after unequipping. [Zido]
  166. * Some cleanup of run_script, should fix the memory leak there. [Skotlex]
  167. * the charname request hack message has been downgraded to only include
  168. GM-invisible characters. [Skotlex]
  169. * corrected clif_charnameack to send negative ID when a disguised player
  170. asks for it's own disguised name. [Skotlex]
  171. * Cleaned up the disguised target-id checks taking into considering that
  172. the only character that sees a negative ID is the same disguised character.
  173. [Skotlex]
  174. * Modified battle_calc_weapon_attack to use new flags pdef/pdef (pierce
  175. defense), Investigate and Icepick will now use the final def/vit-def values
  176. rather than the base ones. [Skotlex]
  177. * The move-enable condition checks for skills are now checked for only when
  178. on skill use, not at cast-end time. [Skotlex]
  179. * Corrected clif parse name request failing on disguised characters [Skotlex]
  180. * Corrected Soul Drain draining from all non-ground-based skills including
  181. non-magic attacks. [Skotlex]
  182. * Corrected pc_setoption to change the option and then change class.
  183. changing option-wedding will automatically convert the view-class as well.
  184. [Skotlex]
  185. * Corrected the 15% drop rate increase when killing higher level mobs in
  186. pk-mode triggering for all mobs with lower level than yourself. Thanks to
  187. Vayu. [Skotlex]
  188. * Fixed typo (this time it's not my fault) in script_reload() clearing the same
  189. db each time o_o [Lance]
  190. * Fixed sleep command. [Lance]
  191. * Added 'setd' support for local NPC scope (') variables. [Lance]
  192. * [Scripting Engine Update] New variables are ready to be used. [Lance]
  193. 2006/05/22
  194. * Updated skill_delayfix to return 0 for mobs since they have no skill
  195. delay other than the one specified in mob_skill_db [Skotlex]
  196. * Corrected the 20 lvl diff 15% exp bonus on pk_mode servers. Thanks to
  197. Vayu for pointing it out. [Skotlex]
  198. * status_get_sc_tick will now use directly Stun's formula rather than
  199. invoking the status sc chance once. [Skotlex]
  200. * Fixed a possible null pointer in script command misc_effect [Skotlex]
  201. * Modified Investigate to take into consideration final def/vit-def rather
  202. than base values for damage adjustment. [Skotlex]
  203. * WARNING: New scripting system contains memory leak
  204. TODO: Free all scripts using script_free_code() instead of old methods. [Lance]
  205. * Excluded idle and auto-trade party members from TK_POWER list. [Lance]
  206. * Fixed compilation errors.
  207. Tidy up jobmaster for easy debugging. [Lance]
  208. 2006/05/21
  209. * Part A of the Homunculus code.
  210. This only features the structures, status_* and clif_* (packets) and is
  211. not functional yet in any conventional way, but doesn't interfere
  212. with present functionality either.
  213. Main purpose is helping me to keep my work organized. [blackhole89]
  214. * Fixed the "fake" mute status bug. [Zido]
  215. * Speed up array size calculation and deletion. [Lance]
  216. * Player must learn the skill before doing auto-spell [Lance]
  217. * Exploit prevention in clif_parse_NpcStringInput [Lance]
  218. * SC_SPEARSQUICKEN -> SC_SPEARQUICKEN normalized enum name [Lupus]
  219. * Thanks to damirych & Falcon for [2006/04/30] STEAL skill [Lupus]
  220. 2006/05/20
  221. * grfio_final moved back if any of GRF overriding is enabled so servers
  222. with such configuration will not have different values after reloading. [Lance]
  223. * jA1983 script.c buildin_menu fix. Thanks to End_of_exam. [Lance]
  224. * Abit of alterations to login-server. [Lance]
  225. 2006/05/19
  226. * Minor unsigned/signed alteration in pc_additem to shut the compiler up. [Lance]
  227. * Small change in pc_additem that could be fixing the current bug with new
  228. items not getting added. [Skotlex]
  229. * Fixed loginlog definition in main.sql, thanks to Tempesta [Skotlex]
  230. * Likely fixed the mob-skill random picking behaviour causing infinite
  231. loops sometimes. [Skotlex]
  232. * Modified mobskill_use behaviour to pick a random starting point and check
  233. skills from that, rather than always checking from first to last. Fixes
  234. skills with high priority blocking skills lower down in the list from
  235. triggering. [Skotlex]
  236. * Updated mob ai behaviour so that mobs use IDLE state skills when their
  237. current target cannot be reached for melee fighting. [Skotlex]
  238. 2006/05/18
  239. * Added 5 config settings to adjust damage in pk-mode servers (misc.conf)
  240. [Skotlex]
  241. * Fixed mob_max_skilllvl being capped to 11! [Skotlex]
  242. * Rewrote/cleaned up several functions in storage.c [Skotlex]
  243. * Optimized pc_additem comparisons to account for items with more than four
  244. slots. [Skotlex]
  245. * Updated clif.c to enable retrieval of items from cart/storage while
  246. trading. Exception is retrieving items from the cart while vending.
  247. [Skotlex]
  248. - The reasoning is that an ongoing trade will not get "corrupted" if you
  249. earn items before it is commited (only if you lose items from your
  250. inventory), and it is an annoyance when you realize the stuff you want to
  251. trade is on the cart/storage.
  252. * skill reiteration code now does not checks for the trigger-area of the
  253. skill in the case of non-players, which means mobs can now place traps in
  254. cells adjacent to each other. [Skotlex]
  255. * Applied an experimental weather code that should lower bandwidth usage to
  256. near-none, which's only disadvantage should be the weather not clearing out
  257. until moving to another map (even when the mapflag is removed from the
  258. current map). Please test and report if there's any anomalies with it.
  259. [Skotlex]
  260. * NPC_AGIUP will now give movement boost of 50% [Skotlex]
  261. * Fixed WZ_WATERBALL number of hits when used by non-players. [Skotlex]
  262. * MO_BODYRELOCATION will send the slide packet with the actual src's
  263. coordinates rather than selected tile. [Skotlex]
  264. 2006/05/17
  265. * Modified mob_can_changetarget to return true always when the new target
  266. is the provoked-by character. Fixes provoke not making the mob change
  267. target when it already is locked on another player. [Skotlex]
  268. * Added check to clear previous skill when combo time ends. Should fix TK
  269. Rankers being unable to initiate a combo with the same kick their previous
  270. combo was finished with. [Skotlex]
  271. * Power Up and Agi Up now increase Hit/Flee by 20%/lv [Skotlex]
  272. 2006/05/16
  273. * Modified "hide woe damage" to send the number of hits rather than 1 as
  274. damage Because when the damage is less than the number of hits, the client
  275. will display MISS. [Skotlex]
  276. * Fire Pillar will now do 200%MATK damage per hit when level is >10.
  277. [Skotlex]
  278. * Blood Drain always hits now. [Skotlex]
  279. * Fixed Mob Area Skills not updating their use-time (rendering their skill
  280. delay useless) [Skotlex]
  281. * Search free cell will now skip picking the center-tile as target
  282. location. Will prevent slaves from walking on top of their master, or mobs
  283. placing stuff right under themselves with the "around" target conditions
  284. among other things. [Skotlex]
  285. 2006/05/15
  286. * Small changes to the skill.conf
  287. - Monsters now can place ground skills on top of each other by default
  288. - Land_Skill_Limit format changed and set to "Only Players" by default
  289. * When reading mapflags, when a map is set to be pvp or gvg, the other will
  290. be turned off (disables pvp mapflags in gvg maps for pk-servers) [Skotlex]
  291. * Firepillar's damage per hit is now 100% MATK (rather than 20%) when the
  292. skill level is above 10. [Skotlex]
  293. * Sorted out the item_data structure, getiteminfo should work correctly
  294. now. [Skotlex]
  295. * KA* skills can now be casted on other Soul Linkers as well without the
  296. Spirit requirement. [Skotlex]
  297. * Soul Drain will now show the SP drained regardless of drain display
  298. settings. [Skotlex]
  299. * SC_COMBO state will now end in skill_attack rather than
  300. skill_check_condition (as it is required there to apply damage bonuses
  301. based on combo-casted skills) [Skotlex]
  302. * Fixed Option_Wedding in const.txt (0x1000 won't work, it has to be 4096)
  303. [Skotlex]
  304. * Fixed the nocast flag 2 (not usable in pvp) returning true in pk-mode
  305. servers. [Skotlex]
  306. * When removing a castle's owning guild, the char servers will erase the
  307. guardian data now. [Skotlex]
  308. * Changed the behaviour of immobile mobs when they can't chase their
  309. target. Rather than using a longrange skill and then unlocking, they will
  310. use an attack/angry state skill and then unlock. [Skotlex]
  311. * Some adjustments of how disguising + gm-hiding work together. [Skotlex]
  312. * Fixed clif_GlobalMessage being the exact same function as clif_message
  313. (the first should send to ALL_CLIENT and the later should send to
  314. AREA_CHAT_WOS). Should fix globalmes script command. [Skotlex]
  315. * Added SC_BLADESTOP to the switch listing in status_change_start [Skotlex]
  316. * Characters in vending are now always considered "idle" if the
  317. idle_no_share setting is active. [Skotlex]
  318. * Players with OPTION_INVISIBLE should not be sent to clients. [Lance]
  319. * Remaining fixes for item scripts. [Lance]
  320. * Added NPC event deprecated warnings to ease debugging old scripts. [Lance]
  321. 2006/05/12
  322. * Supplied fake NPC ID in sd->npc_id for item scripts. [Lance]
  323. * Bugfix on fake npc [Lance]
  324. * Fixed mob_once_spawn not working for non-random coordinates. [blackhole89]
  325. * Reverted again the change that stuns the caster on Ske, Ska, Swoo when
  326. the target is a nonplayer (rather than always) [Skotlex]
  327. * Modified mob_spawn_once so that coordinates -1,-1 are "random around the
  328. player" while 0,0 are random around the whole map (regardless of whether
  329. there's a player attached or not) [Skotlex]
  330. * Knockback will no longer work on traps during woe. [Skotlex]
  331. 2006/05/11
  332. * Fixed the definition of the KEY in the loginlog, thanks to TheUltraMage
  333. [Skotlex]
  334. * NPC_POWERUP and NPC_AGIUP now cause a increase in hit/flee (respectively)
  335. of 40% per level. [Skotlex]
  336. * Changed a bit the MAX_ZENY checks in trade.c to prevent overflows.
  337. [Skotlex]
  338. * Rewrote npc_selllist for a more proper-clean implementation. [Skotlex]
  339. * Increased NPC_POWERUP's dex bonus to +25*lv [Skotlex]
  340. * Moved TK_DOWNKICK's stun time from time to time2 [Skotlex]
  341. * Added TK_TURNKICK's stun to splash-pushed mobs. Duration is 2secs (time2)
  342. [Skotlex]
  343. * Merged the code for Ska, Ske, Swoo together. Swoo stun duration is now 10
  344. secs (reducable) if you target a mob that already has Swoo active. [Skotlex]
  345. * Added the missing semi-comma from the upgrade_svn6533.sql file. Thanks to
  346. Tanaous [Skotlex]
  347. * Added back the missing code that substracts arrows when normal-attacking.
  348. [Skotlex]
  349. 2006/05/10
  350. * Changed the state of Asura back to explosionspirits, added a hardcoded
  351. move_enable check when invoking Asura and NOT while in BladeStop or a
  352. Combo. [Skotlex]
  353. * Added back SC_XMAS to status.c, it got lost sometime during all the
  354. previous reworkings. [Skotlex]
  355. * Changed wedding costumes to use setoption rather than changebase.
  356. [Skotlex]
  357. * Modified setoption so that flag 1 or no flag adds an option, and flag 0
  358. removes it. [Skotlex]
  359. * Updated script_commands with the new behaviour. [Skotlex]
  360. * Updated mob_db2.txt and mob_db2.sql to have only 10 drop slots rather
  361. than 15. [Skotlex]
  362. * Users are now able to use their own dnsbl servers (login_athena) [Zido]
  363. 2006/05/09
  364. * Rewrote/cleaned up trade.c for a more clean trading implementation.
  365. [Skotlex]
  366. * Added @request commands, sends a request to all connected GMs of
  367. lowest_gm_level or above as a whisper message. Defaults to gm level 20
  368. users (UNTESTED). [Skotlex]
  369. * Modified @commands to use Meruru's code which is faster and does a fair
  370. attempt at tabulating the commands presented. [Skotlex]
  371. * Updated SKA to return a random value between 0 and 99 each time
  372. status_get_def is invoked. [Skotlex]
  373. * Updated Making Arrow to not include unidentified items in the list.
  374. [Skotlex]
  375. * Reduced drop slots from 15 to 10. [Skotlex]
  376. * Updated mob_db.sql with the current data. [Skotlex]
  377. * Updated setoption script command to receive a second (optional) argument
  378. flag. If the flag is 1, the option is added to what the player currently
  379. has; likewise using flag 2 removes only that option. No flag (or any other
  380. value) is the older behaviour of removing all other options and setting
  381. specificly what is passed. [Skotlex]
  382. * Updated script_commands information for setoption due to this change.
  383. [Skotlex]
  384. * Small fix in npc-created chat rooms to properly include the terminating 0
  385. on the chat's event. [Skotlex]
  386. * Fixed Fog of Wall's symmetry in respect to Misc attacks, they no longer
  387. get reduced by 50% regardless of who is standing on the fog. [Skotlex]
  388. * monster_ai&2 will now trigger the rude-attacked skill when the mob can't
  389. move and the attacker is out of it's attack range. [Skotlex]
  390. * Added missing icon for Joint Beat [Skotlex]
  391. * Mob-search functions will now skip enemies with no exp/job_exp. [Skotlex]
  392. * Treasure chests will now be excluded from the mob-drop listings
  393. (@whodrops) [Skotlex]
  394. * Fix on pc_skill which fixes overlapping when one gets more than one bonus
  395. for the same skill. [Skotlex]
  396. * Updated main.sql's loginlog table structure. [Skotlex]
  397. * Added svn_update6533.sql to update the loginlog structure as suggested by
  398. theultramage. [Skotlex]
  399. * Cleaned up somewhat the implementation of BladeStop. [Skotlex]
  400. * Fixed the head_bottom (pet-armor) position in packet 0x22c (walk packet)
  401. when crafted for non-players. [Skotlex]
  402. * Script commands sc_start, sc_start2 and sc_start4 will now start
  403. regardless of sc defense of the target player (that is, they cannot be
  404. avoided/blocked) [Skotlex]
  405. * Fixed a possible counter overflow in attacked_count, changed the var size
  406. to unsigned char since the code can handle the overflow now. [Skotlex]
  407. * Multiple targets again reduces armor defense, as reported by Tharis.
  408. [Skotlex]
  409. * Increased dex bonus of NPC_POWERUP to +20 per level. [Skotlex]
  410. * Fog of Wall's -50 hit reduction is now only for ranged attacks. [Skotlex]
  411. 2006/05/08
  412. * Reverted the change that was making ES skills stun the caster always.
  413. [Skotlex]
  414. * Removed the fixpos packet which is sent whenever you are hit while moving
  415. as Aegis doesn't sends this packet neither. [Skotlex]
  416. * ES magic will now put the caster on stun for 0.5 secs regardless of
  417. whether the skill-target is a mob or not. [Skotlex]
  418. * Added function clif_party_join_info which sends packet 0x1e9 each time a
  419. party-member joins. This packet (as redundant info as it has) should also
  420. contain the field for "adoptability", but that needs to be coded in yet.
  421. [Skotlex]
  422. * Added clif_ParseAdoptRequest which does the basic adoption handling. More
  423. checks and the reply packets still need to be coded in. [Skotlex]
  424. * Happy State and TK stances won't dispel on death now. [Skotlex]
  425. * Cleaned up combo-skill implementation, SC_COMBO is automatically ended in
  426. skill_check_condition now. [Skotlex]
  427. * Modified TK-ranker infinite combos to behave as described by AuronX.
  428. Refer to his thread in the development section for details. [Skotlex]
  429. * Made all Soul Link Spirit skills not be castable on self. [Skotlex]
  430. * Changed rate of NPC status effect skills to 50+10*lv% base chance
  431. (guessed, but better than 100% for all levels) [Skotlex]
  432. * Changed max level of NPC status effect skills to 5 [Skotlex]
  433. * Increased max number of tries to find a random spot in maps to 1000 since
  434. some maps have so many non-walkable tiles it's hard to find one in just 100
  435. tries. [Skotlex]
  436. * status_set_viewdata will remove the Wedding Option status when you set a
  437. class that is not wedding. [Skotlex]
  438. * hide_gvg_damage will now send 1 instead of -1 as damage. [Skotlex]
  439. * idletime will now be updated on attack-request, not on sit/standup
  440. [Skotlex]
  441. * Party members sitting will no longer be considered idle. [Skotlex]
  442. * Removed SP_DISGUISE from the bonus list (onequip/onunequip should be used
  443. with the disguise/undisguise script commands instead). [Skotlex]
  444. * Moved Sharp Shooting display to the block with Auto-Counter (since that's
  445. the other skill that can show critical as well) [Skotlex]
  446. * Corrected some fields in the standing still packet (guild emblem being
  447. stored as a Long when it should be Short) [Skotlex]
  448. * Modified most fields of view_data to be unsigned shorts rather than
  449. signed ones. [Skotlex]
  450. * On-Touch NPCs will now make you stop walking when you trigger them.
  451. [Skotlex]
  452. * ShadowJump/JumpKick will make you land on the target's cell now.
  453. [Skotlex]
  454. * Fixed Kaahi triggering only once per skill duration. [Skotlex]
  455. 2006/05/07
  456. * Fixed readme/changelog.html [KillerBox]
  457. * Removed old logs. [Lupus]
  458. TODO: 1. Add produce logging into PICKLOG 2. Replace map names with map index
  459. 2006/05/05
  460. * Optimized clif.c clif_scriptmenu/input/inputstr to check for sd->state.using_fake_npc
  461. before sending one (as it's not required to send twice).
  462. * Reinitialize sd->state.using_fake_npc in clif_parse_LoadEndAck (for scripts that warps
  463. players and still continues execution to work). [Lance]
  464. * Updated item_db.sql to current. [Skotlex]
  465. * Fixed a bug in @commands, most likely the reason some people were still
  466. getting crashes. [Skotlex]
  467. * Fixed @commands not showing the last available commands (unless the total
  468. amount of commands is divisible by ten) [Skotlex]
  469. * Added a npc-script-event cache to avoid looking up event-scripts every
  470. time they need to be executed. Events cached are all those defined in
  471. script_config (on login, logout, mapchange, death, kill, level up) [Skotlex]
  472. - Since the cache holds direct pointers to the npcs/events, do NOT unload
  473. the related NPCs or you'll get dangling pointer crashes. However,
  474. @reloadscript will work fine.
  475. - Set the etc_log to on to see a summary of npcs/events loaded for script
  476. execution on startup.
  477. * The Rest bonus activated by using /doridori while in rest should now
  478. trigger with all the class tree (TK/SL/SG) [Skotlex]
  479. * Fixed Kaupe always triggering when the one who was under Kaupe was a
  480. player rather than the one attacking... [Skotlex]
  481. * /doridori now won't double the HP/SP regen of TKs, it only activates
  482. their "happy" state. [Skotlex]
  483. * Added the -50 hit penalty when standing on Wall of Fog. [Skotlex]
  484. * Uncommented the status_calc_mdef2 call in status_calc_pc. [Skotlex]
  485. * Being in Enjoyable Rest state will now also trigger the HP/SP Time skills
  486. (even if there's no other TK around). [Skotlex]
  487. * Added battle config settings view_range_rate and chase_range_rate to
  488. adjust the view-range and chase-range (range2/range3) of the mob_db without
  489. having to manually change them (battle/monster.conf) [Skotlex]
  490. * Kaupe now will only block all skills of players, for non-players, only
  491. normal attacks can be missed. [Skotlex]
  492. * Moved the Kaite spell-reflect code after the damage calculation function,
  493. so the reflected damage is exactly the damage the original target would
  494. have received. Will only trigger if the damage to be reflected is above 0.
  495. [Skotlex]
  496. * OnEquip scripts will now trigger on log-on. [Skotlex]
  497. * Infinite Endure will no longer give mdef bonus. [Skotlex]
  498. * Removed bInfiniteEndure bonus, Eddga card now uses onequip/onunequip to
  499. start/end infinite endure. [Skotlex]
  500. * Fixed Kaahi's SP cost per heal. [Skotlex]
  501. * Now when walkdelay is set to 0, characters will stop walking when hit,
  502. but will not have any walk delay. (previously setting walk delay to 0 would
  503. not even stop characters from walking when hit) [Skotlex]
  504. 2006/05/04
  505. * Some people think its sexy to declare variables after blocks of code. Fixed. [Zido]
  506. * Fixed a possible infinite loop in skill_clear_unit_group [Skotlex]
  507. * Some clean-ups in the mob_ai [Skotlex]
  508. * Improved atcommand autoloot, now displays droprate in percents and notices
  509. player if autoloot is already on or off. Also simplified the code [Harbin, Kain],
  510. commited by erKURITA
  511. * Added one grace range in the mob_loot search function which should fix
  512. mob_can_reach failing when invoked with the same distance that distance_bl
  513. returned. [Skotlex]
  514. * Stun time for using ES magic on non-mobs reduced to 0.5 secs. [Skotlex]
  515. * Eska is now usable on bosses. [Skotlex]
  516. * Swoo will stun you if attempted on an already 'swooned' enemy. [Skotlex]
  517. * clif_skill_failed will print out a debug line with the skill_id (since
  518. the current null_po does not helps at all to fix it) [Skotlex]
  519. * Applied TheUltraMage's suggested fixes to the grfio module. [Skotlex]
  520. * Rewrote Kaahi to behave as it should. It will heal whatever amount of
  521. damage accumulates in the time2 interval (500ms by default) after being
  522. hit. [Skotlex]
  523. * Changed skill_unit_move_unit_group to enable moving of all types of
  524. ground-skills except ensembles (fixes warmth not following you) [Skotlex]
  525. 2006/05/03
  526. * Kaahi now triggers every 500ms rather than on every hit (but it only
  527. heals if in those 500ms an attack that would previously trigger Kaahi has
  528. taken effect). In other words, it works just like before, except damage
  529. gets "buffered" into 500ms slots. [Skotlex]
  530. * Kaite, Kaute will now show a skill effect when they trigger. [Skotlex
  531. * Knowledge will now only trigger if you logon to the memorized map, not
  532. walk into it. [Skotlex]
  533. * Corrected @whomap directly invoking msg_table[] rather than msg_txt()
  534. [Skotlex]
  535. * Guessed where the pet data goes in spawn packet 0x7c. This may be wrong
  536. and not fix the pet issue, but I doubt it'll cause any problems that won't
  537. be fixed by making the pet move. [Skotlex]
  538. * Updated Charge Attack's state from none to move_enable. [Skotlex]
  539. * Made tomahawk an NPC_SKILL so that it may not be plagiarized. [Skotlex]
  540. 2006/05/02
  541. * Fixed standing up not really standing you up. [Skotlex]
  542. * Moved battle_consume_ammo to the end of skill_castend_damage_id,
  543. skill_castend_nodamage_id and skill_castend_pos2 rather than
  544. battle_calc_weapon_attack. They will trigger when the player's arrow_atk
  545. state is active and a ground skill was not invoked. It should fix all
  546. issues with splash/ground skills consuming ammo per target rather than once
  547. per skill use. [Skotlex]
  548. * Added structure state to the ground skills, their fields are magic_power,
  549. into_abyss and ammo_consume to indicate the states that were previously
  550. stored in val3. [Skotlex]
  551. * Implemented desperado as explained by Rockman-EXE. The skill-effect is
  552. not showing up though, I'll need some logged packets to see what's missing.
  553. [Skotlex]
  554. * Removed the unit_can_move checks in skill cast-end, they should be
  555. performed in skill_check_require when the skill's state is move_enabled.
  556. [Skotlex]
  557. * Changed extremity fist's state to move_enabled, the explosion spirits
  558. check is now hardcoded. [Skotlex]
  559. * Absorb Spirit Sphere now gives +10SP per sphere as per discussions with
  560. Haplo. [Skotlex]
  561. * Changed a <= into a < in pc_steal_item. This means drops with 0.01% are
  562. impossible to steal unless you have at least 100% steal-rate (where steal
  563. rate is dex - opponent dex + skill_lv*3% + 10%) [Skotlex[
  564. * Cleaned up clif_parse_action_request to enable sitting/standing while in
  565. shops, interacting with npcs, etc. [Skotlex]
  566. * Kaite now works against all types of spells. [Skotlex]
  567. * Kaupe now works against all skills. [Skotlex]
  568. * Sanctuary now won't damage non-enemies. [Skotlex]
  569. * Blessing now will always give you bonus stats even if you are wearing
  570. undead armor. [Skotlex]
  571. * Modified how Rogue's treasure works so that you get +1% to your steal
  572. rate rather than +0.01% to the final rate. [Skotlex]
  573. * Rewrote Warmth to use ground-skill-units, it should behave now like in
  574. officials (implementation is not quite the same, but it should yield the
  575. same effects while consuming less bandwidth). "Stacking", as it's called,
  576. is possible now, but limited to eA's minimum timer skill interval (100ms).
  577. [Skotlex]
  578. * Modified NPC_POWERUP so that it gives +10 dex * skill level rather than
  579. +5+lv to all stats (as explained by Playtester and Tharis on how the skill
  580. behaves). [Skotlex]
  581. * Allowed SG_FEEL memorizing the same map for all three. [Skotlex]
  582. * SC_FUSION won't end when you die now. [Skotlex]
  583. 2006/05/01
  584. * Added knockback when you run into a wall during running. However
  585. position is not being refreshed on the client yet... [Skotlex]
  586. * Fixed pc_disguise not allowing you to "redisguise". [Skotlex]
  587. * Corrected a crash when sd is null in npc_event [Skotlex]
  588. * After testing to make sure it works properly, I'm including
  589. new battle conf options to limit MVP drops. [Reddozen]
  590. * Removed OPTION_XMAS, it seems to not exist.... [Skotlex]
  591. * Added SC_SMA to handle "ready to use SMA" status (rather than SC_COMBO)
  592. since it has a visual effect to use. [Skotlex]
  593. * Corrected the value of OPTION_FLYING [Skotlex]
  594. * Using SG_FUSION ends Soul Linked effect. [Skotlex]
  595. * status_setviewdata will set your option accordingly when the previous/new
  596. view-class is wedding or xmas suit. [Skotlex]
  597. * Added function map_foreachinshootrange, behaves the same way as
  598. map_foreachinrange, but it also performs a "shoot-path" check before
  599. invoking the function. Used in the skill subtimer function if
  600. skill_wall_check is defined. [Skotlex]
  601. * Fixed AL_WARP displaying "Unknown Area" selections when you don't have
  602. all memo points used up. [Skotlex]
  603. * Fixed alive_count not being reset on skill unitsetting, which leads to
  604. some groups not being cleared once all their units expire. [Skotlex]
  605. * Optimized Kaahi/Kahai, will now only show the amount of HP healed. Moved
  606. to skill_counter additional effect so it may trigger even on miss. [Skotlex]
  607. * SKA no longer blocks skills. [Skotlex]
  608. * Optimized fake npc system. Added npc_checknear back to npc_buysellsel. [Lance]