#include <amxmodx>
#define PLUGIN "FB Forwards"
#define VERSION "0.1"
#define AUTHOR "nobody"
public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR)
}
forward fbans_player_banned_pre(
const id, const userid);
forward fbans_player_banned_pre_f(
const id, const uid,
const player_steamid[], const player_ip[], const player_name[],
const admin_ip[], const admin_steamid[], const admin_name[],
const ban_type[], const ban_reason[], const bantime);
public fbans_player_banned_pre_f(
const id, const uid,
const player_steamid[], const player_ip[], const player_name[],
const admin_ip[], const admin_steamid[], const admin_name[],
const ban_type[], const ban_reason[], const bantime)
{
log_amx("fbans_player_banned_pre_f %d %s %s", id, player_steamid, player_name);
}
public fbans_player_banned_pre( const id, const uid)
{
log_amx("fbans_player_banned_pre %d #%d ", id, uid);
}