[XP] Blizz-ABS Scene_Hotkeys New Interface

Started by JellalFerd, May 10, 2011, 02:06:06 am

Previous topic - Next topic

JellalFerd

May 10, 2011, 02:06:06 am Last Edit: July 12, 2011, 04:22:03 am by JellalFerd
Blizz-ABS Scene_Hotkeys New Interface
Authors: JellalFerd
Version: 1
Type: Blizz-ABS Plugin
Key Term: Blizz-ABS Plugin



Introduction
This script adds a new interface to Scene_Hotkeys


Features


  • Adds a new interface to Scene_Hotkeys




Screenshots

Spoiler: ShowHide



Demo

Download


Script
Spoiler: ShowHide

#==============================================================================
# Scene_Hotkeys
#------------------------------------------------------------------------------
#  This class handles the skill/item hotkey processing.
#==============================================================================

class Scene_Hotkeys
  alias scene_hotkeys_main_later main
  def main
    #Draw background fog
    @fundo6 = Plane.new
    @fundo6.bitmap = RPG::Cache.fog("Fog01",0)
    @fundo6.blend_type = 1
    @fundo6.z = 1
    @fundo6.opacity = 200 
    #Draw Background images
    if $blizzabs_z_hud != nil
    #Draw Background images
    @hotkey = Sprite.new
    @hotkey.bitmap = RPG::Cache.picture("Z_hud_Hotkeys")
    @hotkey.z = 2000
    @hotkey.x = 75
    @hotkey.y = 75
    @hotkey.opacity = 180
    else
    @hotkey = Sprite.new
    @hotkey.bitmap = RPG::Cache.picture("hotkeys")
    @hotkey.z = 2000
    @hotkey.x = 15
    @hotkey.y = 75
    @hotkey.opacity = 180
    end
    scene_hotkeys_main_later
    if $scene != self
      @hotkey.dispose
      @fundo6.dispose
    end
  end
  #----------------------------------------------------------------------------
  # update
  #  The update processing method.
  #----------------------------------------------------------------------------
  alias original_update update
  def update
    @fundo6.ox += 1
    @fundo6.oy += 1   
    original_update
    @item_window.opacity = 0
    @skill_window.opacity = 0
  end
end


Place below Blizz-ABS and Z-HUD if Z-HUD is being used.


Instructions
Put this image inside your Fog folder, and name it "Fog01"
Spoiler: ShowHide

Now, put this image inside your Pictures folder, and name it "hotkeys"
Spoiler: ShowHide

If using Z-Hud, use this in the place of hotkeys, except name it "Z_hud_Hotkeys"
Spoiler: ShowHide

Compatibility
  • Will not work with Z-hud.[/li]



Credits and Thanks

Author's Notes
I wasn't fond of the Scene_Hotkeys apperance, so I decided to change it myself. Anyways, this is my first script.
Script meaning edit of a script, of course. :<_<:
QuoteFrank says:
But obviously they put on that shirt on in the morning.
Hmmm..
Booty shirts are nice.
Depends on the girl.
Jellal says:
booty shirts
lolwut

Blizzard

HURRRRRR, nice work. *moves*
Also, you don't have to credit me and winkio here IMO. You made this edit after all.
Check out Daygames and our games:

King of Booze 2      King of Booze: Never Ever
Drinking Game for Android      Never have I ever for Android
Drinking Game for iOS      Never have I ever for iOS


Quote from: winkioI do not speak to bricks, either as individuals or in wall form.

Quote from: Barney StinsonWhen I get sad, I stop being sad and be awesome instead. True story.

Melvin

Good.. But I have one problem.. Arrows are unevenly for Blizz-ABS FE CMS... :'(

karldaylo

awesome... is this workin well with mouse controller?

or its the same as the old hotkey selection...

anyways... this will be  better if compatible with z HUD

for that we cancall it the "ULTIMATE BLIZZ ABS GRAPHIX INTERFACE"

and photoshop will be a really good help with this
RESPECT LIST:Blizzard, Game_guy, Foreverzer0, Winkio, Nathmatt

JellalFerd

May 10, 2011, 04:23:29 pm #4 Last Edit: May 10, 2011, 05:28:11 pm by JellalFerd
Quote from: Blizzard on May 10, 2011, 02:22:38 am
HURRRRRR, nice work. *moves*
Also, you don't have to credit me and winkio here IMO. You made this edit after all.

Yeah, but all I honestly did was make the script show a few images. Yes, bright pictures are nice and all, but without a function, that's all they'll ever be, bright pictures.
:^_^':
Quote from: Melvin on May 10, 2011, 03:36:41 am
Good.. But I have one problem.. Arrows are unevenly for Blizz-ABS FE CMS... :'(

Never heard of the script. Mind providing a link to it so I can check out any problems?
Quote from: karldaylo on May 10, 2011, 07:14:36 am
awesome... is this workin well with mouse controller?

or its the same as the old hotkey selection...

anyways... this will be  better if compatible with z HUD

for that we cancall it the "ULTIMATE BLIZZ ABS GRAPHIX INTERFACE"

and photoshop will be a really good help with this

Anything that worked with the default hotkey display should work with this.

And yeah, Z-Hud will work with this in the next release.
The only honest-to-goodness problem is the vertical hotkey display with Z-Hud.
Spoiler: ShowHide

But yeah, that won't take me too long to fix.
EDIT:
Well, I can promise the Z-Hud compatible version will be out tomorrow.
QuoteFrank says:
But obviously they put on that shirt on in the morning.
Hmmm..
Booty shirts are nice.
Depends on the girl.
Jellal says:
booty shirts
lolwut

JellalFerd

Z-Hud version's out. Now I'm going to work on making the images align better with the skills and items.
QuoteFrank says:
But obviously they put on that shirt on in the morning.
Hmmm..
Booty shirts are nice.
Depends on the girl.
Jellal says:
booty shirts
lolwut

karldaylo

awesome segrain, ill try to use this after im done with other elses in my game  :naughty:
RESPECT LIST:Blizzard, Game_guy, Foreverzer0, Winkio, Nathmatt

Zexion

Wow seriously thanks for this it was the only part of the main menu for my game that I just COULD NOT make lol.

JellalFerd

Updated.
I removed a lot of unnecessary codes I had in there, making it substantially shorter. It now auto-detects for Z-Hud.
QuoteFrank says:
But obviously they put on that shirt on in the morning.
Hmmm..
Booty shirts are nice.
Depends on the girl.
Jellal says:
booty shirts
lolwut

edmondedi


Xim

January 30, 2015, 01:13:04 am #10 Last Edit: January 30, 2015, 01:14:47 am by Xim
Quote from: edmondedi on December 14, 2014, 09:13:14 am
Broken links  :'(


Anybody have the demo for this? Or at least the graphics that came with it?

(I feel bad for necrobumping, I feel like there should be a separate thread for re-upload requests. There's a forum for Doom mods that I used to frequent that has one, it's pretty handy.)