summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2020-03-08Use *DWord functions for saving x & y into data of unit->delay_walktoxy_timerskyleo1-4/+5
2020-03-08Add documentation for unit->delay_walktoxy_timerskyleo1-0/+8
2020-03-08Change returning error-code in unit->delay_walktoxy_timer to obey code-style ↵skyleo1-2/+2
guidelines
2020-03-08Move bitwise-operations into named variables in unit->delay_walktoxy_timerskyleo1-1/+3
2020-03-08Apply code-style to nullpointer-checks in unit->delay_walktoxy_timerskyleo1-2/+1
2020-03-08Remove refactor-continue commentskyleo1-1/+0
2020-03-08HPM Hooks UpdateHaru1-4/+2
2020-03-08Add support for enum market_buy_result and enum unit_dir to the HPMHookGenHaru1-0/+2
Signed-off-by: Haru <haru@dotalux.com>
2020-03-08Update HPM Hooksskyleo4-86/+88
2020-03-08Refactor code using directions to use enum unit_dirskyleo11-205/+207
This removes a lot of duplicated code, especially related to people not using the arrays dirx and diry. Assertions for whenever these arrays are used have been added as well, to ensure valid index range. Some trailing white space has been removed as well.
2020-03-08Add enum unit_dir and make direction functions use itskyleo5-57/+135
Without a doubt the readability of code will be increased by this greatly
2020-03-08Refactor unit_walktoxy_timerskyleo2-156/+159
2020-03-08Update Coding Style in unit->step_timerskyleo1-9/+9
2020-03-08Update error-code and some Coding Style in unit->step_timerskyleo1-33/+23
2020-03-08Change returning error-code in unit->walktoxy_subskyleo1-3/+3
2020-03-08Update Coding Style in unit->walktoxy_subskyleo1-10/+11
2020-03-08Rename reused var appropriately in unit->walktoxy_subskyleo1-11/+12
2020-03-08Move declarations to initializations in unit->walktoxy_subskyleo1-8/+6
2020-03-08Add documentation for unit->walktoxy_subskyleo1-0/+5
2020-03-08Refactor unit->bl2udskyleo1-9/+20
2020-03-08ItemDB SQL SyncHercules.ws2-14/+14
Signed-off-by: HerculesWSAPI <dev@herc.ws>
2020-03-08Merge pull request #2634 from Kenpachi2k13/item_db_updateHaru2-7/+65
Update items 12459-12465
2020-03-08Merge pull request #2612 from skyleo/basilica_target_checkHaru1-4/+5
Fix Basilica unintentionally restraining boss mobs
2020-03-08Constants Documentation SyncHercules.ws1-0/+8
Signed-off-by: HerculesWSAPI <dev@herc.ws>
2020-03-08Merge pull request #2650 from Emistry/constant_itemboundtypeHaru3-20/+27
Added Item Bound Type constants
2020-03-08Constants Documentation SyncHercules.ws1-3/+3
Signed-off-by: HerculesWSAPI <dev@herc.ws>
2020-03-08Merge pull request #2645 from 4144/updatepacketsHaru18-55/+404
Update packets up to 2020-03-04
2020-03-07Merge pull request #2643 from dastgirp/asura/fixHaru1-15/+15
Missing get_index call in Skill2SCTable.
2020-03-08Added Item Bound Type constantsEmistry Haoyan3-20/+27
- improve readability.
2020-03-07Item with favorite flag can't sell to NPC.Emistry Haoyan1-0/+3
- disable selling of favorite item to NPC.
2020-03-07Apply code style to pc_isequip() functionKenpachi Developer1-52/+66
2020-03-07Apply code style to pc_equipitem() functionKenpachi Developer1-97/+109
2020-03-07Apply code style to pc_unequipitem() functionKenpachi Developer1-68/+75
2020-03-07Change execution order in pc_isequip() functionKenpachi Developer1-17/+18
Validating, if the item is disabled by the map's zone, should be done prior to the validation of the character's status changes. If not, equipment, enabled by Super Novice Spirit, is able to bypass the map zone restriction.
2020-03-07Add execution of unequip script when entering a zone where item is restrictedKenpachi Developer1-0/+59
In official servers, an item's unequip script is executed when entering a zone where the item is restricted, even if the item won't be unequipped.
2020-03-06Add the requirement to have a weapon equipped to RK_CRUSHSTRIKE skillKenpachi Developer2-0/+50
According to my tests on AEGIS, the CRUSHSTRIKE skill requires an equipped weapon for casting.
2020-03-06Add a 15 HPCost requirement to CASH_INCAGI skillKenpachi Developer2-0/+6
According to my tests on AEGIS, the CASH_INCAGI skill requires 15 HP for casting and also consumes them.
2020-03-06Fix script of items which check and consume skill requirementsKenpachi Developer2-22/+22
2020-03-06Update doc/script_commands.txtKenpachi Developer1-8/+10
2020-03-06Change validation of itemskill_check_conditions according to new nameKenpachi Developer2-4/+4
2020-03-06Rename itemskill_no_conditions to itemskill_check_conditionsKenpachi Developer4-7/+7
2020-03-06Rename ISF_IGNORECONDITIONS to ISF_CHECKCONDITIONSKenpachi Developer2-3/+3
2020-03-06Add pc_itemskill_clear() calls to BUILDIN(itemskill)Kenpachi Developer1-0/+2
2020-03-05Fix conditions to call pc_itemskill_clear() functionKenpachi Developer1-2/+2
2020-03-05Change default packet version to 2019-05-30Andrei Karas1-1/+1
2020-03-05Update packet version in travis builds to latestAndrei Karas1-8/+8
2020-03-05Update keys and shuffle packetsAndrei Karas5-20/+35
2020-03-05Update messages tableAndrei Karas3-9/+287
2020-03-05Update packets tableAndrei Karas6-12/+57
2020-02-23Missing get_index call in Skill2SCTable.Dastgir1-15/+15
Fixes #2636