PHP Code:
public plugin_init()
{
register_concmd("amx_info", "ShowInfo", ADMIN_ALL, "Shows player's IP and STEAMID.")
}
public ShowInfo(id , level , cid)
{
if(!cmd_access(id, level, cid, 2))
return PLUGIN_HANDLED
}
I wan't that amx_info would be accessible for everybody. If i do like in the code then admins can't use it, it show's "You have no access for this commands".