sastrei
(Sastrei)
#5
Give it a try. I use it all the time myself to skip past the hyper in sequence at the start of a CPU skirmish during testing.
Are you sure ? There is no mention of this shortcut in the keybindings.lua file oO (and I never heard of it)
yeah, I couldn’t detect any effect either
BitVenom
(BitVenom)
#9
@sastrei is correct - he may just have mappings that others don’t have… ? I think these were debug keys, I am not even 100% sure they work in all builds released - the public preview may vary, or even some of the private beta builds…
In my autoexec.lua (where the exe is, I forgot how the public does this?)
bind2("TurboEnable(4)", SHIFTKEY, BACKSLASHKEY )
bind2("TurboEnable(1)", CONTROLKEY, BACKSLASHKEY )
bind1("TurboEnable(2)", BACKSLASHKEY )
So:
Shift / is Go faster by 2x
Ctrl / is Go slower by 2x (yes including slo-mo)
/ is return to normal speed
3 Likes
miclebrick
(miclebrick)
#10
How do us mere mortals accomplish this?
radar3301
(ajlsunrise)
#11
That code goes into Steam\steamapps\common\Homeworld\HomeworldRM\Bin\Autoexec.lua
2 Likes
miclebrick
(miclebrick)
#12
That does not seem to be an existing file, sadly. 
sastrei
(Sastrei)
#13
Copy paste the mappings that bitvenom listed into a new text file and rename it to match
1 Like
BitVenom
(BitVenom)
#15
Wait - not Bin - the place where the EXE is, right? So Bin\Release ?
1 Like
radar3301
(ajlsunrise)
#16
And you would be correct. Follow @sastrei’s instructions. Also, make sure the file didn’t get renamed to autoexec.lua.txt.
@BitVenom: the autoexec.lua had to be in the bin folder not the bin\release folder for Homeworld 2. Did that change for RM?
2 Likes
BitVenom
(BitVenom)
#17
I’m not sure - mine is inside of the EXE folder for each release I’ve got (Debug, Release, Galaxy, etc)
2 Likes
miclebrick
(miclebrick)
#18
Putting it in bin/release instead worked!
Is TurboEnable() also useable in an UI command, like Universe_Slowdown() ?
If that’s the case, I could add it to my code here !
Edit :
I see that it can also slow things down. Does it have the same effect than Universe_Slowdown() in that case ?
The only parameters for it are 1, 2, and 4 ? Or is there other ones (like 8 for x4 for example) ?
2 Likes
miclebrick
(miclebrick)
#20
I’d like to note that doing it over and over increases the effect…
2 Likes
Thanks, that’s good to know !
1 Like
miclebrick
(miclebrick)
#22
The effect is actually minimal if you only do it once. If it’s really fast and you do the slow combo, it gets less fast, not instantly slow.
ok, so it changes the current speed.
From normal speed, doing TurboEnable(4)+TurboEnable(4)+TurboEnable(1) will achieve the same speed than TurboEnable(4).