Character moving very slow?
-
- Manual Inserter
- Posts: 2
- Joined: Fri Apr 07, 2017 1:47 pm
- Contact:
Character moving very slow?
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?
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
This command should fix it.
/c game.player.character_running_speed_modifier = 0
Re: Character moving very slow?
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:
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:
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)
Code: Select all
/c game.player.character_running_speed_modifier = 0
/c game.player.force.character_running_speed_modifier = 0
-
- Manual Inserter
- Posts: 2
- Joined: Fri Apr 07, 2017 1:47 pm
- Contact:
Re: Character moving very slow?
Problem solved, thanks!