[1] | 1 | //===== eAthena Script ======================================= |
---|
| 2 | //= Map Flags for Jails ( ATCommand @jail <player> ) |
---|
| 3 | //===== By: ================================================== |
---|
| 4 | //= eAthena Dev Team |
---|
| 5 | //===== Current Version: ===================================== |
---|
| 6 | //= 1.0 |
---|
| 7 | //===== Compatible With: ===================================== |
---|
| 8 | //= |
---|
| 9 | //===== Description: ========================================= |
---|
| 10 | //= pvp: Turns on PvP mode |
---|
| 11 | //= pvp_noparty: Can't attack player in same party |
---|
| 12 | //= nobranch: No Dead Branching allowed. |
---|
| 13 | //= nomemo: No Warp Portal Memory Point allowed. |
---|
| 14 | //= nopenalty: No Exp. penalty when player dies. |
---|
| 15 | //= nosave: No saving respawn point allowed. Use SavePoint to use the |
---|
| 16 | //= players previous savepoint, or choose one manually. |
---|
| 17 | //= noteleport: No Teleporting allowed. No f-wings or b-wings. |
---|
| 18 | //===== Additional Comments: ================================= |
---|
| 19 | //= |
---|
| 20 | //============================================================ |
---|
| 21 | |
---|
| 22 | |
---|
| 23 | // No Memory ============================= |
---|
| 24 | sec_pri mapflag nomemo |
---|
| 25 | |
---|
| 26 | // No Save =============================== |
---|
| 27 | sec_pri mapflag nosave SavePoint |
---|
| 28 | |
---|
| 29 | // No Teleport =========================== |
---|
| 30 | sec_pri mapflag noteleport |
---|
| 31 | |
---|
| 32 | // No Warp =============================== |
---|
| 33 | sec_pri mapflag nowarp |
---|
| 34 | |
---|
| 35 | // No Return, Stop people from being pulled out of jail (warpparty/guild) |
---|
| 36 | sec_pri mapflag noreturn |
---|
| 37 | |
---|
| 38 | // Bloody Jail =========================== |
---|
| 39 | //Uncomment following maps to let your prisoners fight with other prisoners |
---|
| 40 | |
---|
| 41 | // PvP =================================== |
---|
| 42 | sec_pri mapflag pvp |
---|
| 43 | |
---|
| 44 | // No Party ============================== |
---|
| 45 | sec_pri mapflag pvp_noparty |
---|
| 46 | |
---|
| 47 | //Nightmare Equipment Drops PVP ========== |
---|
| 48 | sec_pri mapflag pvp_nightmaredrop random,equip,300 |
---|