LoD_PRC8/_module/nss/reset_module.nss
Jaysyn904 94990edc60 Initial Upload
Initial Upload
2023-09-21 21:20:34 -04:00

17 lines
482 B
Plaintext

//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"));
}