Skip to content

dronelektron/sm-bonus-round-events

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Bonus round events

Allows you to use custom events in the bonus round

Supported Games

  • Day of Defeat: Source

Requirements

Installation

  • Download latest release
  • Extract plugins folder to addons/sourcemod folder of your server

API

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);