diff options
author | mc_cameri <mc_cameri@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2004-11-22 10:26:39 +0000 |
---|---|---|
committer | mc_cameri <mc_cameri@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2004-11-22 10:26:39 +0000 |
commit | 0113082fd5a64bb8787f52b293f0018b557b8452 (patch) | |
tree | 0ed3c8c117767a0e1f7ac0c493bf848e8e710549 /src/map/atcommand.c | |
parent | 1741d214fc89dbe02a704474740d92cd7e8618a2 (diff) | |
download | hercules-0113082fd5a64bb8787f52b293f0018b557b8452.tar.gz hercules-0113082fd5a64bb8787f52b293f0018b557b8452.tar.bz2 hercules-0113082fd5a64bb8787f52b293f0018b557b8452.tar.xz hercules-0113082fd5a64bb8787f52b293f0018b557b8452.zip |
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/athena@311 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/atcommand.c')
-rw-r--r-- | src/map/atcommand.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/map/atcommand.c b/src/map/atcommand.c index 286f5837f..b8368db1d 100644 --- a/src/map/atcommand.c +++ b/src/map/atcommand.c @@ -1974,6 +1974,7 @@ int atcommand_die( const int fd, struct map_session_data* sd, const char* command, const char* message) { + clif_specialeffect(&sd->bl,450,1); pc_damage(NULL, sd, sd->status.hp + 1); clif_displaymessage(fd, msg_table[13]); // A pity! You've died. @@ -4571,7 +4572,7 @@ int atcommand_doom( { struct map_session_data *pl_sd; int i; - + clif_specialeffect(&sd->bl,450,2); for(i = 0; i < fd_max; i++) { if (session[i] && (pl_sd = session[i]->session_data) && pl_sd->state.auth && i != fd && pc_isGM(sd) >= pc_isGM(pl_sd)) { // you can doom only lower or same gm level @@ -4594,11 +4595,12 @@ int atcommand_doommap( { struct map_session_data *pl_sd; int i; - + clif_specialeffect(&sd->bl,450,3); for (i = 0; i < fd_max; i++) { if (session[i] && (pl_sd = session[i]->session_data) && pl_sd->state.auth && i != fd && sd->bl.m == pl_sd->bl.m && pc_isGM(sd) >= pc_isGM(pl_sd)) { // you can doom only lower or same gm level pc_damage(NULL, pl_sd, pl_sd->status.hp + 1); +// clif_specialeffect(&pl_sd->bl,450,1); clif_displaymessage(pl_sd->fd, msg_table[61]); // The holy messenger has given judgement. } } |