diff options
author | zephyrus <zephyrus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-05-08 16:58:57 +0000 |
---|---|---|
committer | zephyrus <zephyrus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-05-08 16:58:57 +0000 |
commit | b6f1b6b9a11bdb8a5001dbc042d54fce0a963705 (patch) | |
tree | cd37827a952867c4dc561f2961d3687561582e31 /src/map/clif.c | |
parent | ffa877bd248a6f6a014dd29e4c158b7399cb0a98 (diff) | |
download | hercules-b6f1b6b9a11bdb8a5001dbc042d54fce0a963705.tar.gz hercules-b6f1b6b9a11bdb8a5001dbc042d54fce0a963705.tar.bz2 hercules-b6f1b6b9a11bdb8a5001dbc042d54fce0a963705.tar.xz hercules-b6f1b6b9a11bdb8a5001dbc042d54fce0a963705.zip |
- Added some new items and headgears.
- Changed the way DEF Potion and MDEF potion works to official.
- Cleanups to Barricade Engine. It now can be used in WoE 2.0, i will release optional scripts soon.
- Fixes to @noks. Now if the mob is targeting someone else the protection get lost.
- Added new status effects icons to cash items.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12693 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/clif.c')
-rw-r--r-- | src/map/clif.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/map/clif.c b/src/map/clif.c index bc3872ad6..cfd87b748 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -7920,7 +7920,7 @@ void clif_parse_LoadEndAck(int fd,struct map_session_data *sd) if( sd->state.changemap ) {// restore information that gets lost on map-change - if (night_flag && map[sd->bl.m].flag.nightenabled) + if( night_flag && map[sd->bl.m].flag.nightenabled ) { //Display night. if( !sd->state.night ) { @@ -7934,6 +7934,13 @@ void clif_parse_LoadEndAck(int fd,struct map_session_data *sd) clif_status_load(&sd->bl, SI_NIGHT, 0); } + if( map[sd->bl.m].flag.allowks && !map_flag_ks(sd->bl.m) ) + { + char output[128]; + sprintf(output, "[ Kill Steal Protection Disable. KS is allowed in this map ]"); + clif_announce(&sd->bl, output, strlen(output) + 1, 0x00CC66, 3); + } + mob_barricade_get(sd); sd->state.changemap = false; } |