made the pack completely portable and wrote relevent bat files to go with it

This commit is contained in:
Draqoken
2025-04-09 17:04:56 +03:00
parent 5e77d7e9cf
commit 5e4144c3c0
7417 changed files with 2181044 additions and 19 deletions

View File

@@ -1,47 +0,0 @@
<h1>Hotkeys Reference</h1>
<h2>Buffer Keys</h2>
<ul>
<li><strong>Alt + Shift + Right</strong>: Add a new buffer</li>
<li><strong>Alt + Shift + Left</strong>: Delete a buffer</li>
<li><strong>Alt + Left</strong>: Move to the previous buffer</li>
<li><strong>Alt + Right</strong>: Move to the next buffer</li>
<li><strong>Alt + Page Up</strong>: scrowl up for ten messages of the current buffer</li>
<li><strong>Alt + Page Down</strong>: scrowl down for ten messages of the current buffer</li>
<li><strong>Alt + Up</strong>: move to the previous message of the current buffer</li>
<li><strong>Alt + Down</strong>: Move to the next message of the current buffer</li>
<li><strong>Alt + #</strong>: Jump to <number> of your current buffer.</li>
<li><strong>Alt + Home</strong>: Go to top of buffer</li>
<li><strong>Alt + End</strong>: Go to bottom of buffer</li>
<li><strong>Alt + Delete</strong>: Clear the current buffer</li>
<li><strong>Alt + Shift + Delete</strong>: Clear all buffers</li>
</ul>
<h2>Soundpack Volume and Behavior</h2>
<ul>
<li><strong>F5</strong>: Adjust general volume</li>
<li><strong>F6</strong>: Adjust ambiance volume</li>
<li><strong>F7</strong>: Adjust communication volume</li>
<li><strong>F8</strong>: Adjust music volume</li>
<li><strong>Ctrl + F5</strong>: Adjust clocks volume</li>
<li><strong>Ctrl + F6</strong>: Adjust combat music volume</li>
<li><strong>Ctrl + F7</strong>: Adjust IC social volume</li>
<li><strong>Ctrl + F8</strong>: Adjust OOC social volume</li>
<li><strong>Alt + F5</strong>: Adjust ground combat volume</li>
<li><strong>Alt + F6</strong>: Adjust harvesting volume</li>
<li><strong>Alt + F7</strong>: Adjust salvage volume</li>
<li><strong>Alt + F8</strong>: Adjust games volume</li>
<li><strong>Shift + F5</strong>: Adjust ship combat volume</li>
<li><strong>Shift + F6</strong>: Adjust ship volume</li>
<li><strong>Shift + F7</strong>: Adjust ship movement volume</li>
<li><strong>Shift + F8</strong>: Adjust vehicle volume</li>
<li><strong>F9</strong>: Toggle IC social sounds</li>
<li><strong>F10</strong>: Toggle OOC social sounds</li>
<li><strong>Alt + F9</strong>: Toggle panning of sounds</li>
<li><strong>Alt + F10</strong>: Toggle pitch shifting of sounds</li>
<li><strong>Alt + F11</strong>: Toggle ambiance sounds</li>
<li><strong>Ctrl + F9</strong>: Toggle planetary music</li>
<li><strong>Ctrl + F10</strong>: Toggle space combat music</li>
<li><strong>Ctrl + F11</strong>: Toggle weather sounds</li>
<li><strong>Alt + F12</strong>: Restart soundpack</li>
<li><strong>F2</strong>: Open server-side soundpack settings</li>
<li><strong>Ctrl + S</strong>: Save client-side soundpack settings</li>
</ul>

View File

@@ -1,14 +1,14 @@
;variables
#var settings {rawpass|miscgags|shipgags|vehiclegags|activitygags}
;Settings.
#File 6 {cosmic rage/settings.set} 1
#File 6 {settings.set} 1
#var num 1
#ForAll @settings {
#read 6 {%i} @num;
#math num {@num + 1}};
#close 6
#alias ActualSave {
#File 6 {cosmic rage/settings.set} 1;
#File 6 {settings.set} 1;
#Var SettingsFileCounter 0;
#ForAll @settings {
#Math SettingsFileCounter {@SettingsFileCounter +1};
@@ -19,14 +19,15 @@
#gvar disconnected 1;
ActualSave; #say {Settings saved!}}
#trigger {$sphook &{race}; &{action}:&{soundpath}:&{volume}:&{pitch}:&{pan}:&{id}} {
#if {%ifWord(hosts,@soundpath,"") and %defined(@old)=0} {#var old @sppath; #var sppath {cosmic rage/}; #alarm 0,01 {#var sppath @old; #unvar old}};
#if {@action = "loop"} {#playloop {@sppath/@soundpath.wav} @volume; #var @id %playhandle};
#if {@action = "playrec"} {#play {@sppath/@soundpath.wav} @volume; #var @id %playhandle};
#if {@action = "play"} {#play {@sppath/@soundpath.wav} @volume}; #if {@pan <> "na"} {#math pan {@pan * 50}; #pc %playhandle pan @pan}; #if {@pitch <> "na"} {#pc %playhandle frequency @pitch} {#pc %playhandle frequency 44100};
#if {@action = "stop"} {#if {%defined(@id) = 1} {#pc %var(@id) stop}};
#if {@action = "adjust"} {#if {%defined(@id) = 1} {#if {@volume <> "na"} {#pc %var(@id) volume @volume}; #if {@pan <> "na"} {#pc %var(@id) pan @pan}; #if {@pitch <> "na"} {#pc %var(@id) frequency @pitch}}}; #gagline all}
#Alias login {#gagon all; 1; %charInfo(name); #wait (0.1); #ungagon; %charInfo(password)}
#load misc.set
#load gagcreator.set
#load @scpath/misc.set
#load @scpath/gagcreator.set
#gunkey numpad2
#gunkey numpad4
#gunkey numpad5
@@ -47,14 +48,14 @@ ActualSave; #say {Settings saved!}}
#SetSpeech incoming on;
#say {speech on.} VoiceOnly}}
#key {control-f1} {smute}
#alias devl {#if {%1 = ""} {#say {you didn't put any path of file to load.}} {#load {%1.set}; {#say {%1 loaded.}}}}
#alias devu {#if {%1 = ""} {#say {you didn't put any path of file to unload.}} {#unload {%1.set}; {#say {%1 unloaded.}}}}
#alias devl {#if {%1 = ""} {#say {you didn't put any path of file to load.}} {#load {@scpath\%1.set}; {#say {%1 loaded.}}}}
#alias devu {#if {%1 = ""} {#say {you didn't put any path of file to unload.}} {#unload {@scpath\%1.set}; {#say {%1 unloaded.}}}}
#alias devo {#if {%1 = ""} {#say {you didn't put any path of file to open.}} {#edit {%1.set}; {#say {%1 opened in your prefered editor.}}}}
#alias devc {#if {%1 = ""} {#say {you didn't put any path of file for your editor. the example of the file should be like "notepad.exe".}} {#configure Editor {%1}; {#say {%1 set as your default editor.}}}}
#alias devr {#if {%1 = ""} {#say {you didn't put any path of file to reload.}} {#unload {%1.set}; #load %1.set; {#say {%1 successfully reloaded..}}}}
#alias devr {#if {%1 = ""} {#say {you didn't put any path of file to reload.}} {#unload {@scpath\%1.set}; #load @scpath\%1.set; {#say {%1 successfully reloaded..}}}}
#if {@rawpass = "enabled"} {makebetter}
#if {@activitygags = "enabled"} {#load {gags/activitygags.set}}
#if {@vehiclegags = "enabled"} {#load {gags/vehiclegags.set}}
#if {@shipgags = "enabled"} {#load {gags/shipgags.set}}
#if {@miscgags = "enabled"} {#load {gags/gags.set}}
#if {@activitygags = "enabled"} {#load {@scpath/gags/activitygags.set}}
#if {@vehiclegags = "enabled"} {#load {@scpath/gags/vehiclegags.set}}
#if {@shipgags = "enabled"} {#load {@scpath/gags/shipgags.set}}
#if {@miscgags = "enabled"} {#load {@scpath/gags/gags.set}}
#trig {$buffer *} {#gagline all; #say %1 voiceonly}