The RPG Maker Resource Kit

RMRK RPG Maker Creation => Requests => Script Request => Topic started by: YoBunny on November 24, 2011, 08:40:28 AM

Title: [VX] Hiding...
Post by: YoBunny on November 24, 2011, 08:40:28 AM
So for my current project I'm working on, I'm using Blizz's ABS.
The thing about it is that there's the HP bar and all the status information things to the top left; even during an Event. I was wondering if there's a certain script or way to hide it temporarily?

Sorry if this is the wrong forums &Thank you in advance. ;8
Title: Re: Hiding...
Post by: DoctorTodd on November 24, 2011, 07:24:26 PM
I can't be for sure but I think that in the script you configure what switch you wish to use. If that's the case then at the beginning of the cutscene turn the switch on and off at the end.
Title: Re: Hiding...
Post by: modern algebra on December 04, 2011, 01:49:09 AM
I'm not familiar with the script, but try this code in a Script call:

$game_system.hud = false

And to turn it back on:

$game_system.hud = true

From what I could tell, however, the player would still be able to turn the HUD on and off by pressing the button which controls it. If you also want to prevent the player from bringing it up, you can use the following code:

$game_system.hud_button = false/true

Where false would prevent the player from calling it, and true would permit the player to call it up.