diff options
author | shennetsind <notind@gmail.com> | 2013-06-27 10:36:11 -0700 |
---|---|---|
committer | shennetsind <notind@gmail.com> | 2013-06-27 10:36:11 -0700 |
commit | 15398c9b90693707c3e49c349e24e6dd655f12a9 (patch) | |
tree | 8ba6c03f3e6f8775e854fd109d31ae6b64110e1a /src/map/atcommand.c | |
parent | e5b1d3bdff66c9475755651a94d20057fc4d02dd (diff) | |
parent | ee23711201ddbcd9d92712e8d2b9c1e3c05e7194 (diff) | |
download | hercules-15398c9b90693707c3e49c349e24e6dd655f12a9.tar.gz hercules-15398c9b90693707c3e49c349e24e6dd655f12a9.tar.bz2 hercules-15398c9b90693707c3e49c349e24e6dd655f12a9.tar.xz hercules-15398c9b90693707c3e49c349e24e6dd655f12a9.zip |
Merge pull request #48 from CairoLee/master
Implemented notomb Mapflag
Diffstat (limited to 'src/map/atcommand.c')
-rw-r--r-- | src/map/atcommand.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/map/atcommand.c b/src/map/atcommand.c index ae65d46b0..f1b4a3ed6 100644 --- a/src/map/atcommand.c +++ b/src/map/atcommand.c @@ -7568,6 +7568,7 @@ return true;\ checkflag(nojobexp); checkflag(nomobloot); checkflag(nomvploot); checkflag(nightenabled); checkflag(nodrop); checkflag(novending); checkflag(loadevent); checkflag(nochat); checkflag(partylock); checkflag(guildlock); checkflag(src4instance); + checkflag(notomb); clif->message(sd->fd," "); clif->message(sd->fd,msg_txt(1312)); // Usage: "@mapflag monster_noteleport 1" (0=Off | 1=On) clif->message(sd->fd,msg_txt(1313)); // Type "@mapflag available" to list the available mapflags. @@ -7604,6 +7605,7 @@ return true;\ setflag(nojobexp); setflag(nomobloot); setflag(nomvploot); setflag(nightenabled); setflag(nodrop); setflag(novending); setflag(loadevent); setflag(nochat); setflag(partylock); setflag(guildlock); setflag(src4instance); + setflag(notomb); clif->message(sd->fd,msg_txt(1314)); // Invalid flag name or flag. clif->message(sd->fd,msg_txt(1312)); // Usage: "@mapflag monster_noteleport 1" (0=Off | 1=On) @@ -7615,7 +7617,7 @@ return true;\ clif->message(sd->fd,"nozenypenalty, notrade, noskill, nowarp, nowarpto, noicewall, snow, clouds, clouds2,"); clif->message(sd->fd,"fog, fireworks, sakura, leaves, nobaseexp, nojobexp, nomobloot,"); clif->message(sd->fd,"nomvploot, nightenabled, nodrop, novending, loadevent, nochat, partylock,"); - clif->message(sd->fd,"guildlock, src4instance"); + clif->message(sd->fd,"guildlock, src4instance, notomb"); #undef checkflag #undef setflag |