mirror of
https://github.com/ChocoTaco1/TacoServer.git
synced 2026-01-19 16:14:44 +00:00
14 lines
369 B
C#
14 lines
369 B
C#
//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;
|
|
|
|
}
|