here's the easiest example:
Code:
new steamid[32]
get_user_authid(id,steamid,31)
if(equal(steamid,"STEAM_0:1:23456")){
client_print(id,print_chat,"You have been recognized by the plugin with SteamID: %s",steamid)
}
else {
client_print(id,print_chat,"Your SteamID: %s is unknown by the plugin!",steamid)
}
hope that helps