trollface Posted April 12, 2021 Share Posted April 12, 2021 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? Link to comment Share on other sites More sharing options...
0 HelenaToDev Posted April 12, 2021 Share Posted April 12, 2021 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. Link to comment Share on other sites More sharing options...
0 trollface Posted April 12, 2021 Author Share Posted April 12, 2021 I don't see any file called client.entities.entity in the intersect directory folder for server or client. What am I missing, please? Link to comment Share on other sites More sharing options...
0 HelenaToDev Posted April 12, 2021 Share Posted April 12, 2021 Open the visual studio, go browsing inside the source files of the client and then the server following. Â Link to comment Share on other sites More sharing options...
0 Blinkuz Posted April 12, 2021 Share Posted April 12, 2021 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. Link to comment Share on other sites More sharing options...
0 Justn Posted April 12, 2021 Share Posted April 12, 2021 or just increase the speed stat in the class editor Link to comment Share on other sites More sharing options...
0 trollface Posted April 12, 2021 Author Share Posted April 12, 2021 Thank you all for the answers! I'm learning to code, so this is going to be a fun adventure for the next few years Link to comment Share on other sites More sharing options...
Question
trollface
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?
Link to comment
Share on other sites
6 answers to this question
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now