Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2020-03-17 | Add Grenades requirement to Spread Attack in RE mode to make Grenade ↵ | Kenpachi Developer | 1 | -0/+1 | |
Launchers usable | |||||
2020-03-15 | Make skills check if equipped ammunition type is appropriate for equipped weapon | Kenpachi Developer | 1 | -4/+2 | |
2020-03-14 | Make skills cast by Improvised Song ignore all requirements | Kenpachi Developer | 1 | -5/+7 | |
2020-03-14 | Remove IT_DELAYCONSUME related auto-cast code | Kenpachi Developer | 2 | -24/+0 | |
First of all: In official servers, skill casting item are consumed immediately and thus IT_DELAYCONSUME should not be used for those items And additionally these code blocks are obsolete, because of the way how skill casting items work. * If the item won't check the skill's requirements, the code block to delete the item of type IT_DELAYCONSUME isn't even executed. * If the item does check the skill's requirements, the check is done prior to the skill casting which would be the same as using IT_USABLE. | |||||
2020-03-14 | Remove skillitem and skillitemlv variables and use ↵ | Kenpachi Developer | 4 | -22/+15 | |
map_session_data->autocast.skill_id/_lv instead | |||||
2020-03-14 | Remove obsolete auto-cast type validation from ↵ | Kenpachi Developer | 1 | -18/+14 | |
skill_check_condition_castbegin() function | |||||
2020-03-14 | Use map_session_data->autocast.type instead of skillitem variable to check ↵ | Kenpachi Developer | 4 | -22/+22 | |
for auto-cast skills | |||||
2020-03-14 | Remove map_session_data->state.itemskill_* and use ↵ | Kenpachi Developer | 6 | -20/+7 | |
map_session_data->autocast.itemskill_* instead | |||||
2020-03-14 | Remove itemskill_id and itemskill_lv helper variables, since they are not ↵ | Kenpachi Developer | 3 | -15/+0 | |
used anymore | |||||
2020-03-14 | Remove skill_is_item_skill() function and use ↵ | Kenpachi Developer | 8 | -58/+6 | |
map_session_data->autocast.type instead | |||||
2020-03-14 | Remove map_session_data->state.abra_flag and use ↵ | Kenpachi Developer | 3 | -9/+7 | |
map_session_data->autocast.type instead | |||||
2020-03-14 | Remove map_session_data->state.autocast and use ↵ | Kenpachi Developer | 3 | -29/+6 | |
map_session_data->autocast.type instead | |||||
2020-03-14 | Add skill_validate_autocast_data() function calls | Kenpachi Developer | 2 | -4/+32 | |
2020-03-14 | Add skill_validate_autocast_data() function | Kenpachi Developer | 2 | -0/+27 | |
2020-03-14 | Remove misplaced pc_autocast_clear() function call | Kenpachi Developer | 1 | -5/+0 | |
2020-03-14 | Add pc_autocast_clear() function calls | Kenpachi Developer | 5 | -10/+18 | |
2020-03-14 | Rename function pc_itemskill_clear() to pc_autocast_clear() | Kenpachi Developer | 10 | -30/+30 | |
2020-03-14 | Add map_session_data->autocast.itemskill_* assignments | Kenpachi Developer | 2 | -0/+8 | |
2020-03-14 | Add map_session_data->autocast.skill_id/_lv assignments | Kenpachi Developer | 3 | -0/+8 | |
2020-03-14 | Add map_session_data->autocast.type assignments | Kenpachi Developer | 4 | -0/+38 | |
2020-03-14 | Update items which use new status changes | Kenpachi Developer | 2 | -5/+281 | |
2020-03-14 | Add SC_ALMIGHTY status change | Kenpachi Developer | 4 | -0/+15 | |
2020-03-14 | Add SC_SKF_CAST status change | Kenpachi Developer | 5 | -0/+15 | |
2020-03-14 | Add SC_SKF_ASPD status change | Kenpachi Developer | 4 | -0/+15 | |
2020-03-14 | Add SC_SKF_ATK status change | Kenpachi Developer | 4 | -0/+13 | |
2020-03-14 | Add SC_SKF_MATK status change | Kenpachi Developer | 4 | -0/+13 | |
2020-03-14 | Add SC_VITALIZE_POTION status change | Kenpachi Developer | 6 | -0/+19 | |
2020-03-14 | Add SC_POPECOOKIE status change | Kenpachi Developer | 4 | -0/+27 | |
2020-03-14 | Release v2020.03.08+1 | Haru | 1 | -3/+8 | |
Signed-off-by: Haru <haru@dotalux.com> | |||||
2020-03-14 | Merge pull request #2659 from skyleo/unit_aggro_fix | Ibrahem Zidan | 1 | -1/+1 | |
Fix wrong return-value on success by unit->walktobl | |||||
2020-03-14 | Fix wrong return-value on success by unit->walktobl | skyleo | 1 | -1/+1 | |
This bugged aggressive monsters for example, as they wouldn't move to you and just do a move animation on 1 cell, stationary. Introduced by fe378985d5267bee1f73049c826ad4f1e9c2b9c4 | |||||
2020-03-13 | Apply code style to clif_charnameupdate() function | Kenpachi Developer | 1 | -24/+35 | |
2020-03-13 | Apply code style to clif_pcname_ack() function | Kenpachi Developer | 1 | -39/+46 | |
2020-03-13 | Apply code style to ACMD(fakename) function | Kenpachi Developer | 1 | -16/+22 | |
2020-03-13 | Update doc/atcommands.txt | Kenpachi Developer | 1 | -4/+13 | |
2020-03-13 | Implement display options in clif_charnameupdate() function | Kenpachi Developer | 1 | -9/+32 | |
2020-03-13 | Implement display options in clif_pcname_ack() function | Kenpachi Developer | 1 | -27/+43 | |
2020-03-13 | Implement display options in ACMD(fakename) function | Kenpachi Developer | 2 | -2/+19 | |
2020-03-12 | Use script_pushstrcopy() instead of script_pushstr() for returning item names | Kenpachi Developer | 1 | -2/+2 | |
2020-03-11 | Add struct autocast_data to struct map_session_data | Kenpachi Developer | 1 | -0/+1 | |
2020-03-11 | Add structure for auto-cast related data | Kenpachi Developer | 1 | -0/+11 | |
2020-03-11 | Add enumeration for auto-cast types | Kenpachi Developer | 1 | -0/+9 | |
2020-03-11 | Free StringBuf is case of error in npc_expanded_barter_fromsql() function | Kenpachi Developer | 1 | -0/+1 | |
2020-03-09 | Release v2020.03.08 | Haru | 1 | -0/+58 | |
Signed-off-by: Haru <haru@dotalux.com> | |||||
2020-03-09 | Update Travis-CI configuration | Haru | 1 | -2/+2 | |
This is just a compatibility update, the configuration is equivalent to the previous Signed-off-by: Haru <haru@dotalux.com> | |||||
2020-03-09 | Update Doxygen configuration (Doxygen 1.8.16) | Haru | 1 | -40/+2025 | |
Signed-off-by: Haru <haru@dotalux.com> | |||||
2020-03-09 | Merge pull request #2651 from Emistry/clif_selllist_favorite | Haru | 1 | -0/+3 | |
Item with favorite flag can't sell to NPC. | |||||
2020-03-09 | Constants Documentation Sync | Hercules.ws | 1 | -1/+1 | |
Signed-off-by: HerculesWSAPI <dev@herc.ws> | |||||
2020-03-09 | ItemDB SQL Sync | Hercules.ws | 2 | -21/+21 | |
Signed-off-by: HerculesWSAPI <dev@herc.ws> | |||||
2020-03-09 | Merge pull request #2648 from Kenpachi2k13/itemskill_fix | Haru | 11 | -41/+101 | |
Fix itemskill() script command |