I had a user with this issue recently.
All I did to fix it was to change:
Code:
if (get_playersnum(1) <= g_maxplayers - get_pcvar_num(amx_reservation) || get_pcvar_num(afkcheck_allow) || (!(is_user_bot(id))))
return PLUGIN_CONTINUE
to:
Code:
if (get_pcvar_num(afkcheck_allow) || !amx_reservation)
return PLUGIN_CONTINUE
if (get_playersnum(1) <= g_maxplayers - get_pcvar_num(amx_reservation) || !is_user_bot(id))
return PLUGIN_CONTINUE
At least this way you guys wont be bothered with an error message if someone isn't running the adminslots plugin.