diff options
author | Matheus Macabu <mkbu95@gmail.com> | 2013-05-18 16:00:28 -0300 |
---|---|---|
committer | Matheus Macabu <mkbu95@gmail.com> | 2013-05-18 16:00:28 -0300 |
commit | 077d9c8dca0918995f48fe8b3c1e8525e0bf74f8 (patch) | |
tree | fccb458649d33cb5503cba99be279b6510064f54 /npc/mapflag/jail.txt | |
parent | 21bbfad48084190b8a6881ee3b277993418a5137 (diff) | |
download | hercules-077d9c8dca0918995f48fe8b3c1e8525e0bf74f8.tar.gz hercules-077d9c8dca0918995f48fe8b3c1e8525e0bf74f8.tar.bz2 hercules-077d9c8dca0918995f48fe8b3c1e8525e0bf74f8.tar.xz hercules-077d9c8dca0918995f48fe8b3c1e8525e0bf74f8.zip |
Relocated mapflag from conf/ to npc/ and renamed some script files
Signed-off-by: Matheus Macabu <mkbu95@gmail.com>
Diffstat (limited to 'npc/mapflag/jail.txt')
-rw-r--r-- | npc/mapflag/jail.txt | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/npc/mapflag/jail.txt b/npc/mapflag/jail.txt new file mode 100644 index 000000000..0a8b00846 --- /dev/null +++ b/npc/mapflag/jail.txt @@ -0,0 +1,42 @@ +//===== Hercules Script ======================================= +//= Mapflag: Jail. +//===== By: ================================================== +//= Hercules Dev Team +//===== Current Version: ===================================== +//= 1.0 +//===== Description: ========================================= +//= pvp: Turns on PvP mode +//= pvp_noparty: Can't attack player in same party +//= nobranch: No Dead Branching allowed. +//= nomemo: No Warp Portal Memory Point allowed. +//= nopenalty: No Exp. penalty when player dies. +//= nosave: No saving respawn point allowed. Use SavePoint to use the +//= players previous savepoint, or choose one manually. +//= noteleport: No Teleporting allowed. No fly wings or butterfly wings. +//===== Additional Comments: ================================= +//= 1.0 - Initial script. +//============================================================ + +// No Memory ============================= +sec_pri mapflag nomemo + +// No Save =============================== +sec_pri mapflag nosave SavePoint + +// No Teleport =========================== +sec_pri mapflag noteleport + +// No Warp =============================== +sec_pri mapflag nowarp + +// No Return, Stop people from being pulled out of jail (warpparty/guild) +sec_pri mapflag noreturn + +// PvP =================================== +sec_pri mapflag pvp + +// No Party ============================== +sec_pri mapflag pvp_noparty + +//Nightmare Equipment Drops PVP ========== +sec_pri mapflag pvp_nightmaredrop random,equip,300 |