ServUO Version
Publish 57
Ultima Expansion
Endless Journey
I cant seem to figure out why the escort does not see it self in the region at final destination. I have checked baseEscort.cs, everything seems fine there. I see my regions are set and defined? so confused.pngconfused 2.pngwhat am i missing?
 
I have never used the editor but you must have boundary points here: Regions.xml

</region>
<region type="TownRegion" priority="50" name="Yew">
<rect x="92" y="656" width="349" height="225" />
<rect x="441" y="746" width="216" height="135" />
<rect x="258" y="881" width="399" height="380" />
<rect x="657" y="922" width="42" height="307" />
<rect x="657" y="806" width="17" height="28" />
<rect x="718" y="874" width="38" height="22" />
<go x="546" y="992" z="0" />
<music name="Yew" />
<zrange min="0" max="39" />
<region>
<rect x="600" y="808" width="24" height="24" />
<zrange min="0" max="39" />
<logoutDelay active="false" />
</region>

You also need a file that defines the region type, ie: TownRegion
 
Thanks RedBeard. gives me some direction for sure.. what's the "priority" for? as its really the only thing I seem to think is missing? this is how mine is set up? in Regions.xml is the differences making the issue?

-<region name="Yew" type="TownRegion">
<rune name="City Of Yew"/>
<rect height="171" width="67" y="769" x="1527"/>
<rect height="97" width="130" y="829" x="1449"/>
<go y="878" x="1550" z="0"/>
<music name="Yew"/>
<logoutDelay active="false"/>
</region>
 
Back