Author Topic: Client-sided Auto Saver  (Read 435 times)

Open the GUI by a keybind, set the save interval by minutes through the GUI, and have a "Start AutoSaver" and "Stop AutoSaver" button on the GUI. It'll save the save in a category called "AutoSaves".

or you could type
function autosave(%a){if(%a > 0){doquicksave();$autosave=schedule(%a, 0, autosave, %a);}else{cancel($autosave);}}
type that and then autosave(timeinmilisecondslikevents);
type a negative number or 0 and it should stop it, if it doesn't, type cancel($autosave);

Open the GUI by a keybind, set the save interval by minutes through the GUI, and have a "Start AutoSaver" and "Stop AutoSaver" button on the GUI. It'll save the save in a category called "AutoSaves".
It is easily done, but I think a toggle key bind would work better. I could script this.