Instance for same zone diferents levels of players..

fa1thDEV

Baron
Customer
Create an instance where higher-level players don't see lower-level players, including mobs.

The idea is for that area to be a flag zone with custom mobs included, while keeping the retail zone for lower levels:

In other words, if you go to the location at level 40, the area won't be a flag zone. You'll see the normal mobs and won't see the high-level players. However, if you're 76+, you'll see the flag zone. You won't see the low-level mobs or people leveling up, and you'll see the high-level mobs. Is this possible?
 
Create an instance where higher-level players don't see lower-level players, including mobs.

The idea is for that area to be a flag zone with custom mobs included, while keeping the retail zone for lower levels:

In other words, if you go to the location at level 40, the area won't be a flag zone. You'll see the normal mobs and won't see the high-level players. However, if you're 76+, you'll see the flag zone. You won't see the low-level mobs or people leveling up, and you'll see the high-level mobs. Is this possible?
Do the same as kamaloka. Divide by minimum and maximum level in the same location and in the same geo square.
Therefore, the players will not intersect in any way.
 
Do the same as kamaloka. Divide by minimum and maximum level in the same location and in the same geo square.
Therefore, the players will not intersect in any way.
For flag zone not works, or I dont know how do it, you have a example?
 
Create an instance where higher-level players don't see lower-level players, including mobs.

The idea is for that area to be a flag zone with custom mobs included, while keeping the retail zone for lower levels:

In other words, if you go to the location at level 40, the area won't be a flag zone. You'll see the normal mobs and won't see the high-level players. However, if you're 76+, you'll see the flag zone. You won't see the low-level mobs or people leveling up, and you'll see the high-level mobs. Is this possible?
were you able to do it?
 
fun zone is a global zone
I didn’t explain it properly.

Create a zone of type “fun”, at the same coordinates as your instance:

<zone name="[my_zone]" type="fun" >
<set name="enabled" val="false" />

Enable “FlagOnEnterInFunZone”.

Then add that zone to the instance configuration, like this:

<zones><zone name="[my_zone]" active="true"/></zones>

You can add more zones if you want. For example, you can place another zone in the same location with different characteristics.

<zones><zone name="[my_zone]" active="true"/><zone name="[my_zone_2]" active="true"/></zones>
 
Last edited:
Yes, but I try it, and the fun zone is a global flag zone in the real world and the instance world
Nop. Leave the zone disabled in its own settings, and enable it only inside the instance. Do as I said and it will work.

Zone:
<zone name="[my_zone]" type="fun" >
<set name="enabled" val="false" />

Instance:
<zones><zone name="[my_zone]" active="true"/></zones>
 
Back
Top