summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2018-07-28Constants Documentation SyncHercules.ws1-2/+2
Signed-off-by: HerculesWSAPI <dev@herc.ws>
2018-07-28Merge pull request #2139 from 4144/updatepacketsHaru20-10673/+10961
update packets up to 2018-07-18 and fix/update old packets
2018-07-28Merge pull request #2156 from Asheraf/novicefixAsheraf1-1/+0
remove specialeffect on first login from the novice academy script
2018-07-28Fix values in enum private_airship.Andrei Karas1-2/+2
2018-07-28Update packet CZ_NPC_MARKET_PURCHASE.Andrei Karas1-0/+4
2018-07-28Update HPM.Andrei Karas5-8/+111
2018-07-28Add packet ZC_GROUP_ISALIVE.Andrei Karas4-1/+31
2018-07-28Add missing field into packet ZC_NPCACK_SERVERMOVE.Andrei Karas3-4/+13
2018-07-28Fix check for packet 0xa43 and related packets.Andrei Karas2-9/+6
2018-07-28Update struct for packet CZ_REQ_OPEN_MAIL.Andrei Karas2-3/+4
2018-07-28Update packet ZC_WARPLIST.Andrei Karas3-16/+55
2018-07-28Fix packet version for packets 0xacb and 0xacc.Andrei Karas1-6/+5
2018-07-28Add support for chat commands /changedress and /nocosplay for remove costumesAndrei Karas4-2/+24
Also add at command for remove costumes @changedress and @nocosplay. Thanks @Lemongrass3110 and @Everade.
2018-07-28Add over weight packet.Andrei Karas4-0/+21
Thanks @functor-x
2018-07-28Update packets and keys up to 2018-07-25.Andrei Karas6-11/+23
2018-07-28Update messages table up to 2018-07-25.Andrei Karas3-10611/+10662
Also change latest version from numeric to word "latest" to reduce git history changes in future updates.
2018-07-28remove specialeffect on first login from the novice academy scriptAsheraf1-1/+0
this effect is officialy given thought the achievements system on first login.
2018-07-28Merge pull request #2147 from MishimaHaruna/fixcooldownHaru1-10/+4
Fix an issue that causes skill cooldowns to get stuck indefinitely
2018-07-28Constants Documentation SyncHercules.ws1-0/+70
Signed-off-by: HerculesWSAPI <dev@herc.ws>
2018-07-28MobDB SQL SyncHercules.ws1-0/+8
Signed-off-by: HerculesWSAPI <dev@herc.ws>
2018-07-28ItemDB SQL SyncHercules.ws2-1/+18
Signed-off-by: HerculesWSAPI <dev@herc.ws>
2018-07-28HPM Hooks UpdateHercules.ws11-1/+2502
Signed-off-by: HerculesWSAPI <dev@herc.ws>
2018-07-28Merge pull request #2067 from dastgirp/1-achievementHaru59-91/+17097
Implemented Achievement System and Title System
2018-07-26Merge pull request #2153 from 4144/sqlfixAsheraf1-1/+1
Fix syntax error in sql update file 2018-07-24--03-23.sql
2018-07-26Fix syntax error in sql update file 2018-07-24--03-23.sqlAndrei Karas1-1/+1
2018-07-26Fix an issue that causes skill cooldowns to get stuck indefinitelyHaru1-10/+4
A cooldown timer could expire before the associated character's data gets added to the ID/PC DB, causing skill_blockpc_end() to be unable to find and clear the cooldown data. This commit moves the cooldown loading function to a safe place, after the character data is initialized and added to the DB. Fixes #1535 Signed-off-by: Haru <haru@dotalux.com>
2018-07-26Merge pull request #2143 from dastgirp/plugin/unit_layoutHaru4-11/+11
Added missing parameter to init_unit_layout_unknown
2018-07-25Merge pull request #2093 from AnnieRuru/47-MAX_ARRAYSIZEHaru2-3/+3
Fix SCRIPT_MAX_ARRAYSIZE
2018-07-25Merge pull request #2117 from HerculesWS/seaottercard_fixHaru4-10/+10
Fix Sea-Otter Card not increasing Sushi Heal Rate
2018-07-25Constants Documentation SyncHercules.ws1-0/+1
Signed-off-by: HerculesWSAPI <dev@herc.ws>
2018-07-25ItemDB SQL SyncHercules.ws1-0/+1
Signed-off-by: HerculesWSAPI <dev@herc.ws>
2018-07-25HPM Hooks UpdateHercules.ws4-0/+34
Signed-off-by: HerculesWSAPI <dev@herc.ws>
2018-07-25Merge pull request #2138 from Asheraf/stylistupdateHaru8-8/+43
Add support for bodystyle in stylist shop ui
2018-07-25Merge pull request #2136 from Asheraf/petevofixHaru8-4/+48
Pet evolution bug fixes
2018-07-24Implemented Title System.Dastgir14-99/+301
2018-07-24Implementation of the official Achievement System.smokexyz31-12/+760
Source: http://ro.gnjoy.com/news/update/View.asp?seq=163&curpage=1 Script Commands - ``` achievement_progress(<ach_id>,<obj_idx>,<progress>,<incremental?>{,<char_id>}); ``` Includes an achievement_db.conf generator that reads from the item_db, mob_db (server side) and achievement_list.lub files to determine valid achievement entries based on item/monster availability. Achievements containing unsupported entries are commented out. This feature, although renewal-only in official servers, is capable of being used in pre-renewal mode on Hercules. Does not include the title system yet. A big thanks to - @MishimaHaruna for constantly reviewing. @4144 for all the support. @Asheraf for a lot of official information. Co-authored-by: "Dastgir" <dastgirp@gmail.com>
2018-07-24Add achievement source files.smokexyz19-6/+2534
Co-authored-by: "Dastgir" <dastgirp@gmail.com>
2018-07-24Add Achievement DB Add Achievement Rank DBsmokexyz6-7/+13471
Co-authored-by: "Dastgir" <dastgirp@gmail.com>
2018-07-24add support for PACKETVER >= 20180704 pet evolutionAsheraf2-1/+8
2018-07-24Correct wrong attribute used for pet evolution egg hidingAsheraf7-3/+40
2018-07-24Add SQL Upgrades for Achievementssmokexyz3-0/+64
Co-authored-by: "Dastgir" <dastgirp@gmail.com>
2018-07-24HPMHook UpdateDastgir2-8/+8
2018-07-24Added missing parameter to init_unit_layout_unknownDastgir2-3/+3
2018-07-24Constants Documentation SyncHercules.ws1-0/+11
Signed-off-by: HerculesWSAPI <dev@herc.ws>
2018-07-24HPM Hooks UpdateHercules.ws5-0/+407
Signed-off-by: HerculesWSAPI <dev@herc.ws>
2018-07-24Merge pull request #2107 from Asheraf/questinfo_vecHaru13-118/+596
Questinfo System overhaul
2018-07-24Update the constdb2doc plugin for compatibility with the reloadable constdbHaru1-1/+1
Follow-up to 1b73ceaad27dcd2226bc73c10e305e93609a084e Signed-off-by: Haru <haru@dotalux.com>
2018-07-24update scripts to use new questinfo formatAsheraf2-16/+48
2018-07-24Questinfo System overhaulAsheraf11-79/+532
2018-07-24Merge pull request #2130 from mekolat/reloadconstHaru5-30/+22
reload the const db on script reload