Increase run speed
Increase run speed
I have seen several places to paste a line of text into the lua to increase run speed but never works. Could someone come out with a mod that increases run speed?
Re: Increase run speed
This mod would be very easy to make. A good mod making intro. I recommend you make it and publish it!
Re: Increase run speed
The command line version is
/c game.player.character_running_speed_modifier = 0
0 is no modifier, -.5 is slow, -1 will walk backwards and 3 is adderal speed
/c game.player.character_running_speed_modifier = 0
0 is no modifier, -.5 is slow, -1 will walk backwards and 3 is adderal speed
Re: Increase run speed
Actually I got the increased run speed command line working. I pasted the line into another mod and it worked? Dont know how or why but it decided to work. I saw some text similar to and pasted it in there with it and it worked haha.
Re: Increase run speed
or in the save file:
event player joined, created ,..
event player joined, created ,..
Code: Select all
player.character.character_running_speed_modifier = 2
Re: Increase run speed
data.raw.player.player.running_speed = data.raw.player.player.running_speed*stsrun
Heres a line from one of my personal mods, but anyway, it basically grabs the base speed and multiplies it by the container "stsrun" - which can be a number, i just have it down in a config with all my other values.
Heres a line from one of my personal mods, but anyway, it basically grabs the base speed and multiplies it by the container "stsrun" - which can be a number, i just have it down in a config with all my other values.