You need to declare g_bCannotBeFrozen[] globally and remove 'new' from the below.
PHP Code:
public DisableFrozenForNemesis(id)
{
if (is_user_alive(id) && flag_get(g_IsNemesis, id))
{
// Now nemesis cannot be frozen
new g_bCannotBeFrozen[id] = true
}
}
__________________