Allows you to use custom events in the bonus round
- Day of Defeat: Source
- SourceMod 1.11 or later
- Download latest release
- Extract
plugins
folder toaddons/sourcemod
folder of your server
Called when the bonus round has started
forward void BonusRound_OnStart();
Called when the bonus round is over
forward void BonusRound_OnEnd();
Called for the client
when the bonus round is over
forward void BonusRound_OnReset(int client);
Called when the client
becomes the loser
forward void BonusRound_OnLoser(int client);
Called when the client
becomes the winner
forward void BonusRound_OnWinner(int client);
Called when the client
becomes the spectator
forward void BonusRound_OnSpectator(int client);