To be honest, I don't know what these numbers have to do with age, but here's what you posted:
PHP Code:
/* Plugin generated by AMXX-Studio */
#include <amxmodx>
#include <amxmisc>
#define PLUGIN "New SteamID Blocker"
#define VERSION "1.0"
#define AUTHOR "stupok"
public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR)
}
public client_authorized(id)
{
new SteamID[32]
get_user_authid(id, SteamID, 31)
new iFirstNum = SteamID[8] - 48
new iSecondNum = str_to_num(SteamID[9])
iSecondNum = iFirstNum + (iSecondNum * 2) + 76561197960265728
// do something...
}
__________________