Jump to content
  • 0

Question

Posted

Hello guys. i have this  http://www.maxcheaters.com/topic/177914-fantasy-island-crateis-cubes-underground-coliseum-interlude-from-lindvior/

 

and i want all this area to be peacefull zone.. How i can do it?? i know from zones.xml but i dont know what more to do.. help me one please. thanks..

13 answers to this question

Recommended Posts

  • 0
Posted (edited)

Let me show you how to create an Cuboid type zone:

 

First go to Town of Giran and get the coordinates of the first node http://prntscr.com/5vakf7

Then get the coordinates of the second node http://prntscr.com/5vaklr

 

Now you should put these coordinates in zone.xml

<zone name="Giran northern coridor west" type="PeaceZone" shape="Cuboid" minZ="-3400" maxZ="-3550">
		<node X="81153" Y="147906" />
		<node X="82706" Y="149306" />
</zone>

Congratulations, you have set up a new Cuboid zone.

 

There are one more thing... if you use a pack that stores the zones in zone_vertices table, you should put the x and y coordinates in it:

INSERT INTO `zone_vertices` (`id`,`order`,`x`,`y`) VALUES 
(20000,0,81153,147906),
(20000,1,82706,149306);

Then in zone.xml

<zone id='20000' type='PeaceZone' shape='Cuboid' minZ='-3400' maxZ='-3550' />

The id in zone.xml equals to the id in zone_vertices

Edited by Tessa
  • 0
Posted

Using the /loc command.

yeah and i will go one click right and left and i will do /loc?? if you know what i mean..

  • 0
Posted

By the "/loc" command you will see the coordinates that you should set up in zone_vertices and zone.xml (depends on the pack you use).

There are 3 types of zones (l2jserver's documentation):

Cuboid Zones:
-------------

Require 2 nodes (vertices), in order to make a Square, for example:

O . . . .
.       .
.       .
.       .
. . . . O

O = Node (vertice)


NPoly Zones:
------------

Require 3 or more nodes (vertices), in order to make a Polygon or another geometrical model, for example:

    O
   / \
  /   \
 /     \
O - - - O

O = Node (vertice)


Cylinder Zones:
---------------

Require 1 node (vertice) and radius, in order to make a Cylinder.

          *  *  *
      *             *
    *                 *
  *                     *
 *                       *
*                         *
*                         *
*            O            *
*                         *
*                         *
 *                       *
  *                     *
    *                 *
      *             *
          *  *  *

O = Node (vertice)
* = Radius

Some examples:

 

Cuboid

	<zone name="Giran northern coridor west" type="NoStoreZone" shape="Cuboid" minZ="-3400" maxZ="-3550">
		<node X="81446" Y="143530" />
		<node X="81635" Y="147720" />
	</zone>

NPoly (takes AT LEAST 3 nodes, but you can set as many as you want in order to set up more precise zones)

	<zone name="dion_monster_race1" type="DerbyTrackZone" shape="NPoly" minZ="-3652" maxZ="-3452"> <!-- [20_23] -->
		<node X="11714" Y="181568" />
		<node X="14406" Y="181571" />
		<node X="14405" Y="182673" />
		<node X="11714" Y="182673" />
	</zone>

Cylinder

	<zone name="Den of Evil 11" type="EffectZone" shape="Cylinder" minZ="-3400" maxZ="-3200" rad="750">
		<stat name="reuse" val="9000" />
		<stat name="targetClass" val="L2Character" />
		<node X="71543" Y="-128820" />
	</zone>
  • 0
Posted

 

By the "/loc" command you will see the coordinates that you should set up in zone_vertices and zone.xml (depends on the pack you use).

There are 3 types of zones (l2jserver's documentation):

Cuboid Zones:
-------------

Require 2 nodes (vertices), in order to make a Square, for example:

O . . . .
.       .
.       .
.       .
. . . . O

O = Node (vertice)


NPoly Zones:
------------

Require 3 or more nodes (vertices), in order to make a Polygon or another geometrical model, for example:

    O
   / \
  /   \
 /     \
O - - - O

O = Node (vertice)


Cylinder Zones:
---------------

Require 1 node (vertice) and radius, in order to make a Cylinder.

          *  *  *
      *             *
    *                 *
  *                     *
 *                       *
*                         *
*                         *
*            O            *
*                         *
*                         *
 *                       *
  *                     *
    *                 *
      *             *
          *  *  *

O = Node (vertice)
* = Radius

Some examples:

 

Cuboid

	<zone name="Giran northern coridor west" type="NoStoreZone" shape="Cuboid" minZ="-3400" maxZ="-3550">
		<node X="81446" Y="143530" />
		<node X="81635" Y="147720" />
	</zone>

NPoly (takes AT LEAST 3 nodes, but you can set as many as you want in order to set up more precise zones)

	<zone name="dion_monster_race1" type="DerbyTrackZone" shape="NPoly" minZ="-3652" maxZ="-3452"> <!-- [20_23] -->
		<node X="11714" Y="181568" />
		<node X="14406" Y="181571" />
		<node X="14405" Y="182673" />
		<node X="11714" Y="182673" />
	</zone>

Cylinder

	<zone name="Den of Evil 11" type="EffectZone" shape="Cylinder" minZ="-3400" maxZ="-3200" rad="750">
		<stat name="reuse" val="9000" />
		<stat name="targetClass" val="L2Character" />
		<node X="71543" Y="-128820" />
	</zone>

i do the same with the Cylinder shape but didnt work.. its not peacefully zone.. what can i do???

  • 0
Posted (edited)

There is no "what can I do".. You simply did it wrong. Do it again.

Edited by SweeTs
  • 0
Posted

<zone id='11038' type='Town' shape="Cylinder" minZ="-2037" maxZ="-3200" rad="1750">
        <stat name='name' val='Main Town'/>
        <stat name='townId' val='112121'/>
        <stat name='taxById' val='5'/>
                <stat name='Peace Zone' val='true'/>
        <spawn X='-59511' Y='-57543' Z='-2064'/>

 

i have do this. is this right?? maybe not. :/

  • 0
Posted

It's not.. Ehhh.. You got plenty of examples.. Try to manage it.. Even you can "teleport" to those locations and you will find out how it works..

  • 0
Posted

Let me show you how to create an Cuboid type zone:

 

First go to Town of Giran and get the coordinates of the first node http://prntscr.com/5vakf7

Then get the coordinates of the second node http://prntscr.com/5vaklr

 

Now you should put these coordinates in zone.xml

<zone name="Giran northern coridor west" type="PeaceZone" shape="Cuboid" minZ="-3400" maxZ="-3550">
		<node X="81153" Y="147906" />
		<node X="82706" Y="149306" />
</zone>

Congratulations, you have set up a new Cuboid zone.

 

There are one more thing... if you use a pack that stores the zones in zone_vertices table, you should put the x and y coordinates in it:

INSERT INTO `zone_vertices` (`id`,`order`,`x`,`y`) VALUES 
(20000,0,81153,147906),
(20000,1,82706,149306);

Then in zone.xml

<zone id='20000' type='PeaceZone' shape='Cuboid' minZ='-3400' maxZ='-3550' />

The id in zone.xml equals to the id in zone_vertices

da best answer.. thank you tessa.!! love you.. zone_vertices helped me.. thanks a lot lock it and give promo to this guy..

 

@sweets you are here to help not to say just one "manage to do it alone again and again and you will find the solution" ... *friendly suggestion*

 

kkthnxbye!!

  • 0
Posted

@sweets you are here to help not to say just one "manage to do it alone again and again and you will find the solution" ... *friendly suggestion*

I am here to help, not to do the job for you. Back in the days I had the same problem as you, so I looked at few zones how they are created, ArenaZone for example, it's easiest, 2 nodes. Then I was like "miracle"..

 

Anyway.. locked

Guest
This topic is now closed to further replies.


  • Posts

    • 🤖 Old Telegram bots with 2024 year old ⭐️ Good for search optimization TG ⭐️ Bots without subscribers ⭐️ Bots clean, no bans, blocking and complaints 💵 Price list: From 3 bots - 3$ for 1pc. From 20 bots - 2.5$ for 1pc. From 60 bots - 2.3$ for 1pc. From 100 bots - 2.2$ for 1pc. From 400 bots - 1.9$ for 1pc. 📌 To contact Us - t.me/smmtg6
    • ⚡️ Fast SEO optimization in Telegram for your channel/chat/bot. TOP OF SEARCH TG🔝 ✨ Effective solution for your business or blog. 🔥 Fast results within few days. ➡️ Contact us on Telegram for more details - t.me/smmtg6
    • 🤖⭐️ TELEGRAM PREMIUM BOT START: 1201ID - Ukraine 🇺🇦 + MIX | 7 Days Premium 🤖 - 3.4$ per 1000 1198 ID - Israel 🇮🇱 + Uzbekistan 🇺🇿 | Mix Days Premium 🤖 - 3.5$ per 1000 574 ID - Uzbekistan 🇺🇿 + Russia 🇷🇺 20% | 30-90 Days Premium 🤖 - 3.8$ per 1000 1210 ID - Ukraine 🇺🇦 + MIX | 7-30 Days Premium 🤖 | 4$ per 1000 1203 ID - Uzbekistan 🇺🇿 + MIX | 20-30 Days Premium 🤖 | 4$ per 1000 1195 ID - USA 🇺🇸 + Ukraine🇺🇦 + Canada 🇨🇦 | 15 Days Premium🤖 | 4.3$ per 1000 1213 ID - Uzbekistan 🇺🇿 + USA 🇺🇸 + Canada 🇨🇦 | 30 Days Premium 🤖 | 4.4$ per 1000 1202 ID - Uzbekistan 🇺🇿 + MIX | 30 Days Premium 🤖 | 4.4$ per 1000 752 ID - USA 🇺🇸 + China 🇨🇳 + Canada 🇨🇦 | 30 Days Premium 🤖 | 5.4$ per 1000 756 ID - Uzbekistan 🇺🇿 + Israel 🇮🇱 + Austria 🇦🇹 | 14-30 Days Premium 🤖 | &nbsp;5.6$ per 1000 758 ID - Canada 🇨🇦 + USA 🇺🇸 + Turkey 🇹🇷 | &nbsp;30 Days Premium 🤖 | 5.6$ per 1000 755 ID - Turkey 🇹🇷 + Egypt 🇪🇬 | 30-90 Days Premium 🤖 | 6$ per 1000 374 ID - Russia 🇷🇺 + USA 🇺🇸 + Canada 🇨🇦 | Mix Days Premium 🤖 | 6.8$ per 1000 741 ID - Ukraine 🇺🇦 + USA 🇺🇸 + Canada 🇨🇦 | 15-30 Days Premium 🤖 | 6.8$ per 1000 575 ID - USA 🇺🇸 + Russia 🇷🇺 + Canada 🇨🇦 | Mix Days Premium 🤖 | 7.2$ per 1000 372 ID - USA 🇺🇸 + Canada 🇨🇦 + Russia 🇷🇺 + EU 🇪🇺 | Mix Days Premium | 7.5$ per 1000 1204 ID - Ukraine 🇺🇦 + MIX | 60-90 Days Premium | 7.6$ per 1000
    • Make Maxcheaters Great Again? i suppose lmao    
  • Topics

×
×
  • Create New...