OnAutoConfigsBuffered Forward

This is called once, right after OnMapStart() but any time before OnConfigsExecuted(). It is called after the "exec sourcemod.cfg" command and all AutoExecConfig() exec commands have been added to the ServerCommand() buffer.

If you need to load per-map settings that override default values, adding commands to the ServerCommand() buffer here will guarantee that they're set before OnConfigsExecuted().

Unlike OnMapStart() and OnConfigsExecuted(), this is not called on late loads that occur after OnMapStart().

void OnAutoConfigsBuffered()