Quote:
Originally Posted by hornet
The Infinite Round API is your answer.
PHP Code:
/**
* @brief Called when a round ends.
*
* @note You can block a round end happening by returning PLUGIN_HANDLED.
* Blocking from the forward supercedes always the ir_block_roundend cvar value.
*
* @param type The type of round end. See RoundEndType constants.
*/
forward OnRoundEnd( const RoundEndType:type );
You can check for other bomb entities there and if you find one then return.
|
so how exactly would I go about using this?
I just need to include the infinite round api?
How do I declare/hook/register whatever the forward?
What are the RoundEndTypes? are those the flags defined in infinte round(the letters?)
__________________