Hi everyone,

I have been trying to find out how to remove stam blocking for certain units but for the life of me can't track down the code location.

I tried overriding the CheckShove function but this won't even be called when my stam is less than max... and I have looked for ages to see if I could track this part down. Is there something I am missing?

Cheers, JarJarIsASith
 
The IgnoreMobiles function handles that.

Example from WraithForm.cs for players:
Code:
            if (m is PlayerMobile)
                ((PlayerMobile)m).IgnoreMobiles = true;

or for other BaseCreature, simply

Code:
IgnoreMobiles = true;
 
Back