Jump to content
jts_2009

RscDisplayInterrupt - correct way to execute?

Recommended Posts

Hello. Anyone know if there is a "correct" way to execute pause menu? (Escape menu. When you press Esc button).

 

You can open it with createdialog "RscDisplayInterrupt", but there are no scripts which set functions to it. So it's useless. Maybe there is some way to execute it correctly..?

Share this post


Link to post
Share on other sites

Needs to be a display and not a dialog.

player addAction [ "Escape", {
		params [ "_target", "_caller", "_id", "_args" ];
		
		findDisplay 46 createDisplay "RscDisplayInterrupt";
	}
];

 

  • Like 5

Share this post


Link to post
Share on other sites
15 minutes ago, Larrow said:

Needs to be a display and not a dialog.

 

Hehe, thanks!

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

×