Corrected file structure

This commit is contained in:
ChocoTaco 2018-11-03 13:13:23 -04:00
parent 2fe441f421
commit 2097008ccb
30 changed files with 6 additions and 1700 deletions

View file

@ -0,0 +1,13 @@
//Make a sound every so seconds to make sure everyone votes
function VoteSound( %game ) {
if($VoteSoundInProgress) {
messageAll('', '\c1Vote in Progress: \c0Press Insert for Yes or Delete for No.~wgui/objective_notification.wav', %display);
//$VoteSoundSchedule = schedule(12000, "VoteSound", %game);
schedule(12000, 0, "VoteSound", %game);
}
else
return;
}