diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-03-13 15:49:49 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-03-13 15:49:49 +0000 |
commit | aca2d8434c6aba5250c346fa6ad668f43ca763d2 (patch) | |
tree | 4b13c1a546cea4963e2c848505b083e06e506114 /src/map/atcommand.c | |
parent | 11d86b0d40e6e30b7ac138f17947a34ac841c3ee (diff) | |
download | hercules-aca2d8434c6aba5250c346fa6ad668f43ca763d2.tar.gz hercules-aca2d8434c6aba5250c346fa6ad668f43ca763d2.tar.bz2 hercules-aca2d8434c6aba5250c346fa6ad668f43ca763d2.tar.xz hercules-aca2d8434c6aba5250c346fa6ad668f43ca763d2.zip |
- @pvpoff and @gvgoff will make everyone in the map stop auto-attacking now.
- when @killer is deactivated the issuer will stop attacking.
- when @killable is deactivated, everyone around the user who is attacking the issuer will stop.
- Cleaned up some the code for dispell. It no longer removes food boosts.
- Players will stop attacking when they change their look.
- Applied Alydis's fix to the mvp item logs logging mvp items even if the player couldn't get the item.
- Changed the default of debuff_on_logout to 1 since food items shouldn't dispell on logout.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9997 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/atcommand.c')
-rw-r--r-- | src/map/atcommand.c | 31 |
1 files changed, 23 insertions, 8 deletions
diff --git a/src/map/atcommand.c b/src/map/atcommand.c index 64396fa4b..b104633a6 100644 --- a/src/map/atcommand.c +++ b/src/map/atcommand.c @@ -2922,6 +2922,17 @@ int atcommand_gm(const int fd, struct map_session_data* sd, const char* command, return 0; } +static int atcommand_stopattack(struct block_list *bl,va_list ap) +{ + struct unit_data *ud = unit_bl2ud(bl); + int id = va_arg(ap, int); + if (ud && ud->attacktimer != INVALID_TIMER && (!id || id == ud->target)) + { + unit_stop_attack(bl); + return 1; + } + return 0; +} /*========================================== * *------------------------------------------ @@ -2953,6 +2964,7 @@ int atcommand_pvpoff(const int fd, struct map_session_data* sd, const char* comm map[sd->bl.m].flag.pvp = 0; clif_send0199(sd->bl.m, 0); map_foreachinmap(atcommand_pvpoff_sub,sd->bl.m, BL_PC); + map_foreachinmap(atcommand_stopattack,sd->bl.m, BL_CHAR, 0); clif_displaymessage(fd, msg_txt(31)); // PvP: Off. return 0; } @@ -3005,6 +3017,7 @@ int atcommand_gvgoff(const int fd, struct map_session_data* sd, const char* comm if (map[sd->bl.m].flag.gvg) { map[sd->bl.m].flag.gvg = 0; clif_send0199(sd->bl.m, 0); + map_foreachinmap(atcommand_stopattack,sd->bl.m, BL_CHAR, 0); clif_displaymessage(fd, msg_txt(33)); // GvG: Off. } else { clif_displaymessage(fd, msg_txt(162)); // GvG is already Off. @@ -6888,10 +6901,11 @@ int atcommand_killer(const int fd, struct map_session_data* sd, const char* comm sd->state.killer = !sd->state.killer; if(sd->state.killer) - clif_displaymessage(fd, msg_txt(241)); - else - clif_displaymessage(fd, msg_txt(287)); - + clif_displaymessage(fd, msg_txt(241)); + else { + clif_displaymessage(fd, msg_txt(287)); + pc_stop_attack(sd); + } return 0; } @@ -6906,10 +6920,11 @@ int atcommand_killable(const int fd, struct map_session_data* sd, const char* co sd->state.killable = !sd->state.killable; if(sd->state.killable) - clif_displaymessage(fd, msg_txt(242)); - else - clif_displaymessage(fd, msg_txt(288)); - + clif_displaymessage(fd, msg_txt(242)); + else { + clif_displaymessage(fd, msg_txt(288)); + map_foreachinrange(atcommand_stopattack,&sd->bl, AREA_SIZE, BL_CHAR, sd->bl.id); + } return 0; } |