Jump to content

Recommended Posts

Posted

Im gonna try to explain How to create whatever zone you want in pvp instance For L2jSERVER! and sorry for my english, i do my best....

 

First of all you will need the coordinates of the area to change, I recommend using a table area, because it is easier.

 

For example(This is for SQL)

If i wanna change the last room of Garden of Eva to pvp zone. So then i must insert something like this:

 

Insert into zone_vertices values

('27200','1','83345','259124');

Insert into zone_vertices values

('27200','2','87637','259251');

Insert into zone_vertices values

('27200','3','87793','254877');

Insert into zone_vertices values

('27200','4','83437','254708');

 

As u can see there are this fields:

(ID, order, X , Y);

ID = Whatever... just check if its not already taken.

 

Order = The order can be from 0 to 3 for a table, from 0 to 4 for a pentagon..etc or from 1 to 4 for a table too..

 

X = Coordinates in X (Just move your char in game to a corner of the area you want to transform and write the command /loc and u will see the coord from that point)

 

Y = Coordinates in Y (Just move your char in game to a corner of the area you want to transform and write the command /loc and u will see the coord from that point)

 

Once you have that, so u can edit the Zone.xml  in gameserver\data\zones. You must insert here the type of zone, Z coord and respawn point when somebody die there. for example i added into Arenas Area.

 

<!-- Arenas -->

<zone id="11010" type="Arena" shape="Cuboid" minZ="-3800" maxZ="-3600">

<stat name="name" val="Giran Arena"/>

<stat name="spawnX" val="73890"/>

<stat name="spawnY" val="142656"/>

<stat name="spawnZ" val="-3778"/>

</zone>

<zone id="11011" type="Arena" shape="Cuboid" minZ="-3700" maxZ="-3500">

<stat name="name" val="Gludin Arena"/>

<stat name="spawnX" val="-86979"/>

<stat name="spawnY" val="142402"/>

<stat name="spawnZ" val="-3643"/>

</zone>

<zone id="11012" type="Arena" shape="NPoly" minZ="-3500" maxZ="-3300">

<stat name="name" val="Coliseum"/>

<stat name="spawnX" val="147451"/>

<stat name="spawnY" val="46728"/>

<stat name="spawnZ" val="-3410"/>

</zone>

<zone id="11013" type="Arena" shape="Cuboid" minZ="-3600" maxZ="-3500">

<stat name="name" val="Monster Track"/>

<stat name="spawnX" val="12312"/>

<stat name="spawnY" val="182752"/>

<stat name="spawnZ" val="-3558"/>

</zone>

<zone id="27200" type="Arena" shape="NPoly" minZ="-17500" maxZ="-16500">

<stat name="name" val="PVP ZONE"/>

<stat name="spawnX" val="81236"/>

<stat name="spawnY" val="148638"/>

<stat name="spawnZ" val="-3469"/>

</zone>

<!-- Towns -->

<zone id="11020" type="Town" shape="NPoly" minZ="-3800" maxZ="-3300">

<stat name="name" val="Giran Castle Town"/>

<stat name="townId" val="9"/>

<stat name="redirectTownId" val="11"/>

<stat name="taxById" val="3"/>

<stat name="spawnX" val="81236"/>

<stat name="spawnY" val="148638"/>

<stat name="spawnZ" val="-3469"/>

</zone>

 

 

 

 

Explaining...

 

<zone id="27200" type="Arena" shape="NPoly" minZ="-17500" maxZ="-16500">

<stat name="name" val="PVP ZONE"/>

<stat name="spawnX" val="81236"/>

<stat name="spawnY" val="148638"/>

<stat name="spawnZ" val="-3469"/>

</zone>

 

Zone id ="The id that u used before in sql"

type="Arena" <--- it doesnt change

shape="Npoly"<--- it doesnt change

minZ="You can see this coord using /loc in game, its the last number x,y,z. "

maxZ="Same like MinZ, This is used if there are reliefs or mountains within the area" for example if u are in 214123, -41254, -3500 so then u move to another corner and the coords are 254123, -41254, -3300 <-- that means ur in a higher place so then u must put MinZ="-3500" and maxZ="-3300"

stat name="name"<--- it doesnt change

val="PVP ZONE" change it for whatever u want.

Giran Respawn COORDs.-

      <stat name="spawnX" val="81236"/>

<stat name="spawnY" val="148638"/>

<stat name="spawnZ" val="-3469"/>

 

Maybe this could helps you, i haven't seen a kind of guide like this.

Posted

Thank u so much there was another guide like yours to set zones but the other guy got a problem with his english and couldnt understand it well but with your guide i really understand it.

 

By the way your english are really good than someother guys from the forum.

 

Thnx again keep it up.

Posted

Can i ask you a favor panchio ??...i want to put a hellbound in a pvp zone...but a can made the coord work correctly...something i do wrong...you can put here the example to do the desert of hellbound (the white coffee part in map, the left side) a pvp zone??, becose i try many times but not resulting, the zone is this:

 

Hellbound_map.jpg

 

if you can help me with this i apreciate it.

 

thanks and greetings.

Posted

diesel, for that kind of zone i will suggest a wyvern to take better cords X, Y.  and about the sides, i would recommend 5, a pentagon. and about your question, i could guess the problem is in the Z coords, check it.

hellboundmap.th.jpg

 

If u want more help just tell me the Coords that you got there.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



  • Posts

    • Hello guys I wanna buy some  Lessons for an L2J Developer
    • Let me give you something for inspiration and get you addicted to bot AI     And a siege 😛     What I have notice helps a lot the LLM to act real, is to give it a real-persons background. So for each LLM in the context beggining, besides the L2 facts, give it a real-life back story "You are a 67 years old retired nurse who plays Lineage 2 while her husband reads his newspaper, you are calm, collected but get mad if insulted". But that makes for a creative bot but its repetitive. So what you can also do, is pick random 20 news sites and for each bot every 2-3 days, initialize a context that is affected by the "news" the bot reads in the "real world".  So for example there's Iran - US war ok ? You take the news, put it in an LLM and ask it, extract the "abstract feelings" that this news piece invokes into you without mentioning anything related to the news. Then you take the result and inject it to the bots LLM prompt after its backstory.  This leads to some VERY human-like behavior from bots. 
    • 🚀 Telonyx Contest Platform Telegram Native Giveaway & Contest System for Modern Communities 💎 White-Label • Self-Hosted • Telegram Mini App • Monetization Ready 🧠 Product Overview Telonyx Contest Platform is a production-ready Telegram Mini App system designed for running modern contests, giveaways and engagement campaigns directly inside Telegram. It replaces outdated bot-based mechanics with a fully interactive application experience — no commands, no chat spam, no external websites. Users interact with a clean, fast and mobile-first interface inside Telegram. ⚡ Core Experience Participants can: • 🚀 instantly join contests inside Telegram Mini App • 🎁 view prizes and participation rules • 📊 track real-time contest status • ✅ verify task completion automatically • 🏆 receive winner results and notifications • 💰 participate in free or paid campaigns Everything is fully native to Telegram. 🧩 Key Platform Capabilities 🎯 Contest Engine • advanced contest creation system • multiple winners and reward tiers • scheduled launches and auto-finish logic • contest duplication and templates • real-time participant tracking • flexible rule configuration 📱 Mini App Interface • modern Telegram Mini App UX • mobile-first optimized layout • fast loading and smooth transitions • participant counter & live status • prize showcase system • one-click participation flow 🔎 Task Verification System Automated validation of participation rules: • Telegram channel subscriptions • sponsor channel requirements • multi-channel verification logic • YouTube subscription checks • TikTok task validation ❌ Zero manual moderation required 🛡 Anti-Fraud & Security Layer • duplicate entry prevention • bot detection system • CAPTCHA integration • rule enforcement engine • participation integrity checks 🏆 Automated Winner Selection • fully automated draw system • transparent winner selection logic • instant result publishing • winner notification system • historical archive of all contests 💎 Telegram Stars Monetization • optional paid participation via Telegram Stars • native Telegram checkout integration • flexible entry pricing per campaign • direct monetization of engagement traffic 🌍 Multi-Language Architecture Built with localization in mind. Supported out of the box: • 🇬🇧 English • 🇷🇺 Russian • 🇺🇦 Ukrainian • 🇹🇷 Turkish • 🇪🇸 Spanish • 🇵🇹 Portuguese • ➕ extensible language system for custom localization All UI layers, notifications and admin panel can be fully translated per deployment. 🎯 Ideal Use Cases 🎮 Gaming Projects / Lineage II Servers • pre-launch hype campaigns • donation reward giveaways • VIP / premium account distribution • promo code campaigns • server opening events 🎥 Streamers & Creators • subscriber engagement campaigns • live stream giveaways • audience growth funnels • partnership promotions 🌐 Communities & Brands • automated engagement systems • viral marketing campaigns • audience retention mechanics 🏗 Architecture & Deployment • Telegram Mini App frontend • FastAPI backend architecture • PostgreSQL database layer • Redis caching system • Docker-based deployment • WebSocket real-time updates • REST API integration layer 📦 Self-hosted deployment — full control over infrastructure and data 🎨 White-Label & Customization Each installation can be fully customized: • complete UI/UX rebranding • project-specific visual identity • custom engagement mechanics • referral & viral systems • loyalty & progression systems • seasonal campaign modules • custom API integrations   💡 Why This Platform Traditional contest bots are limited, noisy and inefficient. Telonyx Contest Platform is a modern engagement layer for Telegram ecosystems — combining UX, automation and monetization in one system. ✔ Higher participation rate ✔ Lower friction ✔ Direct revenue via Telegram Stars ✔ Full control via self-hosted deployment 💼 Commercial Model • Single License (Self-Hosted Deployment) • White-Label Branding Rights • Optional Custom Development • Installation & Setup Service 📩 Contact For demo access, licensing details or custom implementation: @se1dhe @telonyx_dev  
    • https://discord.gg/acvqx9rbhy Added intelligent agent that reads scripts and config and provides infos to players regarding gameplay Like where to farm/max enchants etc etc   Added auto translate to En/ES/BR htmls without api
    • The core strength of Novproxy Perfectly unlock overseas AI large models: 100% pure residential IP, perfectly bypassing various strict risk controls such as ChatGPT, Claude, Midjourney, etc. This is an essential tool for parents to train AI on weekends and during work! Available in 195+ countries/regions worldwide: covering an extremely wide range. Whether it's setting up accounts for cross-border e-commerce, conducting overseas web crawling, or conducting network gray-scale tests, it can all be handled easily. Ultra-fast concurrency: Real residential network, stable and non-blocking, high-concurrency business can also run at full capacity.
  • Topics

×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..