It's not seem little nonsense on frozen this functions?
public static final int ZONE_PVP = 1;
/** The Constant ZONE_PEACE. */
public static final int ZONE_PEACE = 2;
/** The Constant ZONE_SIEGE. */
public static final int ZONE_SIEGE = 4;
/** The Constant ZONE_MOTHERTREE. */
public static final int ZONE_MOTHERTREE = 8;
/** The Constant ZONE_CLANHALL. */
public static final int ZONE_CLANHALL = 16;
/** The Constant ZONE_UNUSED. */
public static final int ZONE_UNUSED = 32;
/** The Constant ZONE_NOLANDING. */
public static final int ZONE_NOLANDING = 64;
/** The Constant ZONE_WATER. */
public static final int ZONE_WATER = 128;
/** The Constant ZONE_JAIL. */
public static final int ZONE_JAIL = 256;
public static final int ZONE_EVENT = 257;
/** The Constant ZONE_MONSTERTRACK. */
public static final int ZONE_MONSTERTRACK = 512;
/** The Constant ZONE_SWAMP. */
public static final int ZONE_SWAMP = 1024;
/** The Constant ZONE_NOSUMMONFRIEND. */
public static final int ZONE_NOSUMMONFRIEND = 2048;
/** The Constant ZONE_OLY. */
public static final int ZONE_OLY = 4096;
/** The Constant ZONE_NOHQ. */
public static final int ZONE_NOHQ = 8192;
/** The Constant ZONE_DANGERAREA. */
public static final int ZONE_DANGERAREA = 16384;
/** The Constant ZONE_NOSTORE. */
public static final int ZONE_NOSTORE = 32768;
/** The Constant ZONE_MULTIFUNCTION. */
public static final int ZONE_MULTIFUNCTION = 67229;
public static final int ZONE_GRAND = 134458;
/** The _current zones. */
private int _currentZones = 0;
/**
* Checks if is inside zone.
* @param zone the zone
* @return true, if is inside zone
*/
public boolean isInsideZone(final int zone)
{
return (_currentZones & zone) != 0;
}
/**
* Sets the inside zone.
* @param zone the zone
* @param state the state
*/
public void setInsideZone(final int zone, final boolean state)
{
if (state)
{
_currentZones |= zone;
}
else if (isInsideZone(zone))
{
_currentZones ^= zone;
}
}
Used the service a couple of times for promo vids and some overlays—super fast turnaround and the quality was exactly what I needed. Quick to tweak stuff too if needed.
Childhood - the most magical and carefree time
Bright memories filled with vivid colors, where we could be anyone and go anywhere.
Everyone had their own playground, a tight-knit group of kids who knew each other inside out.
All free time was spent together - no tablets, no phones, just football, climbing on bars, and collecting bottle caps, badges, stamps, and wrappers.
Thinking back brings a smile to your face.
And everyone remembers that moment: sitting in the yard, waiting for a friend. He said, “I’ll be out in a minute.”
At first, you wait patiently… then frustration creeps in — why isn’t he out yet?
Minutes stretch endlessly, and every 30 seconds you check the clock, hoping he’ll appear.
Back then, waiting was part of the fun.
Today, waiting for a verification code from a service isn’t so enjoyable seconds feel like hours, and your fingers get tired of hitting “refresh.”
With VibeSMS, that feeling disappears: codes arrive instantly, with no unnecessary waiting or annoying pauses.
🌐 Website: https://vibe-sms.net/
📲 Telegram: https://t.me/vibe_sms
I add my external ip at the ip at the dbo.server of l2c4_lin2db and the ports 7777 and 2106 are opened and i checked that they are opened but still other players are unable to join, what should i change to make it work?
Hello, dear friends, we are the GAMEMONEY in-game currency store. We offer adena, donation coins, and items from all top projects. Please contact us with any questions.
DISCORD - GODDARDSHOP
Question
wongerlt
It's not seem little nonsense on frozen this functions?
public static final int ZONE_PVP = 1; /** The Constant ZONE_PEACE. */ public static final int ZONE_PEACE = 2; /** The Constant ZONE_SIEGE. */ public static final int ZONE_SIEGE = 4; /** The Constant ZONE_MOTHERTREE. */ public static final int ZONE_MOTHERTREE = 8; /** The Constant ZONE_CLANHALL. */ public static final int ZONE_CLANHALL = 16; /** The Constant ZONE_UNUSED. */ public static final int ZONE_UNUSED = 32; /** The Constant ZONE_NOLANDING. */ public static final int ZONE_NOLANDING = 64; /** The Constant ZONE_WATER. */ public static final int ZONE_WATER = 128; /** The Constant ZONE_JAIL. */ public static final int ZONE_JAIL = 256; public static final int ZONE_EVENT = 257; /** The Constant ZONE_MONSTERTRACK. */ public static final int ZONE_MONSTERTRACK = 512; /** The Constant ZONE_SWAMP. */ public static final int ZONE_SWAMP = 1024; /** The Constant ZONE_NOSUMMONFRIEND. */ public static final int ZONE_NOSUMMONFRIEND = 2048; /** The Constant ZONE_OLY. */ public static final int ZONE_OLY = 4096; /** The Constant ZONE_NOHQ. */ public static final int ZONE_NOHQ = 8192; /** The Constant ZONE_DANGERAREA. */ public static final int ZONE_DANGERAREA = 16384; /** The Constant ZONE_NOSTORE. */ public static final int ZONE_NOSTORE = 32768; /** The Constant ZONE_MULTIFUNCTION. */ public static final int ZONE_MULTIFUNCTION = 67229; public static final int ZONE_GRAND = 134458; /** The _current zones. */ private int _currentZones = 0; /** * Checks if is inside zone. * @param zone the zone * @return true, if is inside zone */ public boolean isInsideZone(final int zone) { return (_currentZones & zone) != 0; } /** * Sets the inside zone. * @param zone the zone * @param state the state */ public void setInsideZone(final int zone, final boolean state) { if (state) { _currentZones |= zone; } else if (isInsideZone(zone)) { _currentZones ^= zone; } }
10 answers to this question
Recommended Posts