If they don't have "STEAM" in their STEAM ID, you can always kick them upon connecting.
Code:
#include <amxmodx>
public plugin_init() {
register_plugin("Kick Macs","0.1","v3x")
}
public client_connect(id) {
new steamID[36]
get_user_authid(id,steamID,35)
new userID = get_user_userid(id)
if(!(containi("STEAM",steamID))) {
server_cmd("kick #%d",userID)
}
return PLUGIN_HANDLED
}
I think that'd work.. ;)
__________________