Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Bug fixes:
-- Pin code issue after char_refac (bugreport:9027) -- Delete date issue after char_refac (bugreport:9029) -- Stuck when drag item from/to inventory/cart/storage if the item cannot be moved. (bugreport:8935) Command: -- Added @cloneequip to clone other's equipments. -- Added @clonestat to clone other's statuses. -- Thank Antares for the suggestion, http://rathena.org/board/topic/95076-new-atcommands-suggestion/ Permission: -- Added 'bypass_stat_onclone' to make user who use @clonestat can bypass stat limit. -- Change 'atcommand_enable_npc' to 'command_enable' permission to enable use command while talking with NPC. Suggested by @aleos long time ago. Misc: -- Correcting some checks for bAddEff bonuses. -- Moved status point calculaiton formula to PC_STATUS_POINT_COST, removing redundancy in pc_need_status_point and pc_maxparameterincrease. -- Added pc_is_same_equip_index function to move all item index checks, removing redundancy in some cases. -- Some random in-source documentations. -- Updated map_msg_idn.conf. Signed-off-by: Cydh Ramdh <house.bad@gmail.com>
- Loading branch information
Showing
with
837 additions
and 538 deletions.
- +2 −0 conf/atcommand_athena.conf
- +0 −3 conf/battle/gm.conf
- +2 −0 conf/groups.conf
- +8 −1 conf/msg_conf/map_msg.conf
- +16 −4 conf/msg_conf/map_msg_idn.conf
- +14 −0 doc/atcommands.txt
- +12 −0 doc/permissions.txt
- +8 −8 src/char/char.h
- +1 −1 src/char/char_clif.c
- +175 −9 src/map/atcommand.c
- +0 −1 src/map/battle.c
- +0 −1 src/map/battle.h
- +3 −7 src/map/clif.c
- +1 −1 src/map/clif.h
- +1 −1 src/map/itemdb.c
- +1 −1 src/map/map.h
- +407 −315 src/map/pc.c
- +51 −42 src/map/pc.h
- +4 −0 src/map/pc_groups.h
- +7 −4 src/map/pet.c
- +25 −22 src/map/script.c
- +0 −1 src/map/script.h
- +5 −4 src/map/skill.c
- +9 −19 src/map/status.c
- +75 −83 src/map/storage.c
- +9 −9 src/map/storage.h
- +1 −1 src/map/trade.c
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @@ -60,6 +60,8 @@ aliases: { | ||
| itemreset: ["clearinventory"] | ||
| channel: ["main"] | ||
| autoloottype: ["aloottype"] | ||
| cloneequip: ["eqclone"] | ||
| clonestat: ["stclone"] | ||
| } | ||
|
|
||
| /* Commands help file */ | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.