Path: data/zones
Added a new zone for managing equipment in certain server zones.
Now you can prohibit the use of items of certain grades (for example, A, B, C) in specified locations.
For example, we select any standard zone - for example:
data/zone/peace_zone.xml
And now we modify the zone so that upon entering the zone the S grade is removed and blocked
Option 1:
Option 2:
Now let's make a set of grades, for example NONE D C
Added a new zone for managing equipment in certain server zones.
Now you can prohibit the use of items of certain grades (for example, A, B, C) in specified locations.
For example, we select any standard zone - for example:
data/zone/peace_zone.xml
XML:
<zone name="[primeval_peace1]" type="peace_zone" >
<polygon> <!-- 원시의 섬 선착장(20_17) -->
<coords loc="10408 -27395 -4290 -1290" />
<coords loc="12065 -25334 -4290 -1290" />
<coords loc="12223 -23159 -4290 -1290" />
<coords loc="10424 -22340 -4290 -1290" />
<coords loc="9566 -23131 -4290 -1290" />
<coords loc="9290 -24261 -4290 -1290" />
</polygon>
</zone>
And now we modify the zone so that upon entering the zone the S grade is removed and blocked
Option 1:
XML:
<zone name="[primeval_peace1]" type="peace_zone" >
<set name="zoneProhibitedGradesEquipment" val="S" /> <!--S Grade Prohibited -->
<polygon> <!-- 원시의 섬 선착장(20_17) -->
<coords loc="10408 -27395 -4290 -1290" />
<coords loc="12065 -25334 -4290 -1290" />
<coords loc="12223 -23159 -4290 -1290" />
<coords loc="10424 -22340 -4290 -1290" />
<coords loc="9566 -23131 -4290 -1290" />
<coords loc="9290 -24261 -4290 -1290" />
</polygon>
</zone>
Option 2:
Now let's make a set of grades, for example NONE D C
XML:
<zone name="[primeval_peace1]" type="peace_zone" >
<set name="zoneProhibitedGradesEquipment" val="NONE;D;C" /> <!--NONE D C Grade Prohibited -->
<polygon> <!-- 원시의 섬 선착장(20_17) -->
<coords loc="10408 -27395 -4290 -1290" />
<coords loc="12065 -25334 -4290 -1290" />
<coords loc="12223 -23159 -4290 -1290" />
<coords loc="10424 -22340 -4290 -1290" />
<coords loc="9566 -23131 -4290 -1290" />
<coords loc="9290 -24261 -4290 -1290" />
</polygon>
</zone>