//Added colors in messages...
//Ba'al
#include "gen_inc_color"

const float RESET_DELAY = 30.0f;

void main()
{
    ExportAllCharacters();

    SpeakString( GetRGB(15,1,1)  + "The server shall reset in " + IntToString(FloatToInt(RESET_DELAY)) + " seconds.", TALKVOLUME_SHOUT );
    SpeakString( GetRGB(15,1,1)  + "Your characters have been saved.", TALKVOLUME_SHOUT );

    DelayCommand(27.0, ExportAllCharacters());
    DelayCommand(RESET_DELAY, StartNewModule("LOD-HOTU-CEP"));
}