Ok had a bad crash so DL'd the new version of ServUO now having nothing but issues with the Krampus encounter got it down to one error ....

on line 183 on the Krampus Mobile

public override void OnAfterTeleport(Mobile m)

the server says no suitable method found to overide....... Any Idea how to fix it it is annoying me.
 
Ok had a bad crash so DL'd the new version of ServUO now having nothing but issues with the Krampus encounter got it down to one error ....

on line 183 on the Krampus Mobile

public override void OnAfterTeleport(Mobile m)

the server says no suitable method found to overide....... Any Idea how to fix it it is annoying me.

If you are getting that error then you still have an older BaseCreature.cs, because the newest one has this method which can be overridden:

C#:
        public virtual void OnAfterTeleport(Mobile m)
        {
        }
 
Thanks Lokai wasn't aware they changed the Basecreature file mine was modified so kept mine all fixed now though TY .... now to figure out my other issues that caused the crash in the first place ... lol I'm sure I'll be back ...
 
Back