diff --git a/Classic/prefs/serverPrefs.cs b/Classic/prefs/serverPrefs.cs index ba1194e..51de68e 100644 --- a/Classic/prefs/serverPrefs.cs +++ b/Classic/prefs/serverPrefs.cs @@ -65,6 +65,7 @@ $Host::EnableNoBaseRapeNotify = 1; $Host::EnableSetNextMission = 1; $Host::EnableTeamBalanceNotify = 1; $Host::EnableTurretPlayerCount = 10; +$Host::EnableVoteSound = 1; $Host::EvoAdminAdmin = 0; $Host::EvoAdminBan = 0; $Host::EvoAdminClanLock = 0; diff --git a/Classic/scripts/autoexec/VoteSound.cs b/Classic/scripts/autoexec/VoteSound.cs index 781d235..05784ed 100644 --- a/Classic/scripts/autoexec/VoteSound.cs +++ b/Classic/scripts/autoexec/VoteSound.cs @@ -1,9 +1,12 @@ //Make a sound every so seconds to make sure everyone votes +// +// Enable or Disable VoteSound +// $Host::EnableVoteSound = 1; function VoteSound( %game ) { - if($VoteSoundInProgress) + if( $VoteSoundInProgress && $Host::EnableVoteSound ) { messageAll('', '\c1Vote in Progress: \c0Press Insert for Yes or Delete for No.~wgui/objective_notification.wav', %display); schedule(12000, 0, "VoteSound", %game); diff --git a/Classic/scripts/serverDefaults.cs b/Classic/scripts/serverDefaults.cs index 4d82b3d..f04d43d 100644 --- a/Classic/scripts/serverDefaults.cs +++ b/Classic/scripts/serverDefaults.cs @@ -181,6 +181,7 @@ $Host::EnableMortarTurret = 0; //Enable or Disable Mortar Turret $Host::EnableNoBaseRapeNotify = 1; //Get a base rape notification $Host::EnableTeamBalanceNotify = 1; //Get a teambalance notification $Host::EnableTurretPlayerCount = 10; //How many to enable turrets +$Host::EnableVoteSound = 1; //If you want a sound chime during voting $Host::AntiCloakEnable = 1; //Enable or disable AntiCloak $Host::AntiCloakPlayerCount = 6; //How many to enable Cloak $Host::PUGautoPassword = 0; //Enable or Disable an auto password at a certain amount of players