Jump to content

Question

Posted

Trying to find out how to increase/decrease the movement speed of a player. Can't find anything in the forum or in the folders.

Am I able to modify player speed?

6 answers to this question

Recommended Posts

  • 0
Posted

In the line 462 of Client.Entities.Entity

 

Quote

        public virtual float GetMovementTime()
        {
            var time = 1000f / (float)(1 + Math.Log(Stat[(int)Stats.Speed]));
            if (Blocking)
            {
                time += time * (float)Options.BlockingSlow;
            }

            return Math.Min(1000f, time);
        }

you need to edit this also on the server side.

  • 0
Posted

I don't see any file called client.entities.entity in the intersect directory folder for server or client. 

What am I missing, please?

  • 0
Posted
10 hours ago, trollface said:

I don't see any file called client.entities.entity in the intersect directory folder for server or client. 

 

You must download the source code from the intersect github repository and compile your own version with your changes.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...