Jump to content
New account registrations are disabed. This website is now an archive. Read more here.

aldrinbulajr

Member
  • Content Count

    14
  • Joined

  • Last visited

2 Followers

About aldrinbulajr

  • Rank
    Newbie

Other

  • Referer
    rpg maker
  1. oh sorry. I don't know who made the hud, a friend game me that script , im really sorry. I don't know how to add credits on scripts
  2. i dont know if can call it advanced lol but i edited a gold hud script i changed the "G" to an icon SCREENSHOT: just add an icon named "gold" to the graphics/icons here is an example: http://i.imgur.com/hl1eGNz.png here is the script: (if any problems persist, please just reply i'll try to fix it even thou i'm not a script builder) module Gold_Window # Window's horizontal position WINDOW_X = 0 # Window's vertical position WINDOW_Y = 420 # Window's width WINDOW_WIDTH = 160 # Window's height WINDOW_HEIGHT = 64 # Default hide status of the window (true = hidden, false = visible) DEFAULT_HIDE = false @hide = DEFAULT_HIDE def self.hidden? return @hide end def self.hide @hide = !@hide end end #============================================================================== # ** Window_Gold_HUD #------------------------------------------------------------------------------ # This window displays amount of gold. #============================================================================== class Window_Gold_HUD < Window_Base #-------------------------------------------------------------------------- # * Object Initialization #-------------------------------------------------------------------------- def initialize super(0, 0, 160, 64) self.contents = Bitmap.new(width - 32, height - 32) refresh end #-------------------------------------------------------------------------- # * Gold graphic #-------------------------------------------------------------------------- def draw_gold_pic(actor, x, y) bitmap = RPG::Cache.picture("gold") sw = bitmap.width sh = bitmap.height src_rect = Rect.new(0, 0, sw, sh) self.contents.blt(x, y, bitmap, src_rect) end #-------------------------------------------------------------------------- # * Refresh #-------------------------------------------------------------------------- def refresh if @old_gold != $game_party.gold || @old_hide != Gold_Window.hidden? self.contents.clear self.opacity = Gold_Window.hidden? ? 0 : 150 @text_opacity = Gold_Window.hidden? ? 0 : 255 cx = contents.text_size($data_system.words.gold).width draw_gold_pic(@actor, 112, 10) self.contents.draw_text(4, 0, 120-cx-2, 32, $game_party.gold.to_s, 2) @old_gold = $game_party.gold @old_hide = Gold_Window.hidden? end end end #============================================================================== # ** Scene_Map #------------------------------------------------------------------------------ # This class performs map screen processing. #============================================================================== class Scene_Map #-------------------------------------------------------------------------- # * Main Processing #-------------------------------------------------------------------------- alias gold_hud_main main def main @gold_window = Window_Gold_HUD.new gold_hud_main @gold_window.dispose end #-------------------------------------------------------------------------- # * Frame Update #-------------------------------------------------------------------------- alias gold_hud_update update def update @gold_window.refresh gold_hud_update end end
  3. line 561 has error, i have changed it to $scene = scene_MenuStatus.new what is the scene_journal.new is all about??? o.O
  4. I saw a rmvx topic which includes a script of changing a currency sign to an icon from Graphics/Icons I have made a gold icon, but cant enter it in the game :C anybody knows a script of it FOR RPG MAKER XP? Thanks!
  5. Hi guys! i'm asking again. How can I make a new folder manually? and it'll appear in materials ? cause whenever i add a folder, it doesn't appear in the materials and doesn't work when i call it (im using custom message by Hodgeelmf) and i want to add face on message. Any answers? Thanks. :)
  6. Can someone give me A sapphire action script for rmxp? I dunno how to use it, please someone give me a tutorial too . THANK YOU
  7. Yeah, I know i'm not allowed to sell a game made in rpg maker xp, but can I Earn money from it? Because I spent a lot of time to complete the game I made. I'm planning to upload it to the net and sell Golds eg. 10,000G for 0.99 USD just to earn money because i really need it :( I'm planning to add a "Donate" button but i know there;s only 1% chance that people will donate. And can someone teach me how to create a setup installer? like this: THANK YOU
  8. why the choices doesn't appear?! :C
×
×
  • Create New...