Quote:
|
Originally Posted by Mindtwistah
How do I make the screen "Fade out" for two seconds in a dialog?
|
A script like this should work
Quote:
void main()
{
NoClicksFor(5.0);
ActionPauseConversation();
SetGlobalFadeOut(1.5, 0.5);
DelayCommand(2.0, SetGlobalFadeIn(2.5,0.5));
ActionResumeConversation();
}
|