The way I have it set up is this (all spectres have the TID 9)
Code: Select all
//NIGHT
Thing_Raise (9);
//Above resurrects all spectres at night
ChangeSky("SKY1NIGH","");
Floor_RaiseByValue(6, 10, 160);
fadeto(0,0,20,0.8,1300);
delay(500);
//MORNING
Thing_Destroy (9, 0);
//Above kills all spectres in the day
Floor_lowerByValue(6, 10, 160);
changesky("Sky1dawn","");
fadeto(20,10,5,0.6,1100);
delay(300);
restart;
}