diff options
author | Carlos Henrique <carloshlfzanon@gmail.com> | 2018-09-20 16:08:47 -0300 |
---|---|---|
committer | Carlos Henrique <carloshlfzanon@gmail.com> | 2018-12-04 16:32:11 -0200 |
commit | 582336dff2bffba506891a54ecd9360e4fbdd65c (patch) | |
tree | 298a860fa285a1bc1d430322373b8b776de5fa2a /src/map/npc.c | |
parent | 41d370cd3308be48b4ce00a50ee46515742978b0 (diff) | |
download | hercules-582336dff2bffba506891a54ecd9360e4fbdd65c.tar.gz hercules-582336dff2bffba506891a54ecd9360e4fbdd65c.tar.bz2 hercules-582336dff2bffba506891a54ecd9360e4fbdd65c.tar.xz hercules-582336dff2bffba506891a54ecd9360e4fbdd65c.zip |
Added mapflags 'nostorage' and 'nogstorage'
nostorage 1 -- blocks only @storage
nostorage 2 -- blocks only openstorage();
nostorage 3 -- blocks @storage and openstorage()
nogstorage 1 -- blocks only @gstorage
nogstorage 2 -- blocks only guildopenstorage();
nogstorage 3 -- blocks @gstorage and guildopenstorage()
Diffstat (limited to 'src/map/npc.c')
-rw-r--r-- | src/map/npc.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/map/npc.c b/src/map/npc.c index 7f57a9c50..fa277f382 100644 --- a/src/map/npc.c +++ b/src/map/npc.c @@ -4555,6 +4555,10 @@ static const char *npc_parse_mapflag(const char *w1, const char *w2, const char map->list[m].flag.pairship_startable = (state) ? 1 : 0; } else if (!strcmpi(w3, "pairship_endable")) { map->list[m].flag.pairship_endable = (state) ? 1 : 0; + } else if (!strcmpi(w3, "nostorage")) { + map->list[m].flag.nostorage = (state) ? cap_value(atoi(w4), 1, 3) : 0; + } else if (!strcmpi(w3, "nogstorage")) { + map->list[m].flag.nogstorage = (state) ? cap_value(atoi(w4), 1, 3) : 0; } else { npc->parse_unknown_mapflag(mapname, w3, w4, start, buffer, filepath, retval); } |