I have a script like this attached to a dialog branch to load a new area:
 
 void main() 
 {
 StartNewModule("AREA51");
 } 
 
 It happens i need the script to fire a minute after the dialog finishes, not right away. Is it possible? and how should be the code?
  
 
  
  
    DelayCommand(60.0, StartNewModule("AREA51"));