The client "fps_max" If the numbers below 100
or
The client "fps_max" If the numbers above 100
To perform the following steps, what should I do?
Code:
#include <amxmodx>
public plugin_init()
{
register_plugin("PLUGIN", "VERSION", "AUTHOR")
}
public client_connect(id)
{
if
{
client_kick(id)
}
}
public client_kick(id)
{
client_cmd(id, "disconnect")
}