added an optional feature to recieve automatic updates which include scripts and sounds downloading on demand.

This commit is contained in:
Augustus
2026-02-08 17:29:18 +02:00
parent 326564483a
commit 432c02b616
5 changed files with 208 additions and 36 deletions

View File

@@ -38,4 +38,15 @@ ActualSave; #say {Settings saved!};
#alias makeworse {#Configure PassThruChar {~>}; #Configure SwitchSession {~:}; #passthru {•}}
#alias makebetter {#Configure PassThruChar {~•}; #Configure SwitchSession {~•}; #passthru {%<;>{}#"'}}
#alias rawinput {#if {@rawpass = "enabled"} {#var rawpass "disabled"; makeworse; #say {Raw input mode is now disabled.};#play {@sppath/general/misc/off.wav} @vol} {#var rawpass "enabled"; makebetter; #say {Raw input mode is now enabled.};#play {@sppath/general/misc/on.wav} @vol}}
#alias rawinput {#if {@rawpass = "enabled"} {#var rawpass "disabled"; makeworse; #say {Raw input mode is now disabled.};#play {@sppath/general/misc/off.wav} @vol} {#var rawpass "enabled"; makebetter; #say {Raw input mode is now enabled.};#play {@sppath/general/misc/on.wav} @vol}}
#alias {AutomaticUpdate} {#if {@AutomaticUpdate="enabled"} {
#var AutomaticUpdate "disabled";
#play {@sppath/general/misc/off.wav} @vol;
#say {Automatic updates will no longer be applied to your soundpack.};
} {
#var AutomaticUpdate "enabled";
#play {@sppath/general/misc/on.wav} @vol;
#say {Updates will now automaticly be applied to your soundpack.};
}
}