Chaos Project

RPG Maker => RPG Maker Scripts => Script Troubleshooting => Topic started by: bboyd93 on June 24, 2010, 07:26:28 pm

Title: Blizz ABS Commands [RESOLVED]
Post by: bboyd93 on June 24, 2010, 07:26:28 pm
So, I'm fairly new to Blizzard's ABS. I recently discovered that you can use a script command to call the HUD.  I have that now, but what I'm looking for now is how to call the Hotkey Display as well as the Minimap.

I assumed that these were the corresponding inputs. . .

Hotkey
Spoiler: ShowHide
$game_system.hotkey= true


Minimap
Spoiler: ShowHide
$game_system.minimap= true


But apparently, these are not correct.  

Any help  would be appreciated very much.

PS.  Is there any other script commands for Blizz ABS that I should have knowledge of?
Title: Re: Blizz ABS Commands
Post by: winkio on June 24, 2010, 07:30:19 pm
$game_system.hotkeys = true/false


$game_system.minimap = 0/1/2


0 is off, 1 is in corner, 2 is fullscreen

And read the manual.  That's what it's there for.
Title: Re: Blizz ABS Commands
Post by: bboyd93 on June 24, 2010, 07:37:37 pm
Thanks!