Disable Blizz ABS HUD

Started by bboyd93, June 25, 2010, 01:12:31 am

Previous topic - Next topic

bboyd93

June 25, 2010, 01:12:31 am Last Edit: June 25, 2010, 02:34:12 am by bboyd93
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

winkio

good job.  You replicated information in section 2.4 in the manual.