SFX from sidemods.

This commit is contained in:
Mari the Deer 2022-08-22 17:51:39 +02:00
commit fa6eec038c
10 changed files with 13 additions and 10 deletions

View file

@ -1,3 +1,3 @@
[default]
SWWM_MODVER="\cyDEMOLITIONIST \cw1.3pre r360 \cu(Mon 22 Aug 17:39:10 CEST 2022)\c-";
SWWM_SHORTVER="\cw1.3pre r360 \cu(2022-08-22 17:39:10)\c-";
SWWM_MODVER="\cyDEMOLITIONIST \cw1.3pre r360 \cu(Mon 22 Aug 17:51:39 CEST 2022)\c-";
SWWM_SHORTVER="\cw1.3pre r360 \cu(2022-08-22 17:51:39)\c-";

View file

@ -27,8 +27,8 @@ $limit title/explo 64
title/thump sounds/TitleThump.ogg
$limit title/thump 16
misc/secret sounds/menu/findsecret.ogg
misc/keytry sounds/menu/failuse.ogg
misc/secret sounds/CTF5.ogg
misc/keytry sounds/LOCKDOOR.ogg
misc/w_pkup sounds/general/wpickup.ogg
misc/w_pkup_vip sounds/general/wpickup_vip.ogg
misc/p_pkup sounds/general/ppickup.ogg
@ -43,7 +43,7 @@ misc/armor_pkup sounds/general/spickup.ogg
misc/health_pkup sounds/general/hpickup.ogg
misc/spawn sounds/CORK.ogg
misc/teleport sounds/general/teleport.ogg
misc/chat sounds/menu/chatsnd.ogg
misc/chat sounds/CHATBEEP.ogg
misc/sundowner sounds/SUNDOWNER.ogg
misc/emone sounds/EMONE.ogg
misc/trombone sounds/SADTROMBONE.ogg
@ -59,6 +59,8 @@ misc/orbexplode sounds/ORBEXPLODE.ogg
misc/omgfart sounds/omgfart.ogg
misc/voice sounds/dlgvoice.ogg
misc/frag sounds/GFRAG.ogg
misc/invchange sounds/INVSEL.ogg
misc/invuse sounds/INVUSE.ogg
misc/gibber1 sounds/general/Gib1.ogg
misc/gibber2 sounds/general/Gib2.ogg
misc/gibber3 sounds/general/Gib3.ogg
@ -139,6 +141,7 @@ $pitchshift misc/p_pkup 0
$pitchshift misc/spawn 0
$pitchshift misc/teleport 0
$pitchshift misc/chat 0
$pitchshift misc/invuse 0
$pitchshift menu/activate 0
$pitchshift menu/backup 0
$pitchshift menu/prompt 0
@ -151,6 +154,8 @@ $pitchshift menu/clear 0
$pitchshift menu/advance 0
menu/demoopen sounds/menu/openkbase.ogg
menu/demosecret sounds/menu/findsecret.ogg
menu/demochat sounds/menu/chatsnd.ogg
menu/demotab sounds/menu/menutab.ogg
menu/demosel sounds/menu/menuset.ogg
menu/demoscroll sounds/menu/menuscroll.ogg
@ -161,8 +166,6 @@ menu/fail sounds/menu/failuse.ogg
menu/noinvuse sounds/menu/failinv.ogg
menu/buyinv sounds/menu/buysnd.ogg
$alias misc/invchange menu/demosel
UseArtifact DSEMPTY
StartupTick DSEMPTY
world/watersplash sounds/terrain/DSSPLASH.ogg

BIN
sounds/CHATBEEP.ogg Normal file

Binary file not shown.

BIN
sounds/CTF5.ogg Normal file

Binary file not shown.

BIN
sounds/INVSEL.ogg Normal file

Binary file not shown.

BIN
sounds/INVUSE.ogg Normal file

Binary file not shown.

BIN
sounds/LOCKDOOR.ogg Normal file

Binary file not shown.

BIN
sounds/general/AreaName.ogg Normal file

Binary file not shown.

View file

@ -405,7 +405,7 @@ Class SWWMDirectMessage : HUDMessageBase
{
seqnum++;
charcnt = 0;
if ( (seqnum > seqcnt) && !nextdirect ) S_StartSound("misc/chat",CHAN_VOICE,CHANF_UI,1.,0.);
if ( (seqnum > seqcnt) && !nextdirect ) S_StartSound("menu/demochat",CHAN_VOICE,CHANF_UI,1.,0.);
else SetText();
return;
}
@ -444,7 +444,7 @@ Class SWWMDirectMessage : HUDMessageBase
if ( delay <= 0 )
{
Console.Printf(StringTable.Localize("$SWWM_INCOMINGMSG"),chrfullname);
S_StartSound("misc/chat",CHAN_VOICE,CHANF_UI,1.,0.);
S_StartSound("menu/demochat",CHAN_VOICE,CHANF_UI,1.,0.);
seqnum++;
}
return false;

View file

@ -248,7 +248,7 @@ Class DemolitionistMenu : GenericMenu
int secret = FindTabType('DemolitionistSecretTab');
if ( curtab != secret )
{
MenuSound("misc/secret");
MenuSound("menu/demosecret");
tabs[curtab].OnDeselect();
curtab = secret;
tabs[curtab].OnSelect();