Hello again!
So this time i search a way to make an special area to a PvP Zone like Arena or Siege Zone because i want to move our TvT somwhere else ^^ can some one tell me how i can do that?
Creating PvP Zone
Forum rules
READ NOW: L2j Forums Rules of Conduct
READ NOW: L2j Forums Rules of Conduct
-
- Posts: 915
- Joined: Thu Sep 03, 2009 6:36 pm
- Location: Israel
- Contact:
Re: Creating PvP Zone
you need to map the area:
if its rectangular you only need two locations: NW and SE, you add these inside the zone vertices sql, if it isn't, well you need a lot of points that bound the entire area.
id order x y
(zoneId,0,NWx,NWy)
(zoneId,1,SEx,SEy)
if its not rectangular, you need
and in zone.xml
you make a new <zone id"...." >
with your new zoneId like in the vertices, minZ and maxZ is the min\max height of the zone
type = "Arena"
shape = "Cuboid"(rectangular) or "NPoly" (other)
and spawnX\Y is irrelevant because you determine that on the event manager, so just set the same one as closest town or something
if its rectangular you only need two locations: NW and SE, you add these inside the zone vertices sql, if it isn't, well you need a lot of points that bound the entire area.
id order x y
(zoneId,0,NWx,NWy)
(zoneId,1,SEx,SEy)
if its not rectangular, you need
and in zone.xml
you make a new <zone id"...." >
with your new zoneId like in the vertices, minZ and maxZ is the min\max height of the zone
type = "Arena"
shape = "Cuboid"(rectangular) or "NPoly" (other)
and spawnX\Y is irrelevant because you determine that on the event manager, so just set the same one as closest town or something
-
- Posts: 34
- Joined: Tue Sep 08, 2009 9:15 am
Re: Creating PvP Zone
In addition does anyone know how to make a so called "ChaoticZone" where people can go red but wont drop items? Is this possible in the L2J server?