Chaos Project

RPG Maker => Event Systems => Topic started by: bboyd93 on June 25, 2010, 01:12:31 am

Title: Disable Blizz ABS HUD
Post by: bboyd93 on June 25, 2010, 01:12:31 am
Ok, this is a simple, (VERY simple) system made for XP to turn Blizzard's ABS HUD off with a call script.

First, make a common event, call it "Hud = Off" or something to that effect.

Insert a script, and input this code. . .

Script
$game_system.hud= false
$game_system.hotkeys= false
$game_system.minimap= 0


What this will do, is make a common event that disables the HUD, hotkeys, and minimap when called.  

This code can be used in a script to turn them back on.

Script
$game_system.hud= true
$game_system.hotkeys= true
$game_system.minimap= 1


I recommend inserting the 2nd script into another common event.  


While this system is very simple, it can nonetheless save time when making cut scenes and the like.  

This is my first upload, so I hope you all like it.  Regardless of the simplicity. :P
Title: Re: Disable Blizz ABS HUD
Post by: winkio on June 25, 2010, 09:38:39 am
good job.  You replicated information in section 2.4 in the manual.