blob: 0aff7412d2043a0de066d8968363277ac0a44fa6 (
plain) (
tree)
|
|
//================= Hercules Script =======================================
//= _ _ _
//= | | | | | |
//= | |_| | ___ _ __ ___ _ _| | ___ ___
//= | _ |/ _ \ '__/ __| | | | |/ _ \/ __|
//= | | | | __/ | | (__| |_| | | __/\__ \
//= \_| |_/\___|_| \___|\__,_|_|\___||___/
//================= License ===============================================
//= This file is part of Hercules.
//= http://herc.ws - http://github.com/HerculesWS/Hercules
//=
//= Copyright (C) 2012-2015 Hercules Dev Team
//= Copyright (C) rAthena Dev Team
//= Copyright (C) eAthena Dev Team
//=
//= Hercules is free software: you can redistribute it and/or modify
//= it under the terms of the GNU General Public License as published by
//= the Free Software Foundation, either version 3 of the License, or
//= (at your option) any later version.
//=
//= This program is distributed in the hope that it will be useful,
//= but WITHOUT ANY WARRANTY; without even the implied warranty of
//= MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
//= GNU General Public License for more details.
//=
//= You should have received a copy of the GNU General Public License
//= along with this program. If not, see <http://www.gnu.org/licenses/>.
//=========================================================================
//= Mapflag: Jail.
//================= 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.
//=========================================================================
// 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
|