Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2018-12-12 | Update keys up to 2018-12-12 | Andrei Karas | 2 | -4/+11 | |
2018-12-12 | Fix packet ZC_CLANINFO. | Andrei Karas | 2 | -9/+12 | |
2018-11-27 | Add support for int32 item id fields in zero client 20181114. | Andrei Karas | 4 | -71/+86 | |
2018-11-27 | Add incomplete packet CA_ACK_MOBILE_OTP. | Andrei Karas | 1 | -4/+0 | |
2018-11-26 | fix map_forcountinmap using block size rather than cell size | gumi | 1 | -1/+1 | |
closes #2330 | |||||
2018-11-21 | Fix a regression that prevented characters from being resurrected | Haru | 1 | -1/+1 | |
Caused by a wrong check in 8269fdcd5d036ddc3c24bc0ebb4ad958b5c19a3a Signed-off-by: Haru <haru@dotalux.com> | |||||
2018-11-20 | Change short group to bool is_group in s_add_drop | skyleo | 3 | -17/+15 | |
current checks for empty entries assumed that if id and group is 0 that it is empty, while in fact ITMCHAIN_ORE has group 0 as value, for easier checks and more aesthetic code short group has been replaced, id's are now always written into short id and bool is_group decides if it's an item or a group. | |||||
2018-11-16 | Merge pull request #2322 from MishimaHaruna/fix-allychat-leaveguild | Haru | 7 | -73/+49 | |
Fix allychat leaveguild | |||||
2018-11-15 | Merge pull request #2321 from 4144/packetlen | Haru | 14 | -21272/+18846 | |
Add complete packet len table | |||||
2018-11-15 | Update keys up to 2018-11-14. | Andrei Karas | 2 | -23/+26 | |
2018-11-15 | Update messages to 2018-11-14. | Andrei Karas | 1 | -1/+46 | |
2018-11-15 | Remove packet len field from packet macro and packet functions. | Andrei Karas | 1 | -8/+6 | |
2018-11-15 | Remove packet len fields from packets.h | Andrei Karas | 4 | -18680/+18715 | |
2018-11-14 | Merge pull request #1233 from dastgirp/r5-defense | Haru | 2 | -31/+36 | |
Fixed defense overflow exploit | |||||
2018-11-14 | Clarify the code around the def/flee reduction for multiple attackers | Haru | 1 | -31/+35 | |
This is just a clarification/sanitization, no functional changes intended. Signed-off-by: Haru <haru@dotalux.com> | |||||
2018-11-14 | Merge pull request #1215 from HerculesWS/HP_Display | Haru | 9 | -144/+218 | |
Fixes #889 & #840 | |||||
2018-11-14 | Merge pull request #2255 from Emistry/doc_mob_mode | Haru | 1 | -1/+1 | |
Update Monster Modes Documentation | |||||
2018-11-14 | Extend status->heal() with a flag to allow reviving a dead character | Haru | 3 | -3/+5 | |
This adds `STATUS_HEAL_ALLOWREVIVE` to `enum status_heal_flag`. Fixes an issue caused by a hack in the resurrection code, that would make characters respawn with 2 HP instead of 1. Signed-off-by: Haru <haru@dotalux.com> | |||||
2018-11-14 | Use an enum as flag for status->heal() and related functions | Haru | 7 | -127/+154 | |
This introduces the `enum status_heal_flag`. No functional changes are made. Signed-off-by: Haru <haru@dotalux.com> | |||||
2018-11-14 | Fixes #889 & #840 | Jedzkie | 5 | -15/+60 | |
- Novice classes will never go below 50% hp when died. - Other classes will show 1 HP rather than 0 when died. - Added battle configuration. Signed-off-by: Haru <haru@dotalux.com> | |||||
2018-11-14 | Remove len field from shuffle packets. | Andrei Karas | 3 | -17526/+17527 | |
2018-11-14 | Remove empty #if blocks from packets.h | Andrei Karas | 1 | -1138/+2 | |
2018-11-14 | Remove useless packets lines from packets.h | Andrei Karas | 1 | -1393/+3 | |
2018-11-14 | Add send packet validation for connections between server and clients. | Andrei Karas | 3 | -0/+3 | |
2018-11-14 | Add compile time validation for packet ZC_ITEM_PREVIEW. | Andrei Karas | 3 | -18/+30 | |
2018-11-14 | Use new packet tables for packets len. | Andrei Karas | 3 | -12/+14 | |
2018-11-14 | Add interface for packets in common. | Andrei Karas | 4 | -8/+9 | |
For now supported only packet length fields. | |||||
2018-11-13 | use a dedicated zone remove function when reloading zones | gumi | 3 | -2/+25 | |
2018-11-13 | Fixed code that assumed the character to be already on a map, on login | Haru | 1 | -2/+5 | |
Signed-off-by: Haru <haru@dotalux.com> | |||||
2018-11-13 | Remove a duplicate output line from the help message for the channel atcommand | Haru | 1 | -3/+1 | |
Signed-off-by: Haru <haru@dotalux.com> | |||||
2018-11-13 | Fixed character not joining its guild chat when joining a new guild. | Mathy | 1 | -0/+5 | |
2018-11-13 | Fix an issue that caused some guild channels not to be left when leaving ↵ | Haru | 2 | -8/+7 | |
allychat - The issue was caused by an array compaction while iterating through the array members. - A visible effect was that under certain conditions (depending on the alliance size), a character that left a guild could still see allychat messages from some of the allied guilds. Signed-off-by: Haru <haru@dotalux.com> | |||||
2018-11-13 | Replace sd->channels with a VECTOR | Haru | 6 | -65/+36 | |
This removes some shady array compaction code and prepares the ground for some further fixes. Signed-off-by: Haru <haru@dotalux.com> | |||||
2018-11-13 | Merge pull request #2289 from EyesOfAHawk/buildin_getnpcid | Haru | 1 | -21/+12 | |
Remove type argument from buildin_getnpcid. | |||||
2018-11-13 | Remove type argument from buildin_getnpcid. | EyesOfAHawk | 1 | -21/+12 | |
2018-11-13 | Merge pull request #2287 from EyesOfAHawk/hcs_opt_msg_delay | Haru | 3 | -3/+15 | |
Add config for '@channel setopt MessageDelay <delay>' | |||||
2018-11-13 | Merge pull request #2286 from EyesOfAHawk/channel_delay_msg | Haru | 1 | -1/+3 | |
Change channel delay message to time left instead of generic message. | |||||
2018-11-13 | Merge pull request #2265 from dastgirp/coverity/fix1 | Haru | 1 | -23/+0 | |
Fixed Logically Dead Code in status.c | |||||
2018-11-13 | Merge pull request #2310 from 4144/updatepackets | Haru | 11 | -457/+786 | |
Update packets and messages up to 2018-11-07 | |||||
2018-11-13 | Merge pull request #2304 from Helianthella/data-to-string | Haru | 1 | -0/+59 | |
add data_to_string() | |||||
2018-11-13 | Merge pull request #2105 from Helianthella/getunits3 | Haru | 3 | -11/+17 | |
break the loop in buildin_getunits when the max is reached | |||||
2018-11-13 | Fix report about unhandled packets. | Andrei Karas | 1 | -2/+2 | |
2018-11-07 | break the loop in buildin_getunits when the max is reached | gumi | 3 | -11/+17 | |
2018-11-07 | Update packet ZC_AUTOSPELLLIST. | Andrei Karas | 2 | -34/+54 | |
2018-11-07 | Fix packet ZC_FORMATSTRING_MSG_COLOR for old clients. | Andrei Karas | 2 | -0/+4 | |
2018-11-07 | Update packet ZC_ITEM_PREVIEW for zero 2018-10-24 | Andrei Karas | 2 | -3/+3 | |
2018-11-07 | Update non shuffle packets list up to 2018-10-31 | Andrei Karas | 1 | -2/+24 | |
2018-11-07 | Update messages up to 2018-11-07 | Andrei Karas | 3 | -3/+219 | |
2018-11-07 | Update shuffle packets up to 2018-11-07 | Andrei Karas | 3 | -6/+14 | |
2018-11-07 | Update keys up to 2018-11-07 | Andrei Karas | 2 | -407/+466 | |