You can get it this way:
PHP Code:
new g_fb[33][32]
public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR)
}
public client_putinserver(id)
{
get_user_info(id, "fb", g_fb[id], 31)
}
public client_infochanged(id)
{
static tmp[32], name[32]
get_user_info(id, "fb", tmp, 31)
if(equal(tmp, g_fb[id]))
return
copy(g_fb[id], 31, tmp)
get_user_name(id, name, 31)
client_print(0, print_chat, "%s has changed fb to %s", name, tmp)
}
__________________