Need some quick help with Blizz ABS. . . [RESOLVED]

Started by bboyd93, June 23, 2010, 07:55:44 pm

Previous topic - Next topic

bboyd93

June 23, 2010, 07:55:44 pm Last Edit: June 23, 2010, 11:45:56 pm by bboyd93
I'm fairly new to RMXP, and VERY new to the site, so excuse me if I come off as a newbie. . .  It's just because I am :P

My problem however doesn't necessarily lie in the ABS, it's just the HUD I have trouble with.  And I know nothing about scripting really.  

The HUD is showing up at the intro, and I don't want that happening.  

Is there a script I can use to either disable the HUD, or call it at my will?  

Any help for this new guy would be GREATLY appreciated.

winkio

below Blizz-ABS:


class Game_System
  alias init_blizzabs_hud_early initialize
  def initialize
    init_blizzabs_hud_early
    @hud = false
  end
end


Wizered67

Couldn't you just do this
$game_system.hud = true/false

bboyd93

June 23, 2010, 08:25:18 pm #3 Last Edit: June 23, 2010, 08:27:56 pm by bboyd93
Thank you both for the quick reply.  I will probably use both of these through out the game.  

Thanks again!

Worked like a charm! 


winkio

@Wizered: that is the general solution, but it can cause some timing issues in special cases.

bboyd93

Quote from: winkio on June 23, 2010, 08:29:09 pm
@Wizered: that is the general solution, but it can cause some timing issues in special cases.


As it did in mine. 

I knew about the    $game_system.hud    input from taking a look at Sir Lag a Lot.   

But it's still great to see a helpful community.