Page 1 of 1
Increase run speed
Posted: Fri Apr 28, 2017 2:03 am
by TAT3R_
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
Posted: Fri Apr 28, 2017 2:13 am
by sparr
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
Posted: Fri Apr 28, 2017 3:46 am
by Nexela
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
Re: Increase run speed
Posted: Fri Apr 28, 2017 3:39 pm
by TAT3R_
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
Posted: Tue May 02, 2017 2:36 pm
by mophydeen
or in the save file:
event player joined, created ,..
Code: Select all
player.character.character_running_speed_modifier = 2
Re: Increase run speed
Posted: Tue May 09, 2017 7:05 am
by ShinyAfro
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.