25 lines
675 B
INI
25 lines
675 B
INI
// Round Start Configuration
|
|
// This file is executed at the start of each round
|
|
|
|
// Display round start message
|
|
say "========================================="
|
|
say "ROUND STARTING - 15 MINUTE TIMER!"
|
|
say "Map: Crossfire"
|
|
say "========================================="
|
|
|
|
// Play round start sound
|
|
play "fvox/bell.wav"
|
|
|
|
// 10 second voice countdown using speak command
|
|
wait 300; say "10 seconds until round begins!"; speak "ten"
|
|
wait 60; speak "nine"
|
|
wait 60; speak "eight"
|
|
wait 60; speak "seven"
|
|
wait 60; speak "six"
|
|
wait 60; speak "five"
|
|
wait 60; speak "four"
|
|
wait 60; speak "three"
|
|
wait 60; speak "two"
|
|
wait 60; speak "one"
|
|
wait 60; say "FIGHT!"; play "fvox/activated.wav"
|