Thanks, I think I understand it! So basically no function has to return PLUGIN_HANDLED if I would nest or combine the if conditions?
PHP Code:
public event_player_spawned(id)
{
if (get_pcvar_num(g_enabled) && ( get_pcvar_num(g_flash_on_spawn) || g_round_started ))
flash_user_with_team_color(id)
}
__________________