/**
* Called when when active ban for player is checked.
* !Important! Called only when cvar fb_kick_check is not 0.
*
* @param id Client index
* @param userid Client userid
* @param banid Client banid
* @param ban_created Ban creation time (unix timestamp)
* @param ban_length_int Ban duration in seconds
* @param ban_reason Ban reason
* @param admin_name Admin name
* @param admin_steamid Admin steamid
* @param player_name Client name
* @param player_steamid Client steamid
* @param player_ip Client IP
* @param ban_type Ban type
*
* @return PLUGIN_CONTINUE to let the command continue
* PLUGIN_HANDLED to cancel the player's kick.
*/
forward fbans_active_ban_check(
const id, const userid, const banid,
const ban_created, const ban_length_int, const ban_reason[],
const admin_name[], const admin_steamid[], const player_name[],
const player_steamid[], const player_ip[], const ban_type[]);