Skip to content

Commit

Permalink
Merge pull request #107 from SirPlease/master
Browse files Browse the repository at this point in the history
Update readyup.inc (SirPlease#748)
  • Loading branch information
fantasylidong authored Mar 24, 2024
2 parents 5a73a6b + 16adfc3 commit 3cea886
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions addons/sourcemod/scripting/include/readyup.inc
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,28 @@ forward void OnRoundIsLivePre();
*/
forward void OnRoundIsLive();

/**
* Called when the live countdown has been cancelled
*
* @param client The client index.
* @param sDisruptReason The reason why cancel the live countdown
*/
forward void OnReadyCountdownCancelled(int client, char sDisruptReason);

/**
* Called when client is ready
*
* @param client The client index.
*/
forward void OnPlayerReady(int client);

/**
* Called when client is unready
*
* @param client The client index.
*/
forward void OnPlayerUnready(int client);

/**
* Returns the index of a item in the footer array.
* Does not have to be exact. The footer only needs to contain the input, does not need to match.
Expand Down

0 comments on commit 3cea886

Please sign in to comment.