summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2019-10-20fix whitespaces in the script docgumi1-7/+7
2019-10-20add buildin_getguildinfogumi5-11/+112
2019-10-20Merge pull request #2550 from skyleo/cliff_aggro_ranged_no_attack_fixHaru1-7/+9
Fix aggressive ranged mobs not attacking from above a cliff
2019-10-20Fix ud->target_to not being cleared appropriatelyskyleo1-1/+3
2019-10-20Merge pull request #2547 from guilherme-gm/201910-dehardcode-dbHaru31-49/+504
Dehardcode DB files path
2019-10-19Update HPM HooksGuilherme Menaldo10-0/+322
2019-10-19Dehardcodes db/map_index.txt file pathGuilherme Menaldo3-0/+95
A new config file "conf/common/map-index.conf" is added to set the file path
2019-10-19Merge pull request #2563 from MishimaHaruna/cpcmds-fixesHaru2-1/+20
Console command fixes
2019-10-19Merge pull request #2562 from MishimaHaruna/cached-info-fixesHaru3-4/+12
Clean up cached party/guild data when leaving/disbanding
2019-10-19HPM Hooks UpdateHercules.ws4-0/+34
Signed-off-by: HerculesWSAPI <dev@herc.ws>
2019-10-19Merge pull request #2561 from skyleo/slave_anklesnare_fixHaru5-37/+73
Make slave mobs react to master's chase target
2019-10-19Merge pull request #2556 from skyleo/homunculus_fixesHaru2-12/+19
Homunculus skill fixes
2019-10-18Remove trailing whitespaceskyleo1-15/+15
2019-10-18Make slave mobs react to master's chase targetskyleo5-22/+58
This fixes slaves not chasing after master's chase target, when master was immobilized by an Ankle Snare for example midway.
2019-10-18Fix some issues with the strtok output in the console command parserHaru1-0/+17
- Fixes a crash in the console command parser when a line consisting only of spaces is executed. - Fixes some extra spaces accidentally passed at the beginning of the argument string to console commands, if the input started with multiple adjacent spaces. Signed-off-by: Haru <haru@dotalux.com>
2019-10-18Fix a missing mapindex update in the gm:info console commandHaru1-1/+3
Signed-off-by: Haru <haru@dotalux.com>
2019-10-18Merge pull request #2555 from guilherme-gm/201910-fix-vendingHaru1-1/+1
Fixes close merchant vending
2019-10-18Remove the party name from all affected characters when a party is disbandedHaru1-0/+1
Signed-off-by: Haru <haru@dotalux.com>
2019-10-18Clear the cached guild pointer when the guild id is cleared upon errorHaru1-1/+7
Signed-off-by: Haru <haru@dotalux.com>
2019-10-18Fix an issue that caused the saved character data to retain the old party ID ↵Haru1-3/+4
after leaving or getting kicked Signed-off-by: Haru <haru@dotalux.com>
2019-10-18Merge pull request #2553 from skyleo/magnum_break_delay_fixHaru3-13/+7
Correct Magnum Break delay
2019-10-18Merge pull request #2551 from guilherme-gm/201910-fix-sc-timesHaru14-157/+296
Fixes status changes effect timer when relogging
2019-10-18Merge pull request #2549 from skyleo/party_invis_hpbar_fixHaru1-6/+8
Fix HP bar not showing when unhiding in a party
2019-10-18Merge pull request #2537 from 4144/updatepacketsHaru48-80052/+80260
Update packets up to 2019-10-02
2019-10-18Merge pull request #2544 from Emistry/clif_skill_estimationHaru1-3/+3
Update Sense Skill - show 0 for negative values
2019-10-18ItemDB SQL SyncHercules.ws2-2/+2
Signed-off-by: HerculesWSAPI <dev@herc.ws>
2019-10-18Merge pull request #2543 from Emistry/item_db_5330Haru2-2/+2
Update Drooping Kitty item bonus
2019-10-18Merge pull request #2492 from dastgirp/huld/splitHaru10-142/+343
Split HULD translations to per NPC file instead of one large file
2019-10-18Merge pull request #2545 from Emistry/atcommand_dropallHaru2-6/+12
Update dropall atcommand
2019-10-18Merge pull request #1935 from dastgirp/2017-4_umbalaHaru1-1/+4
Umbala Script Update:
2019-10-18Merge pull request #2152 from dastgirp/clif_messagesHaru9-35/+77
Moved hardcoded messages to conf
2019-10-18Merge pull request #2540 from dastgirp/fix/buffer-overflow-npcshopdelHaru1-3/+5
Fixed heap-buffer-overflow on npcshopdelitem
2019-10-18Merge pull request #2538 from HerculesWS/arena_slipsslowrun_fixHaru1-0/+2
Fix a missing end in Slipslowrun NPC that allowed to reset the timer
2019-10-18Merge pull request #2552 from kisuka/CastleDefenseRateHaru4-11/+0
Removed jAthena 1082 legacy code related to Castle Defense Rate.
2019-10-17Add support for new skill packets in zero 20190918 and newerAndrei Karas2-6/+6
2019-10-17HPM updateAndrei Karas1-2/+0
2019-10-17Define constants for packet names ZC_INVENTORY_START and ZC_INVENTORY_ENDAndrei Karas2-9/+15
2019-10-17Fix compilation warnings in gcc-9Andrei Karas5-90/+14
Also reenabled array bound warning
2019-10-17Update travis build packet version to 20191016Andrei Karas1-8/+8
2019-10-17Update shuffle packets up to 2019-10-16Andrei Karas3-6/+14
2019-10-17Update packet keys up to 2019-10-16Andrei Karas2-4/+9
2019-10-17Update messages up to 2019-10-16Andrei Karas3-161/+313
2019-10-17Update packets table up to 2019-10-16Andrei Karas32-79766/+79881
Also remove packet names from packets table
2019-10-12Fix issues with @fakename.EyesOfAHawk1-2/+2
2019-10-10Fix Chaotic Blessings never healing the enemyskyleo2-4/+18
It has a chance to roll for enemy and heal the enemy, While calculating the chance was correct, it was getting the enemy with battle->check_target. But unit->stop_attack has been called before in unit->skilluse_id2, making battle->check_target return NULL at that point, since it has no attack target anymore. So it defaulted to heal the Homunculus itself, instead of the enemy.
2019-10-10Fix Homunculus skill failure message not displaying required itemskyleo1-1/+1
2019-10-10Fix Homunculus skill requirements being put on owner as wellskyleo1-7/+0
This fixes not being able to use Homunculus skills when having 90% overweight. This also fixes not being able to use Homunculus skills when the owner has low HP or SP, even though the Homunculus has enough HP or SP to use the skill.
2019-10-09Fixes close merchant vendingGuilherme Menaldo1-1/+1
There were some wrong checks that prevented the vend to be closed.
2019-10-09Correct Magnum Break delayskyleo3-13/+7
Credit to: https://github.com/rathena/rathena/commit/fc2c6e02
2019-10-08Removed jAthena 1082 legacy code related to Castle Defense Rate.kisuka4-11/+0