Page 1 of 1
Character moving very slow?
Posted: Fri Apr 07, 2017 1:53 pm
by TheEnchanter
I'm about 15-20 hours into a game using the mod pack Arumba provides in his A Rocket per Patron series on YouTube, and it seems that out of nowhere my character has just begun to walk at about half of the normal walking speed. Nothing else seems to be lagging; transport belts moving at normal speeds, inserters moving at normal speeds, enemies moving at normal speeds; only my character is slowed down. I'm not sure if there's some mod buried in this mod pack that is making my character slow down or if it's something else (and yes, I'm still at 60/60 FPS/UPS).
Re: Character moving very slow?
Posted: Fri Apr 07, 2017 3:10 pm
by Nexela
You Probably quit the game while the slow key mod was enabled and active for your char
This command should fix it.
/c game.player.character_running_speed_modifier = 0
Re: Character moving very slow?
Posted: Fri Apr 07, 2017 3:10 pm
by daniel34
If you are already at a state where you are using exoskeletons then check if your armor is equipped, actually contains the exoskeletons and that they have enough power.
If that's not the cause then run the following commands:
Code: Select all
/c game.player.print(game.player.character_running_speed_modifier)
/c game.player.print(game.player.force.character_running_speed_modifier)
The output should be
0 on both commands for the character to run at the normal speed, if one of them is negative then some mod reduced the speed. You can change it back with one of these, depending on which one was negative:
Code: Select all
/c game.player.character_running_speed_modifier = 0
/c game.player.force.character_running_speed_modifier = 0
Re: Character moving very slow?
Posted: Fri Apr 07, 2017 4:50 pm
by TheEnchanter
Problem solved, thanks!