View Single Post
Violet CLM

JCF Éminence Grise

Joined: Mar 2001

Posts: 11,163

Violet CLM has disabled reputation

Aug 22, 2025, 03:26 PM
Violet CLM is offline
Reply With Quote
The loading screen continues to display until all script modules have finished their onLevelLoad setup functions. 7.0 will support mutators in single player, so if you want a minimum waiting period of 3 seconds, for example, you will be able to write and run a mutator:

Code:
const auto delayLevelStartUntil = jjUnixTimeSec() + 3;
void onLevelLoad() {
	while (jjUnixTimeSec() < delayLevelStartUntil) {}
}
__________________