summaryrefslogtreecommitdiff
path: root/src/net/eathena/beingrecv.cpp
AgeCommit message (Collapse)AuthorFilesLines
2025-01-29Trim too much newliningFedja Beader1-15/+4
Pointless change, I know. **** mana/plus!115
2025-01-28Fix typo: opitons -> optionsFedja Beader1-4/+4
**** mana/plus!114
2024-08-28Remove silly msg.read* duplicationFedja Beader1-11/+9
& shaves ~5KB from debug binary. previd=""; while read -r line; do if [[ $line =~ .*"msg.read"[^\"]*"\""([^\"]*).* ]]; then id="${BASH_REMATCH[1]}"; if [[ "$id" == "$previd" ]]; then printf "%s\n" "$line"; fi; previd="$id"; fi; done < <(grep -r 'msg.read.*' src/net/) **** mana/plus!91
2024-03-25Typofix Guil -> Guild and insert AndFedja Beader1-8/+8
See merge request mana/plus!64
2024-02-09Update copyright headers up to 2023Jesusalva Jesusalva1-1/+2
2019-08-19Update packet SMSG_RANKS_LISTAndrei Karas1-2/+16
2019-06-24Fix code styleAndrei Karas1-2/+0
2019-05-15Add packet SMSG_NAME_RESPONSE_TITLE 0x0adfAndrei Karas1-0/+60
2019-02-12Add packet SMSG_SKILL_CASTING 0x0b1aAndrei Karas1-4/+46
2019-01-01Update copyright year.Andrei Karas1-1/+1
2018-11-27Remove extra ; from different code.Andrei Karas1-1/+1
2018-11-05Fix code style.Andrei Karas1-5/+14
2018-11-03Add packet SMSG_BEING_REMOVE_SPECIAL_EFFECT 0x0b0d.Andrei Karas1-0/+7
2018-10-29Fix code style.s20181102Andrei Karas1-1/+1
2018-09-26Add packet SMSG_BEING_VIEW_EQUIPMENT2 0x0b03.Andrei Karas1-0/+33
2018-09-25Add packet SMSG_PLAYER_GUILD_PARTY_INFO 0x0a30.Andrei Karas1-0/+36
2018-09-06Drop support for plugin version 17.Andrei Karas1-2/+1
2018-09-06Drop support for plugin version 16.Andrei Karas1-1/+1
2018-09-06Drop support for plugin version 15.Andrei Karas1-48/+12
2018-07-26Add support for changed item id size in packets.Andrei Karas1-10/+26
From some packet version hercules support item id fields as int32.
2018-05-23Remove extra includes.Andrei Karas1-1/+0
2018-05-20Show gm revive button in death dialog if player have rights for @alive command.Andrei Karas1-1/+1
2018-04-17Update BeingRecv::processSolveCharName for new zero protocol versions.Andrei Karas1-1/+3
2018-04-07Add packet SMSG_BEING_HAT_EFFECTS 0x0a3b.Andrei Karas1-0/+14
2018-04-06Add packet SMSG_SOLVE_CHAR_NAME 0x0af7.Andrei Karas1-0/+10
2018-04-02Read whole packet in BeingRecv::processBeingSpecialEffect even if being not ↵Andrei Karas1-0/+3
found.
2018-03-04Add support for hightlight attribute in groups.xmlAndrei Karas1-4/+0
This attribute allow to highlight gm groups based on groups.xml
2018-02-13Store clan names into each player being.Andrei Karas1-0/+18
2018-02-12Fix code style. Add missing actorManager null checks.Andrei Karas1-1/+16
2018-01-04Update copyrights year.Andrei Karas1-1/+1
2017-12-22Remove default parameters from effectmanager.Andrei Karas1-2/+2
2017-12-17Remove default parameters from localplayer.Andrei Karas1-2/+2
2017-12-17Remove default parameter from Being::updateSprite.Andrei Karas1-12/+36
2017-12-16Remove default parameters from Being::takeDamage.Andrei Karas1-1/+1
2017-11-08Add npc option for allow equipment.Andrei Karas1-11/+14
New option: allowEquipment Default value: false
2017-11-08Allow draw npc equipment sprites (only basic slots).Andrei Karas1-0/+11
2017-11-07Simplify set basic equipment for beings.Andrei Karas1-146/+110
2017-08-30Move some variables to better scope.Andrei Karas1-3/+6
2017-08-14Replace static members usage from pointers to direct classes.Andrei Karas1-4/+4
clang-tidy warning: readability-static-accessed-through-instance
2017-08-10Read whole packet in processPlayerStatusChange if being not found.Andrei Karas1-0/+9
2017-07-17Fix issues detected by coverity.Andrei Karas1-1/+3
2017-07-13Set group id from net code to not only local player.Andrei Karas1-8/+8
2017-07-12Rename gm level into group id in localplayer.cppAndrei Karas1-1/+1
2017-07-12Add packet SMSG_PLAYER_ATTRS 0x0b25.Andrei Karas1-10/+7
It allow set local player attributes from server. For now it send real group id.
2017-06-29Move foreach macroses into separate file.Andrei Karas1-0/+1
2017-06-19Auto close death dialog if local player resurrected.Andrei Karas1-1/+10
2017-06-07Fix clang-tidy check readability-implicit-bool-cast.Andrei Karas1-109/+110
2017-05-01Improve ServerFeatures haveExtendedRiding.Andrei Karas1-10/+3
2017-04-20Drop support server packet version 10 (Nov 15 2015).Andrei Karas1-10/+3
2017-04-05Add chat command for translate message from player language to english.Andrei Karas1-0/+2
Also add po field into languages.xml.