summaryrefslogtreecommitdiff
path: root/src/map
AgeCommit message (Collapse)AuthorFilesLines
2018-11-20Change short group to bool is_group in s_add_dropskyleo3-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-16Merge pull request #2322 from MishimaHaruna/fix-allychat-leaveguildHaru7-73/+49
Fix allychat leaveguild
2018-11-15Merge pull request #2321 from 4144/packetlenHaru14-21272/+18846
Add complete packet len table
2018-11-15Update keys up to 2018-11-14.Andrei Karas2-23/+26
2018-11-15Update messages to 2018-11-14.Andrei Karas1-1/+46
2018-11-15Remove packet len field from packet macro and packet functions.Andrei Karas1-8/+6
2018-11-15Remove packet len fields from packets.hAndrei Karas4-18680/+18715
2018-11-14Merge pull request #1233 from dastgirp/r5-defenseHaru2-31/+36
Fixed defense overflow exploit
2018-11-14Clarify the code around the def/flee reduction for multiple attackersHaru1-31/+35
This is just a clarification/sanitization, no functional changes intended. Signed-off-by: Haru <haru@dotalux.com>
2018-11-14Merge pull request #1215 from HerculesWS/HP_DisplayHaru9-144/+218
Fixes #889 & #840
2018-11-14Merge pull request #2255 from Emistry/doc_mob_modeHaru1-1/+1
Update Monster Modes Documentation
2018-11-14Extend status->heal() with a flag to allow reviving a dead characterHaru3-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-14Use an enum as flag for status->heal() and related functionsHaru7-127/+154
This introduces the `enum status_heal_flag`. No functional changes are made. Signed-off-by: Haru <haru@dotalux.com>
2018-11-14Fixes #889 & #840Jedzkie5-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-14Remove len field from shuffle packets.Andrei Karas3-17526/+17527
2018-11-14Remove empty #if blocks from packets.hAndrei Karas1-1138/+2
2018-11-14Remove useless packets lines from packets.hAndrei Karas1-1393/+3
2018-11-14Add send packet validation for connections between server and clients.Andrei Karas3-0/+3
2018-11-14Add compile time validation for packet ZC_ITEM_PREVIEW.Andrei Karas3-18/+30
2018-11-14Use new packet tables for packets len.Andrei Karas3-12/+14
2018-11-14Add interface for packets in common.Andrei Karas4-8/+9
For now supported only packet length fields.
2018-11-13use a dedicated zone remove function when reloading zonesgumi3-2/+25
2018-11-13Fixed code that assumed the character to be already on a map, on loginHaru1-2/+5
Signed-off-by: Haru <haru@dotalux.com>
2018-11-13Remove a duplicate output line from the help message for the channel atcommandHaru1-3/+1
Signed-off-by: Haru <haru@dotalux.com>
2018-11-13Fixed character not joining its guild chat when joining a new guild.Mathy1-0/+5
2018-11-13Fix an issue that caused some guild channels not to be left when leaving ↵Haru2-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-13Replace sd->channels with a VECTORHaru6-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-13Merge pull request #2289 from EyesOfAHawk/buildin_getnpcidHaru1-21/+12
Remove type argument from buildin_getnpcid.
2018-11-13Remove type argument from buildin_getnpcid.EyesOfAHawk1-21/+12
2018-11-13Merge pull request #2287 from EyesOfAHawk/hcs_opt_msg_delayHaru3-3/+15
Add config for '@channel setopt MessageDelay <delay>'
2018-11-13Merge pull request #2286 from EyesOfAHawk/channel_delay_msgHaru1-1/+3
Change channel delay message to time left instead of generic message.
2018-11-13Merge pull request #2265 from dastgirp/coverity/fix1Haru1-23/+0
Fixed Logically Dead Code in status.c
2018-11-13Merge pull request #2310 from 4144/updatepacketsHaru11-457/+786
Update packets and messages up to 2018-11-07
2018-11-13Merge pull request #2304 from Helianthella/data-to-stringHaru1-0/+59
add data_to_string()
2018-11-13Merge pull request #2105 from Helianthella/getunits3Haru3-11/+17
break the loop in buildin_getunits when the max is reached
2018-11-13Fix report about unhandled packets.Andrei Karas1-2/+2
2018-11-07break the loop in buildin_getunits when the max is reachedgumi3-11/+17
2018-11-07Update packet ZC_AUTOSPELLLIST.Andrei Karas2-34/+54
2018-11-07Fix packet ZC_FORMATSTRING_MSG_COLOR for old clients.Andrei Karas2-0/+4
2018-11-07Update packet ZC_ITEM_PREVIEW for zero 2018-10-24Andrei Karas2-3/+3
2018-11-07Update non shuffle packets list up to 2018-10-31Andrei Karas1-2/+24
2018-11-07Update messages up to 2018-11-07Andrei Karas3-3/+219
2018-11-07Update shuffle packets up to 2018-11-07Andrei Karas3-6/+14
2018-11-07Update keys up to 2018-11-07Andrei Karas2-407/+466
2018-10-22add buildin_data_to_string and buildin_string_to_datagumi1-0/+59
2018-10-22Merge pull request #2279 from Helianthella/promptHaru3-99/+30
deprecate buildin_prompt, bake it into buildin_select
2018-10-22Merge pull request #2264 from Asheraf/pr5Haru1-12/+1
update at_bodystyle allowed jobs check
2018-10-22Add script command itempreview for update preview window with given item.Andrei Karas1-0/+12
2018-10-22Add packet ZC_ITEM_PREVIEW.Andrei Karas3-0/+38
It allow show item preview in already opened preview window.
2018-10-22Add missing checks into camera packets.Andrei Karas1-0/+2