16
Technical forum / Re: movie clip intro
« on: July 06, 2014, 07:27:06 PM »
You need only to change this:
No need to change the part that hide the inventory.
And yes, is enough to add:
On the scene_init of the scene in which you want the menu to not show. Since the script that show or hide the inventory is an infinite loop it will check each time if the variable is set or no.
Code: WME Script
- if(Game.Interactive && Game.MouseY < 45 && !Game.ResponsesVisible && !WinMenu.Visible && Scene.NotShowInventory != true) Game.InventoryVisible = true;
No need to change the part that hide the inventory.
And yes, is enough to add:
Code: WME Script
On the scene_init of the scene in which you want the menu to not show. Since the script that show or hide the inventory is an infinite loop it will check each time if the variable is set or no.