Epoch/Sources/epoch_code/compile/setup/masterLoop/Event0.sqf
He-Man 096f03e7b9 AutoRun
- Default Key is "W"
- You can change the key in EPOCH ESC Menu
- If choosen key is same as "moveforward" (default), you have to 2x tap
it, else you only have to 1x tap it
- If your legs are broken, you get a hint "can not autorun - legs are
broken"
- If the terrain is too steep, you only walk in AutoRun
- Inside Water, you can not Autorun
2018-01-18 21:40:18 +01:00

12 lines
237 B
Plaintext

// runs every 0.4 seconds
if (EPOCH_IsAutoRunning) then {
if (call EPOCH_AutoRun_Check) then {
call EPOCH_AutoRun
}
else {
EPOCH_IsAutoRunning = false;
player switchMove "";
["Autorun stopped",5] call Epoch_Message;
};
};