mirror of
https://github.com/EpochModTeam/Epoch.git
synced 2024-08-30 18:22:13 +00:00
12 lines
237 B
Plaintext
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;
|
||
|
};
|
||
|
};
|