Hello folks
with the tumbleweed template I try to hide the gui from the first room to make this my mainmenu, where I dont want the verbs and inventory to appear
When I use
function game_start()
{
gMain.Visible= false;
}
in GlobalScript, it works and hides the gui, but as I process to room2 where the game "starts"
I cant get the gui back to visible, how would I do that the best way?
I try this code in the room2 script but it does not work:
function room_FirstLoad()
{
gMain.Visible = true;
}