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
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.
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.