[Help]Peace zone and Mob ID L2J 

Newbie Spellweaver
Joined
Mar 9, 2008
Messages
44
Reaction score
0
1.How can i make peace zone where i draw the red line

Click on image..

2.Tell me id of mobs
Click on image..
 
about the mobs: if you know how to click+ctrl and check mobs template ID then where`s the problem
about the peace zone: open gameserver/data/zone/peace.xml and add new values:
Code:
  <zone id="99" name="custom_peace_zone_001">
    <settings pvp="Peace"/>
    <shape type="Poly" zMin="minimum_z_value" zMax="maximum_z_value">
      <point x="x_value_1" y="y_value_1"/>
      <point x="x_value_2" y="y_value_2"/>
      <point x="x_value_3" y="y_value_3"/>
      <point x="x_value_4" y="y_value_4"/>
    </shape>
  </zone>

some explanations:
minimum_z_value = search for the lowest point there and enter the value there
maximum_z_value = search for the highest point in your area and enter the value there
x_value_1 = enter the X value of one of the corners
y_value_1 = enter the Y value of one of the corners
and do the same for all x and y values!
if you didn`t understand something, feel free to post your problems!
good luck!
 
Upvote 0
Back