Hi,

Does anybody know if there's a way to change the speed rate for mounted players?
Basically I want to make all mounted players move slower.

A bit slower than here:

To view this content we will need your consent to set third party cookies.
For more detailed information, see our cookies page.
 
Unless the latest clients have changed, there is no way to slow down someone on a mount short of limiting their rate of movement server side. This would cause the player to look and feel as if they are lagging, which would be a sub par experience at best.

If you are still interested in slowing down players on mounts, look into the "artificial lag" that is present in the UO Rebirth scripts.
 
In Server/Mobile.cs:

Code:
private static TimeSpan m_WalkFoot = TimeSpan.FromSeconds( 0.4 );
private static TimeSpan m_RunFoot = TimeSpan.FromSeconds( 0.2 );
private static TimeSpan m_WalkMount = TimeSpan.FromSeconds( 0.2 );
private static TimeSpan m_RunMount = TimeSpan.FromSeconds( 0.1 );

I think client handle the speed packets so i think theres not much you can do about it

Check this thread from runuo:

http://www.runuo.com/community/threads/character-running-speed.62890/

Maybe it helps you.

The fake lag thing may affect the gameplay experience, what about mounts consume stam? or add stam to mounts, that would limit the travel speed
 
Last edited:
Back