diff options
author | shennetsind <ind@henn.et> | 2013-10-25 12:45:13 -0200 |
---|---|---|
committer | shennetsind <ind@henn.et> | 2013-10-25 12:45:13 -0200 |
commit | 8629562655cfcbd6aef97307e3e0c078235619ff (patch) | |
tree | 6de8f57077d52fe52c306adee05d6043c5675584 /src/map/script.c | |
parent | 259fe1930d2307248327bd5737f4909fd77e72ad (diff) | |
download | hercules-8629562655cfcbd6aef97307e3e0c078235619ff.tar.gz hercules-8629562655cfcbd6aef97307e3e0c078235619ff.tar.bz2 hercules-8629562655cfcbd6aef97307e3e0c078235619ff.tar.xz hercules-8629562655cfcbd6aef97307e3e0c078235619ff.zip |
nocashshop mapflag
As requested by the community in http://hercules.ws/board/topic/1477-mapflag-for-cash-shop/ and http://hercules.ws/board/topic/1476-disable-cashshop-in-pvp-woe/
'nocashshop' mapflag disables the usage of the cashshop button as well as any attempts to purchase (in case the flag is turned on after someone gets the shop open).
Signed-off-by: shennetsind <ind@henn.et>
Diffstat (limited to 'src/map/script.c')
-rw-r--r-- | src/map/script.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/map/script.c b/src/map/script.c index 3c0742405..826c5ae34 100644 --- a/src/map/script.c +++ b/src/map/script.c @@ -10201,6 +10201,7 @@ BUILDIN(getmapflag) case MF_BATTLEGROUND: script_pushint(st,map->list[m].flag.battleground); break; case MF_RESET: script_pushint(st,map->list[m].flag.reset); break; case MF_NOTOMB: script_pushint(st,map->list[m].flag.notomb); break; + case MF_NOCASHSHOP: script_pushint(st,map->list[m].flag.nocashshop); break; } } @@ -10317,6 +10318,7 @@ BUILDIN(setmapflag) { case MF_BATTLEGROUND: map->list[m].flag.battleground = (val <= 0 || val > 2) ? 1 : val; break; case MF_RESET: map->list[m].flag.reset = 1; break; case MF_NOTOMB: map->list[m].flag.notomb = 1; break; + case MF_NOCASHSHOP: map->list[m].flag.nocashshop = 1; break; } } @@ -10402,6 +10404,7 @@ BUILDIN(removemapflag) { case MF_BATTLEGROUND: map->list[m].flag.battleground = 0; break; case MF_RESET: map->list[m].flag.reset = 0; break; case MF_NOTOMB: map->list[m].flag.notomb = 0; break; + case MF_NOCASHSHOP: map->list[m].flag.nocashshop = 0; break; } } |