RMRK is retiring.
Registration is disabled. The site will remain online, but eventually become a read-only archive. More information.

RMRK.net has nothing to do with Blockchains, Cryptocurrency or NFTs. We have been around since the early 2000s, but there is a new group using the RMRK name that deals with those things. We have nothing to do with them.
NFTs are a scam, and if somebody is trying to persuade you to buy or invest in crypto/blockchain/NFT content, please turn them down and save your money. See this video for more information.
HP/SP/EXP Bars by Tsunokiette

0 Members and 2 Guests are viewing this topic.

*
Full Metal Mod - He will pillage your women!
Rep:
Level 93
The RGSS Dude
Just place this in a new script right bellow Window_Base.

Code: [Select]
  #------------------------------------------------------------------------------
   # Begin Game_Actor Edit
   #------------------------------------------------------------------------------
   class Game_Actor < Game_Battler
      #--------------------------------------------------------------------------
      # * Return the exp needed to reach the next level
      #--------------------------------------------------------------------------
      def needed_exp(current_lvl)
         return @exp_list[current_lvl + 1]
      end
      #--------------------------------------------------------------------------
      # * Return the currently gained exp
      #--------------------------------------------------------------------------
      def gained_exp(current_lvl,current_exp)
         return (current_exp - @exp_list[current_lvl])
       end
      #--------------------------------------------------------------------------
      # * Return the current level
      #--------------------------------------------------------------------------
      def lvl
         return @level
      end
   end
   #------------------------------------------------------------------------------
   # End Game_Actor Edit
   #------------------------------------------------------------------------------

   #------------------------------------------------------------------------------
   # Begin Window_Base Edit
   #------------------------------------------------------------------------------
   class Window_Base < Window
      #--------------------------------------------------------------------------
      # * Draw HP Bar
      #--------------------------------------------------------------------------
      def draw_hp_bar(actor,x,y,w = 202)
         #get hp and max hp
         hp = actor.hp
         max_hp = actor.maxhp
         #define colors to be used
         border_color = Color.new(0,0,0,255)
         line1_color = Color.new(0,145,0,255)
         line2_color = Color.new(0,176,0,255)
         line3_color = Color.new(0,215,0,255)
         line4_color = Color.new(0,253,0,255)
         line5_color = Color.new(0,215,0,255)
         line6_color = Color.new(0,176,0,255)
         line7_color = Color.new(0,145,0,255)
         line8_color = Color.new(0,120,0,255)
         empty_color = Color.new(75,75,75,255)
         #get widths and x's
         line_width = (((hp * 1.0) / max_hp) * (w - 2))
         empty_width = ((w - 2) - line_width)
         empty_x = ((x + 1) + line_width)
         #make border Rects
         border1 = Rect.new(x, y, w, 1)
         border2 = Rect.new(x, y + 9, w, 1)
         border3 = Rect.new(x, y + 1, 1, 8)
         border4 = Rect.new(x + (w - 1), y + 1, 1, 8)
         #make line Rects
         line1 = Rect.new(x + 1, y + 1, line_width, 1)
         line2 = Rect.new(x + 1, y + 2, line_width, 1)
         line3 = Rect.new(x + 1, y + 3, line_width, 1)
         line4 = Rect.new(x + 1, y + 4, line_width, 1)
         line5 = Rect.new(x + 1, y + 5, line_width, 1)
         line6 = Rect.new(x + 1, y + 6, line_width, 1)
         line7 = Rect.new(x + 1, y + 7, line_width, 1)
         line8 = Rect.new(x + 1, y + 8, line_width, 1)
         #make empty Rect
         empty = Rect.new(empty_x, y + 1, empty_width, 8)
         #fill border Rects
         self.contents.fill_rect(border1,border_color)
         self.contents.fill_rect(border2,border_color)
         self.contents.fill_rect(border3,border_color)
         self.contents.fill_rect(border4,border_color)
         #fill line Rects
         self.contents.fill_rect(line1,line1_color)
         self.contents.fill_rect(line2,line2_color)
         self.contents.fill_rect(line3,line3_color)
         self.contents.fill_rect(line4,line4_color)
         self.contents.fill_rect(line5,line5_color)
         self.contents.fill_rect(line6,line6_color)
         self.contents.fill_rect(line7,line7_color)
         self.contents.fill_rect(line8,line8_color)
         #fill empty Rect
         self.contents.fill_rect(empty,empty_color)
      end
      #--------------------------------------------------------------------------
      # * Draw SP Bar
      #--------------------------------------------------------------------------
      def draw_sp_bar(actor,x,y,w = 202)
         #get sp and max sp
         sp = actor.sp
         max_sp = actor.maxsp
         #get percentage width
         percentage_width = ((w - 2) / 100)
         #define colors to be used
         border_color = Color.new(0,0,0,255)
         line1_color = Color.new(112,0,223,255)
         line2_color = Color.new(130,4,255,255)
         line3_color = Color.new(155,55,255,255)
         line4_color = Color.new(170,85,255,255)
         line5_color = Color.new(155,55,255,255)
         line6_color = Color.new(130,4,255,255)
         line7_color = Color.new(112,0,223,255)
         line8_color = Color.new(88,0,176,255)
         empty_color = Color.new(75,75,75,255)
         #get widths and x's
         line_width = (((sp * 1.0) / max_sp) * (w - 2))
         empty_width = ((w - 2) - line_width)
         empty_x = ((x + 1) + line_width)
         #make border Rects
         border1 = Rect.new(x, y, w, 1)
         border2 = Rect.new(x, y + 9, w, 1)
         border3 = Rect.new(x, y + 1, 1, 8)
         border4 = Rect.new(x + (w - 1), y + 1, 1, 8)
         #make line Rects
         line1 = Rect.new(x + 1, y + 1, line_width, 1)
         line2 = Rect.new(x + 1, y + 2, line_width, 1)
         line3 = Rect.new(x + 1, y + 3, line_width, 1)
         line4 = Rect.new(x + 1, y + 4, line_width, 1)
         line5 = Rect.new(x + 1, y + 5, line_width, 1)
         line6 = Rect.new(x + 1, y + 6, line_width, 1)
         line7 = Rect.new(x + 1, y + 7, line_width, 1)
         line8 = Rect.new(x + 1, y + 8, line_width, 1)
         #make empty Rect
         empty = Rect.new(empty_x, y + 1, empty_width, 8)
         #fill border Rects
         self.contents.fill_rect(border1,border_color)
         self.contents.fill_rect(border2,border_color)
         self.contents.fill_rect(border3,border_color)
         self.contents.fill_rect(border4,border_color)
         #fill line Rects
         self.contents.fill_rect(line1,line1_color)
         self.contents.fill_rect(line2,line2_color)
         self.contents.fill_rect(line3,line3_color)
         self.contents.fill_rect(line4,line4_color)
         self.contents.fill_rect(line5,line5_color)
         self.contents.fill_rect(line6,line6_color)
         self.contents.fill_rect(line7,line7_color)
         self.contents.fill_rect(line8,line8_color)
         #fill empty Rect
         self.contents.fill_rect(empty,empty_color)
      end
      #--------------------------------------------------------------------------
      # * Draw EXP Bar
      #--------------------------------------------------------------------------
      def draw_exp_bar(actor,x,y,w = 202)
         #get exp and needed exp
         exp = actor.exp
         gained_exp = actor.gained_exp(actor.lvl,exp)
         needed_exp = actor.needed_exp(actor.lvl)
         #define colors to be used
         border_color = Color.new(0,0,0,255)
         line1_color = Color.new(140,140,0,255)
         line2_color = Color.new(157,157,0,255)
         line3_color = Color.new(170,170,0,255)
         line4_color = Color.new(196,196,0,255)
         line5_color = Color.new(170,170,0,255)
         line6_color = Color.new(157,157,0,255)
         line7_color = Color.new(140,140,0,255)
         line8_color = Color.new(128,128,0,255)
         empty_color = Color.new(75,75,75,255)
         #get widths and x's
         line_width = (((gained_exp * 1.0) / needed_exp) * (w - 2))
         empty_width = ((w - 2) - line_width)
         empty_x = ((x + 1) + line_width)
         #make border Rects
         border1 = Rect.new(x, y, w, 1)
         border2 = Rect.new(x, y + 9, w, 1)
         border3 = Rect.new(x, y + 1, 1, 8)
         border4 = Rect.new(x + (w - 1), y + 1, 1, 8)
         #make line Rects
         line1 = Rect.new(x + 1, y + 1, line_width, 1)
         line2 = Rect.new(x + 1, y + 2, line_width, 1)
         line3 = Rect.new(x + 1, y + 3, line_width, 1)
         line4 = Rect.new(x + 1, y + 4, line_width, 1)
         line5 = Rect.new(x + 1, y + 5, line_width, 1)
         line6 = Rect.new(x + 1, y + 6, line_width, 1)
         line7 = Rect.new(x + 1, y + 7, line_width, 1)
         line8 = Rect.new(x + 1, y + 8, line_width, 1)
         #make empty Rect
         empty = Rect.new(empty_x, y + 1, empty_width, 8)
         #fill border Rects
         self.contents.fill_rect(border1,border_color)
         self.contents.fill_rect(border2,border_color)
         self.contents.fill_rect(border3,border_color)
         self.contents.fill_rect(border4,border_color)
         #fill line Rects
         self.contents.fill_rect(line1,line1_color)
         self.contents.fill_rect(line2,line2_color)
         self.contents.fill_rect(line3,line3_color)
         self.contents.fill_rect(line4,line4_color)
         self.contents.fill_rect(line5,line5_color)
         self.contents.fill_rect(line6,line6_color)
         self.contents.fill_rect(line7,line7_color)
         self.contents.fill_rect(line8,line8_color)
         #fill empty Rect
         self.contents.fill_rect(empty,empty_color)
       end
      end
   #------------------------------------------------------------------------------
   # End Window_Base Edit
   #------------------------------------------------------------------------------


Now in the window you want to show the bars in, just do this -

For HP -
Code: [Select]
draw_hp_bar(actor,x position,y position,width)


For SP
Code: [Select]
draw_sp_bar(actor,x position,y position,width)


For EXP
Code: [Select]
draw_exp_bar(actor,x position,y position,width)
"The wonderful thing about Tiggers
Is Tiggers are wonderful things
Their tops are made out of rubber
Their bottoms are made out of springs

They’re bouncy, trouncy, flouncy, pouncy
Fun, fun, fun, fun, fun!
But the most wonderful thing about Tiggers
Is I’m the only one, I’m the only one."

***
Rep:
Level 90
Where do I put the things?
Quote
Zxmelee says: I FUCKED A CHICK GEEZ
Neko says: I doubt it was a girl
Neko says: Was "she" working the corners?
Zxmelee says: Well, I was lying...
Zxmelee says: but, oh man. They were all over me
Neko says: With a few bucks
Neko says: That hapens

Pwnzorz'd

*
Full Metal Mod - He will pillage your women!
Rep:
Level 93
The RGSS Dude
Quote from: Neko
Where do I put the things?


in the refresh method of the chosen menu

EDIT: the bars should look something like this-

HP-

SP-

EXP-


NOTE: you can change the colors if you want

everywhere you see

Code: [Select]
#define colors to be used
border_color = Color.new(0,0,0,255)
line1_color = Color.new(140,140,0,255)
line2_color = Color.new(157,157,0,255)
line3_color = Color.new(170,170,0,255)
line4_color = Color.new(196,196,0,255)
line5_color = Color.new(170,170,0,255)
line6_color = Color.new(157,157,0,255)
line7_color = Color.new(140,140,0,255)
line8_color = Color.new(128,128,0,255)
empty_color = Color.new(75,75,75,255)


the first three numbers are the r,b,g values, just keep the fourth one 255, that's the opacity.

the lines are numbered 1-8 from top to bottem (the colored ones)
"The wonderful thing about Tiggers
Is Tiggers are wonderful things
Their tops are made out of rubber
Their bottoms are made out of springs

They’re bouncy, trouncy, flouncy, pouncy
Fun, fun, fun, fun, fun!
But the most wonderful thing about Tiggers
Is I’m the only one, I’m the only one."

***
Rep:
Level 90
error =\ Im not sure how to edit this stuff so could you like make it so it has all the bars for me? Lol I dont mean to beg, but I dont understand what to do.
Quote
Zxmelee says: I FUCKED A CHICK GEEZ
Neko says: I doubt it was a girl
Neko says: Was "she" working the corners?
Zxmelee says: Well, I was lying...
Zxmelee says: but, oh man. They were all over me
Neko says: With a few bucks
Neko says: That hapens

Pwnzorz'd

*
Full Metal Mod - He will pillage your women!
Rep:
Level 93
The RGSS Dude
Quote from: Neko
error =\ Im not sure how to edit this stuff so could you like make it so it has all the bars for me? Lol I dont mean to beg, but I dont understand what to do.


kk, where do you want them, and are you using the default systems?
"The wonderful thing about Tiggers
Is Tiggers are wonderful things
Their tops are made out of rubber
Their bottoms are made out of springs

They’re bouncy, trouncy, flouncy, pouncy
Fun, fun, fun, fun, fun!
But the most wonderful thing about Tiggers
Is I’m the only one, I’m the only one."

***
Rep:
Level 90
:O_o: ? Umm I want the at the top left corner and what do you mean by default?
Quote
Zxmelee says: I FUCKED A CHICK GEEZ
Neko says: I doubt it was a girl
Neko says: Was "she" working the corners?
Zxmelee says: Well, I was lying...
Zxmelee says: but, oh man. They were all over me
Neko says: With a few bucks
Neko says: That hapens

Pwnzorz'd

*
Full Metal Mod - He will pillage your women!
Rep:
Level 93
The RGSS Dude
Quote from: Neko
:O_o: ? Umm I want the at the top left corner and what do you mean by default?


I mean, if you want them in the menu/battle system, are you using the default systems.

So you want it on the map. right?

add this above main - (should work)

Code: [Select]
Window_Bars < Window_Base
   def initialize
      super(0,0,234,158)
      self.contents = Bitmap.new(width - 32, height - 32)
      self.contents.font.name = 'Times New Roman'
      self.contents.font.size = 22
      refresh_stats
   end
   def refresh_stats
      self.contents.clear
      actor = $game_party.actors[1]
      draw_actor_hp(actor,0,0,202)
      draw_hp_bar(actor,0,32)
      draw_actor_sp(actor,0,42,202)
      draw_sp_bar(actor,0,74)
      draw_actor_exp(actor,0,84)
      draw_exp_bar(actor,0,116)
   end
   def update
      refresh_stats
   end
end
class Scene_Map
   def main
      @spriteset = Spriteset_Map.new
      @message_window = Window_Message.new
      @bar_window = Window_Bars.new
      Graphics.transition
      loop do
         Graphics.update
         Input.update
         update
         if $scene != self
            break
         end
      end
      Graphics.freeze
      @spriteset.dispose
      @message_window.dispose
      @bar_window.dispose
      if $scene.is_a?(Scene_Title)
         Graphics.transition
         Graphics.freeze
      end
   end
   def update
      loop do
         $game_map.update
         $game_system.map_interpreter.update
         $game_player.update
         $game_system.update
         $game_screen.update
         unless $game_temp.player_transferring
            break
         end
         transfer_player
         if $game_temp.transition_processing
            break
         end
      end
      @spriteset.update
      @message_window.update
      @bar_window.update
      if $game_temp.gameover
         $scene = Scene_Gameover.new
         return
      end
      if $game_temp.to_title
         $scene = Scene_Title.new
         return
      end
      if $game_temp.transition_processing
         $game_temp.transition_processing = false
         if $game_temp.transition_name == ""
            Graphics.transition(20)
         else
            Graphics.transition(40, "Graphics/Transitions/" +
            $game_temp.transition_name)
         end
      end
      if $game_temp.message_window_showing
         return
      end
      if $game_player.encounter_count == 0 and $game_map.encounter_list != []
         unless $game_system.map_interpreter.running? or
            $game_system.encounter_disabled
            $game_temp.battle_calling = true
            $game_temp.battle_can_escape = true
            $game_temp.battle_can_lose = false
            $game_temp.battle_proc = nil
            n = rand($game_map.encounter_list.size)
            $game_temp.battle_troop_id = $game_map.encounter_list[n]
         end
      end
      if Input.trigger?(Input::B)
         unless $game_system.map_interpreter.running? or
            $game_system.menu_disabled
            $game_temp.menu_calling = true
            $game_temp.menu_beep = true
         end
      end
      if $DEBUG and Input.press?(Input::F9)
         $game_temp.debug_calling = true
      end
      unless $game_player.moving?
         if $game_temp.battle_calling
            call_battle
         elsif $game_temp.shop_calling
            call_shop
         elsif $game_temp.name_calling
            call_name
         elsif $game_temp.menu_calling
            call_menu
         elsif $game_temp.save_calling
            call_save
         elsif $game_temp.debug_calling
            call_debug
         end
    end
end
"The wonderful thing about Tiggers
Is Tiggers are wonderful things
Their tops are made out of rubber
Their bottoms are made out of springs

They’re bouncy, trouncy, flouncy, pouncy
Fun, fun, fun, fun, fun!
But the most wonderful thing about Tiggers
Is I’m the only one, I’m the only one."

***
Rep:
Level 90
It says syntax error =\
Quote
Zxmelee says: I FUCKED A CHICK GEEZ
Neko says: I doubt it was a girl
Neko says: Was "she" working the corners?
Zxmelee says: Well, I was lying...
Zxmelee says: but, oh man. They were all over me
Neko says: With a few bucks
Neko says: That hapens

Pwnzorz'd

*
Full Metal Mod - He will pillage your women!
Rep:
Level 93
The RGSS Dude
Quote from: Neko
It says syntax error =\


it would help if you gave me the line... :|
"The wonderful thing about Tiggers
Is Tiggers are wonderful things
Their tops are made out of rubber
Their bottoms are made out of springs

They’re bouncy, trouncy, flouncy, pouncy
Fun, fun, fun, fun, fun!
But the most wonderful thing about Tiggers
Is I’m the only one, I’m the only one."

***
Rep:
Level 90
Syntax error line 22 so far.. I would fix it, but I have no clue how to do ruby =\
Quote
Zxmelee says: I FUCKED A CHICK GEEZ
Neko says: I doubt it was a girl
Neko says: Was "she" working the corners?
Zxmelee says: Well, I was lying...
Zxmelee says: but, oh man. They were all over me
Neko says: With a few bucks
Neko says: That hapens

Pwnzorz'd

*
Full Metal Mod - He will pillage your women!
Rep:
Level 93
The RGSS Dude
Quote from: Neko
Syntax error line 22 so far.. I would fix it, but I have no clue how to do ruby =\


kk, I made just a little oopsie, Window_Bars was supposed to be class Window_Bars, but that's fixed now, here yoos go.

Code: [Select]
class Window_Bars < Window_Base
   def initialize
      super(0,0,234,158)
      self.contents = Bitmap.new(width - 32, height - 32)
      self.contents.font.name = 'Times New Roman'
      self.contents.font.size = 22
      refresh_stats
   end
   def refresh_stats
      self.contents.clear
      actor = $game_party.actors[1]
      draw_actor_hp(actor,0,0,202)
      draw_hp_bar(actor,0,32)
      draw_actor_sp(actor,0,42,202)
      draw_sp_bar(actor,0,74)
      draw_actor_exp(actor,0,84)
      draw_exp_bar(actor,0,116)
   end
   def update
      refresh_stats
   end
end
class Scene_Map
   def main
      @spriteset = Spriteset_Map.new
      @message_window = Window_Message.new
      @bar_window = Window_Bars.new
      Graphics.transition
      loop do
         Graphics.update
         Input.update
         update
         if $scene != self
            break
         end
      end
      Graphics.freeze
      @spriteset.dispose
      @message_window.dispose
      @bar_window.dispose
      if $scene.is_a?(Scene_Title)
         Graphics.transition
         Graphics.freeze
      end
   end
   def update
      loop do
         $game_map.update
         $game_system.map_interpreter.update
         $game_player.update
         $game_system.update
         $game_screen.update
         unless $game_temp.player_transferring
            break
         end
         transfer_player
         if $game_temp.transition_processing
            break
         end
      end
      @spriteset.update
      @message_window.update
      @bar_window.update
      if $game_temp.gameover
         $scene = Scene_Gameover.new
         return
      end
      if $game_temp.to_title
         $scene = Scene_Title.new
         return
      end
      if $game_temp.transition_processing
         $game_temp.transition_processing = false
         if $game_temp.transition_name == ""
            Graphics.transition(20)
         else
            Graphics.transition(40, "Graphics/Transitions/" +
            $game_temp.transition_name)
         end
      end
      if $game_temp.message_window_showing
         return
      end
      if $game_player.encounter_count == 0 and $game_map.encounter_list != []
         unless $game_system.map_interpreter.running? or
            $game_system.encounter_disabled
            $game_temp.battle_calling = true
            $game_temp.battle_can_escape = true
            $game_temp.battle_can_lose = false
            $game_temp.battle_proc = nil
            n = rand($game_map.encounter_list.size)
            $game_temp.battle_troop_id = $game_map.encounter_list[n]
         end
      end
      if Input.trigger?(Input::B)
         unless $game_system.map_interpreter.running? or
            $game_system.menu_disabled
            $game_temp.menu_calling = true
            $game_temp.menu_beep = true
         end
      end
      if $DEBUG and Input.press?(Input::F9)
         $game_temp.debug_calling = true
      end
      unless $game_player.moving?
         if $game_temp.battle_calling
            call_battle
         elsif $game_temp.shop_calling
            call_shop
         elsif $game_temp.name_calling
            call_name
         elsif $game_temp.menu_calling
            call_menu
         elsif $game_temp.save_calling
            call_save
         elsif $game_temp.debug_calling
            call_debug
         end
    end
end
"The wonderful thing about Tiggers
Is Tiggers are wonderful things
Their tops are made out of rubber
Their bottoms are made out of springs

They’re bouncy, trouncy, flouncy, pouncy
Fun, fun, fun, fun, fun!
But the most wonderful thing about Tiggers
Is I’m the only one, I’m the only one."

***
Rep:
Level 90
XD Error on lline 120 XD Sorry for being such a noob... This script is great for me though
Quote
Zxmelee says: I FUCKED A CHICK GEEZ
Neko says: I doubt it was a girl
Neko says: Was "she" working the corners?
Zxmelee says: Well, I was lying...
Zxmelee says: but, oh man. They were all over me
Neko says: With a few bucks
Neko says: That hapens

Pwnzorz'd

*
Full Metal Mod - He will pillage your women!
Rep:
Level 93
The RGSS Dude
do dis work?

Code: [Select]
class Window_Bars < Window_Base
def initialize
super(0,0,234,158)
self.contents = Bitmap.new(width - 32, height - 32)
self.contents.font.name = 'Times New Roman'
self.contents.font.size = 22
refresh_stats
end
def refresh_stats
self.contents.clear
actor = $game_party.actors[1]
draw_actor_hp(actor,0,0,202)
draw_hp_bar(actor,0,32)
draw_actor_sp(actor,0,42,202)
draw_sp_bar(actor,0,74)
draw_actor_exp(actor,0,84)
draw_exp_bar(actor,0,116)
end
def update
refresh_stats
end
end
class Scene_Map
def main
@spriteset = Spriteset_Map.new
@message_window = Window_Message.new
@bar_window = Window_Bars.new
Graphics.transition
loop do
Graphics.update
Input.update
update
if $scene != self
break
end
end
Graphics.freeze
@spriteset.dispose
@message_window.dispose
@bar_window.dispose
if $scene.is_a?(Scene_Title)
Graphics.transition
Graphics.freeze
end
end
def update
loop do
$game_map.update
$game_system.map_interpreter.update
$game_player.update
$game_system.update
$game_screen.update
unless $game_temp.player_transferring
break
end
transfer_player
if $game_temp.transition_processing
break
end
end
@spriteset.update
@message_window.update
@bar_window.update
if $game_temp.gameover
$scene = Scene_Gameover.new
return
end
if $game_temp.to_title
$scene = Scene_Title.new
return
end
if $game_temp.transition_processing
$game_temp.transition_processing = false
if $game_temp.transition_name == ""
Graphics.transition(20)
else
Graphics.transition(40, "Graphics/Transitions/" +
$game_temp.transition_name)
end
end
if $game_temp.message_window_showing
return
end
if $game_player.encounter_count == 0 and $game_map.encounter_list != []
unless $game_system.map_interpreter.running? or
$game_system.encounter_disabled
$game_temp.battle_calling = true
$game_temp.battle_can_escape = true
$game_temp.battle_can_lose = false
$game_temp.battle_proc = nil
n = rand($game_map.encounter_list.size)
$game_temp.battle_troop_id = $game_map.encounter_list[n]
end
end
if Input.trigger?(Input::B)
unless $game_system.map_interpreter.running? or
$game_system.menu_disabled
$game_temp.menu_calling = true
$game_temp.menu_beep = true
end
end
if $DEBUG and Input.press?(Input::F9)
$game_temp.debug_calling = true
end
unless $game_player.moving?
if $game_temp.battle_calling
call_battle
elsif $game_temp.shop_calling
call_shop
elsif $game_temp.name_calling
call_name
elsif $game_temp.menu_calling
call_menu
elsif $game_temp.save_calling
call_save
elsif $game_temp.debug_calling
call_debug
end
end
end
end
"The wonderful thing about Tiggers
Is Tiggers are wonderful things
Their tops are made out of rubber
Their bottoms are made out of springs

They’re bouncy, trouncy, flouncy, pouncy
Fun, fun, fun, fun, fun!
But the most wonderful thing about Tiggers
Is I’m the only one, I’m the only one."

***
Rep:
Level 90
No errors, but no bars either =\
Quote
Zxmelee says: I FUCKED A CHICK GEEZ
Neko says: I doubt it was a girl
Neko says: Was "she" working the corners?
Zxmelee says: Well, I was lying...
Zxmelee says: but, oh man. They were all over me
Neko says: With a few bucks
Neko says: That hapens

Pwnzorz'd

**
Rep: +0/-0Level 90
i got an error for the first script you posted up above. The error comes up as the very end where it says Editing Windows Base then has #----- you know

**
Rep: +0/-0Level 90
here is the specific error, hopes this help I really want to use this...


?????? ' ' ? 65 ??? name error ????????
undefined local variable or method 'border_1' for #<Windows_Bars:0x457a1a0>


there might be one to many or too few ?, but thats pretty much what it said. If its something im doing very sorry, scriptings not one of my things, but if this helps you good good good because im interested in using this script in my new game, thanks man.

*
Full Metal Mod - He will pillage your women!
Rep:
Level 93
The RGSS Dude
I apologize, that was a lazy error, you see, when I started making the bars, I named them border1, border2, etc.

But for some reason when I tried to fill them with color, I typed border_1, etc.

Here's a completely tested, bug-proof system. It's completed, I've tested it and it works.

Code: [Select]
  #------------------------------------------------------------------------------
   # Begin Game_Actor Edit
   #------------------------------------------------------------------------------
   class Game_Actor < Game_Battler
      #--------------------------------------------------------------------------
      # * Return the exp needed to reach the next level
      #--------------------------------------------------------------------------
      def needed_exp(current_lvl)
         return @exp_list[current_lvl + 1]
      end
      #--------------------------------------------------------------------------
      # * Return the currently gained exp
      #--------------------------------------------------------------------------
      def gained_exp(current_lvl,current_exp)
         return (current_exp - @exp_list[current_lvl])
       end
      #--------------------------------------------------------------------------
      # * Return the current level
      #--------------------------------------------------------------------------
      def lvl
         return @level
      end
   end
   #------------------------------------------------------------------------------
   # End Game_Actor Edit
   #------------------------------------------------------------------------------

   #------------------------------------------------------------------------------
   # Begin Window_Base Edit
   #------------------------------------------------------------------------------
   class Window_Base < Window
      #--------------------------------------------------------------------------
      # * Draw HP Bar
      #--------------------------------------------------------------------------
      def draw_hp_bar(actor,x,y,w = 202)
         #get hp and max hp
         hp = actor.hp
         max_hp = actor.maxhp
         #define colors to be used
         border_color = Color.new(0,0,0,255)
         line1_color = Color.new(0,145,0,255)
         line2_color = Color.new(0,176,0,255)
         line3_color = Color.new(0,215,0,255)
         line4_color = Color.new(0,253,0,255)
         line5_color = Color.new(0,215,0,255)
         line6_color = Color.new(0,176,0,255)
         line7_color = Color.new(0,145,0,255)
         line8_color = Color.new(0,120,0,255)
         empty_color = Color.new(75,75,75,255)
         #get widths and x's
         line_width = (((hp * 1.0) / max_hp) * (w - 2))
         empty_width = ((w - 2) - line_width)
         empty_x = ((x + 1) + line_width)
         #make border Rects
         border1 = Rect.new(x, y, w, 1)
         border2 = Rect.new(x, y + 9, w, 1)
         border3 = Rect.new(x, y + 1, 1, 8)
         border4 = Rect.new(x + (w - 1), y + 1, 1, 8)
         #make line Rects
         line1 = Rect.new(x + 1, y + 1, line_width, 1)
         line2 = Rect.new(x + 1, y + 2, line_width, 1)
         line3 = Rect.new(x + 1, y + 3, line_width, 1)
         line4 = Rect.new(x + 1, y + 4, line_width, 1)
         line5 = Rect.new(x + 1, y + 5, line_width, 1)
         line6 = Rect.new(x + 1, y + 6, line_width, 1)
         line7 = Rect.new(x + 1, y + 7, line_width, 1)
         line8 = Rect.new(x + 1, y + 8, line_width, 1)
         #make empty Rect
         empty = Rect.new(empty_x, y + 1, empty_width, 8)
         #fill border Rects
         self.contents.fill_rect(border1,border_color)
         self.contents.fill_rect(border2,border_color)
         self.contents.fill_rect(border3,border_color)
         self.contents.fill_rect(border4,border_color)
         #fill line Rects
         self.contents.fill_rect(line1,line1_color)
         self.contents.fill_rect(line2,line2_color)
         self.contents.fill_rect(line3,line3_color)
         self.contents.fill_rect(line4,line4_color)
         self.contents.fill_rect(line5,line5_color)
         self.contents.fill_rect(line6,line6_color)
         self.contents.fill_rect(line7,line7_color)
         self.contents.fill_rect(line8,line8_color)
         #fill empty Rect
         self.contents.fill_rect(empty,empty_color)
      end
      #--------------------------------------------------------------------------
      # * Draw SP Bar
      #--------------------------------------------------------------------------
      def draw_sp_bar(actor,x,y,w = 202)
         #get sp and max sp
         sp = actor.sp
         max_sp = actor.maxsp
         #get percentage width
         percentage_width = ((w - 2) / 100)
         #define colors to be used
         border_color = Color.new(0,0,0,255)
         line1_color = Color.new(112,0,223,255)
         line2_color = Color.new(130,4,255,255)
         line3_color = Color.new(155,55,255,255)
         line4_color = Color.new(170,85,255,255)
         line5_color = Color.new(155,55,255,255)
         line6_color = Color.new(130,4,255,255)
         line7_color = Color.new(112,0,223,255)
         line8_color = Color.new(88,0,176,255)
         empty_color = Color.new(75,75,75,255)
         #get widths and x's
         line_width = (((sp * 1.0) / max_sp) * (w - 2))
         empty_width = ((w - 2) - line_width)
         empty_x = ((x + 1) + line_width)
         #make border Rects
         border1 = Rect.new(x, y, w, 1)
         border2 = Rect.new(x, y + 9, w, 1)
         border3 = Rect.new(x, y + 1, 1, 8)
         border4 = Rect.new(x + (w - 1), y + 1, 1, 8)
         #make line Rects
         line1 = Rect.new(x + 1, y + 1, line_width, 1)
         line2 = Rect.new(x + 1, y + 2, line_width, 1)
         line3 = Rect.new(x + 1, y + 3, line_width, 1)
         line4 = Rect.new(x + 1, y + 4, line_width, 1)
         line5 = Rect.new(x + 1, y + 5, line_width, 1)
         line6 = Rect.new(x + 1, y + 6, line_width, 1)
         line7 = Rect.new(x + 1, y + 7, line_width, 1)
         line8 = Rect.new(x + 1, y + 8, line_width, 1)
         #make empty Rect
         empty = Rect.new(empty_x, y + 1, empty_width, 8)
         #fill border Rects
         self.contents.fill_rect(border1,border_color)
         self.contents.fill_rect(border2,border_color)
         self.contents.fill_rect(border3,border_color)
         self.contents.fill_rect(border4,border_color)
         #fill line Rects
         self.contents.fill_rect(line1,line1_color)
         self.contents.fill_rect(line2,line2_color)
         self.contents.fill_rect(line3,line3_color)
         self.contents.fill_rect(line4,line4_color)
         self.contents.fill_rect(line5,line5_color)
         self.contents.fill_rect(line6,line6_color)
         self.contents.fill_rect(line7,line7_color)
         self.contents.fill_rect(line8,line8_color)
         #fill empty Rect
         self.contents.fill_rect(empty,empty_color)
      end
      #--------------------------------------------------------------------------
      # * Draw EXP Bar
      #--------------------------------------------------------------------------
      def draw_exp_bar(actor,x,y,w = 202)
         #get exp and needed exp
         exp = actor.exp
         gained_exp = actor.gained_exp(actor.lvl,exp)
         needed_exp = actor.needed_exp(actor.lvl)
         #define colors to be used
         border_color = Color.new(0,0,0,255)
         line1_color = Color.new(140,140,0,255)
         line2_color = Color.new(157,157,0,255)
         line3_color = Color.new(170,170,0,255)
         line4_color = Color.new(196,196,0,255)
         line5_color = Color.new(170,170,0,255)
         line6_color = Color.new(157,157,0,255)
         line7_color = Color.new(140,140,0,255)
         line8_color = Color.new(128,128,0,255)
         empty_color = Color.new(75,75,75,255)
         #get widths and x's
         line_width = (((gained_exp * 1.0) / needed_exp) * (w - 2))
         empty_width = ((w - 2) - line_width)
         empty_x = ((x + 1) + line_width)
         #make border Rects
         border1 = Rect.new(x, y, w, 1)
         border2 = Rect.new(x, y + 9, w, 1)
         border3 = Rect.new(x, y + 1, 1, 8)
         border4 = Rect.new(x + (w - 1), y + 1, 1, 8)
         #make line Rects
         line1 = Rect.new(x + 1, y + 1, line_width, 1)
         line2 = Rect.new(x + 1, y + 2, line_width, 1)
         line3 = Rect.new(x + 1, y + 3, line_width, 1)
         line4 = Rect.new(x + 1, y + 4, line_width, 1)
         line5 = Rect.new(x + 1, y + 5, line_width, 1)
         line6 = Rect.new(x + 1, y + 6, line_width, 1)
         line7 = Rect.new(x + 1, y + 7, line_width, 1)
         line8 = Rect.new(x + 1, y + 8, line_width, 1)
         #make empty Rect
         empty = Rect.new(empty_x, y + 1, empty_width, 8)
         #fill border Rects
         self.contents.fill_rect(border1,border_color)
         self.contents.fill_rect(border2,border_color)
         self.contents.fill_rect(border3,border_color)
         self.contents.fill_rect(border4,border_color)
         #fill line Rects
         self.contents.fill_rect(line1,line1_color)
         self.contents.fill_rect(line2,line2_color)
         self.contents.fill_rect(line3,line3_color)
         self.contents.fill_rect(line4,line4_color)
         self.contents.fill_rect(line5,line5_color)
         self.contents.fill_rect(line6,line6_color)
         self.contents.fill_rect(line7,line7_color)
         self.contents.fill_rect(line8,line8_color)
         #fill empty Rect
         self.contents.fill_rect(empty,empty_color)
       end
      end
   #------------------------------------------------------------------------------
   # End Window_Base Edit
   #------------------------------------------------------------------------------
"The wonderful thing about Tiggers
Is Tiggers are wonderful things
Their tops are made out of rubber
Their bottoms are made out of springs

They’re bouncy, trouncy, flouncy, pouncy
Fun, fun, fun, fun, fun!
But the most wonderful thing about Tiggers
Is I’m the only one, I’m the only one."

**
Rep: +0/-0Level 90
Very good, is there any way to call it by a certain key?

*
Full Metal Mod - He will pillage your women!
Rep:
Level 93
The RGSS Dude
Quote from: Sacul
Very good, is there any way to call it by a certain key?


Say what?
"The wonderful thing about Tiggers
Is Tiggers are wonderful things
Their tops are made out of rubber
Their bottoms are made out of springs

They’re bouncy, trouncy, flouncy, pouncy
Fun, fun, fun, fun, fun!
But the most wonderful thing about Tiggers
Is I’m the only one, I’m the only one."

**
Rep: +0/-0Level 90
haha,

i mean like... I dont want it to always be on the map, i want it to pop and go away when you click the "S" key. So like you press "S" and you can see the status, you press "S" again and it hides...get it? thanks if you can do it

*
Full Metal Mod - He will pillage your women!
Rep:
Level 93
The RGSS Dude
Quote from: Sacul
haha,

i mean like... I dont want it to always be on the map, i want it to pop and go away when you click the "S" key. So like you press "S" and you can see the status, you press "S" again and it hides...get it? thanks if you can do it


The window on the map was a separate project which I finished at my grandparents house. I'll edit it to support what you want and upload it here.

What key do you want to be pressed? I was thinking maybe the shift key? If not, I'll use the keyboard input script to do what you want.
"The wonderful thing about Tiggers
Is Tiggers are wonderful things
Their tops are made out of rubber
Their bottoms are made out of springs

They’re bouncy, trouncy, flouncy, pouncy
Fun, fun, fun, fun, fun!
But the most wonderful thing about Tiggers
Is I’m the only one, I’m the only one."

**
Rep: +0/-0Level 90
Shift key works. If you want to do the KB input script then S, but right shift works just as well. Thanks

-sacul

***
Rep:
Level 90
~
Hey Tsuno, the map version doesn't have any defined colors, you might want to fix that.

*
Full Metal Mod - He will pillage your women!
Rep:
Level 93
The RGSS Dude
Quote from: DeathTrooper
Hey Tsuno, the map version doesn't have any defined colors, you might want to fix that.


here's the map version completed. (the other was premature -_- lol)

Make sure you use the most recently posted bar script, and just paste this above main, call it something like Map Addition. Press 'shift' to make it visible/invisible, and use the q/w keys to rotate the actors' stats

Code: [Select]
class Window_Bars < Window_Base
   attr_accessor  :actor_id
   def initialize
      super(0,0,234,190)
      self.contents = Bitmap.new(width - 32, height - 32)
      self.contents.font.name = 'Times New Roman'
      self.contents.font.size = 22
      self.opacity = 100
      self.back_opacity = 100
      self.visible = false
      self.active = false
      @actor_id = 0
      refresh_stats
   end
   def refresh_stats
      self.contents.clear
      actor = $game_party.actors[@actor_id]
      draw_actor_name(actor,0,0)
      draw_actor_hp(actor,0,32,202)
      draw_hp_bar(actor,0,64)
      draw_actor_sp(actor,0,74,202)
      draw_sp_bar(actor,0,106)
      draw_actor_exp(actor,0,116)
      draw_exp_bar(actor,0,148)
    end
    def id(id,type)
      if type == 0
        @actor_id = id
      elsif type == 1
        @actor_id += id
      elsif type == 2
        @actor_id -= id
      end
    end
    def current_id(id)
      if @actor_id == id
        return true
      end
      return false
    end
   def update
      refresh_stats
   end
end
class Scene_Map
   def main
      @spriteset = Spriteset_Map.new
      @message_window = Window_Message.new
      @bar_window = Window_Bars.new
      @wait_count = 15
      Graphics.transition
      loop do
         Graphics.update
         Input.update
         update
         if $scene != self
            break
         end
      end
      Graphics.freeze
      @spriteset.dispose
      @message_window.dispose
      @bar_window.dispose
      if $scene.is_a?(Scene_Title)
         Graphics.transition
         Graphics.freeze
      end
   end
   def update
      loop do
         $game_map.update
         $game_system.map_interpreter.update
         $game_player.update
         $game_system.update
         $game_screen.update
         unless $game_temp.player_transferring
            break
         end
         transfer_player
         if $game_temp.transition_processing
            break
         end
       end
       if @bar_window.active
         if Input.repeat?(Input::L)
           if @bar_window.current_id(0)
             @bar_window.id(3,0)
           else
             @bar_window.id(1,2)
           end
         elsif Input.repeat?(Input::R)
           if @bar_window.current_id(3)
             @bar_window.id(0,0)
           else
             @bar_window.id(1,1)
           end
         end
       end
      if Input.press?(Input::A) and @wait_count >= 15
         if @bar_window.active
           @bar_window.active = false
           @bar_window.visible = false
           @wait_count = 0
         else
           @bar_window.active = true
           @bar_window.visible = true
           @wait_count = 0
         end
       end
       @wait_count += 1
      @spriteset.update
      @message_window.update
      @bar_window.update
      if $game_temp.gameover
         $scene = Scene_Gameover.new
         return
      end
      if $game_temp.to_title
         $scene = Scene_Title.new
         return
      end
      if $game_temp.transition_processing
         $game_temp.transition_processing = false
         if $game_temp.transition_name == ""
            Graphics.transition(20)
         else
            Graphics.transition(40, "Graphics/Transitions/" +
            $game_temp.transition_name)
         end
      end
      if $game_temp.message_window_showing
         return
      end
      if $game_player.encounter_count == 0 and $game_map.encounter_list != []
         unless $game_system.map_interpreter.running? or
            $game_system.encounter_disabled
            $game_temp.battle_calling = true
            $game_temp.battle_can_escape = true
            $game_temp.battle_can_lose = false
            $game_temp.battle_proc = nil
            n = rand($game_map.encounter_list.size)
            $game_temp.battle_troop_id = $game_map.encounter_list[n]
         end
      end
      if Input.trigger?(Input::B)
         unless $game_system.map_interpreter.running? or
            $game_system.menu_disabled
            $game_temp.menu_calling = true
            $game_temp.menu_beep = true
         end
      end
      if $DEBUG and Input.press?(Input::F9)
         $game_temp.debug_calling = true
      end
      unless $game_player.moving?
         if $game_temp.battle_calling
            call_battle
         elsif $game_temp.shop_calling
            call_shop
         elsif $game_temp.name_calling
            call_name
         elsif $game_temp.menu_calling
            call_menu
         elsif $game_temp.save_calling
            call_save
         elsif $game_temp.debug_calling
            call_debug
         end
      end
   end
end  
"The wonderful thing about Tiggers
Is Tiggers are wonderful things
Their tops are made out of rubber
Their bottoms are made out of springs

They’re bouncy, trouncy, flouncy, pouncy
Fun, fun, fun, fun, fun!
But the most wonderful thing about Tiggers
Is I’m the only one, I’m the only one."

**
Rep: +0/-0Level 90
I love you man, defintely going to be credited in my newest game... Also, you can be first to get a demo to! Add me to MSN if you want my email is littleoppelt@hotmail.com, I can fill you in on my game.

*
Rep: +0/-0Level 89
ok i've put the tested script in the list but no bars show up.

When my little dude is walking around the map are they supposed to appear at the top-left?

*
Full Metal Mod - He will pillage your women!
Rep:
Level 93
The RGSS Dude
Quote from: sub7
ok i've put the tested script in the list but no bars show up.

When my little dude is walking around the map are they supposed to appear at the top-left?


If you just put the bar script in, you wont see any bars, because that's just the code to make the bars.

If your talking about the script I posted for sacul, you press shift to show it.
"The wonderful thing about Tiggers
Is Tiggers are wonderful things
Their tops are made out of rubber
Their bottoms are made out of springs

They’re bouncy, trouncy, flouncy, pouncy
Fun, fun, fun, fun, fun!
But the most wonderful thing about Tiggers
Is I’m the only one, I’m the only one."

***
Rep:
Level 89
Call it too lazy to get a good avatar.
K', I just got here and am intrested in this, yet I am lost, can you tell me what goes where?(I read over the topic and It still gets me lost)
Sir Acer is back. This time, he has nothing. Its a fresh start.
____

*
Full Metal Mod - He will pillage your women!
Rep:
Level 93
The RGSS Dude
Quote from: Aus Ace Leader
K', I just got here and am intrested in this, yet I am lost, can you tell me what goes where?(I read over the topic and It still gets me lost)


just put it above main, but showing the actual bars requires a little bit of very simple scripting.
"The wonderful thing about Tiggers
Is Tiggers are wonderful things
Their tops are made out of rubber
Their bottoms are made out of springs

They’re bouncy, trouncy, flouncy, pouncy
Fun, fun, fun, fun, fun!
But the most wonderful thing about Tiggers
Is I’m the only one, I’m the only one."

***
Rep:
Level 89
Call it too lazy to get a good avatar.
Start anew, or the one already there?
Sir Acer is back. This time, he has nothing. Its a fresh start.
____

*
Rep: +0/-0Level 88
Hey, the code worked for me but it lags alot!

********
EXA
Rep:
Level 92
Pikachu on a toilet
Project of the Month winner for April 2007
Get King of Booze for Android, for iOS, for OUYA or for Windows!
Visit our website.
You can also love/hate us on Facebook or the game itself.


Get DropBox, the best free file syncing service there is!

*
Full Metal Mod - He will pillage your women!
Rep:
Level 93
The RGSS Dude
Quote from: vinco
Hey, the code worked for me but it lags alot!


I figured I might as well log in for this one, seeing as it pertains to code which I provided.

Let me put it simply -

The code shouldn't lag, it hasn't on anything I've tested it on. It's either the computer's processing power (bps) or something's just seriously wrong with your copy of RMXP. (Which I hope BTW: Is LEGAL)

PS: To those who read my goodbye post: what I said in it still remains true, however the reasons I posted in topic are obvious, and therefore reasonable causes for breach of trust so-to-speak. (Is-done-trying-to-sound-smart)

PSS: DOH!
"The wonderful thing about Tiggers
Is Tiggers are wonderful things
Their tops are made out of rubber
Their bottoms are made out of springs

They’re bouncy, trouncy, flouncy, pouncy
Fun, fun, fun, fun, fun!
But the most wonderful thing about Tiggers
Is I’m the only one, I’m the only one."

*****
Ancient Mummy
Rep:
Level 90
I am replying because i used it but It  doesn't work for me at a level 99 Char.

**
Rep:
Level 88
well, this might be sorta late (XD) but, the code dosn't work for me. And also, where do I put the little codes under the big one? I keep getting error messages for some reaon =C

*
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
Rep:
Level 96
&&&&&&&&&&&&&&&&&&&&&&&&&&&
GIAW 14: 2nd Place (Hard Mode)2013 Biggest Drama Whore2013 Zero to HeroParticipant - GIAW 11Secret Santa 2013 ParticipantFor taking arms in the name of your breakfast.
you dont put them anywhere.  ;8
He was just showing you where in the code you can change to get diffrent color bars.
&&&&&&&&&&&&&&&&

********
EXA
Rep:
Level 92
Pikachu on a toilet
Project of the Month winner for April 2007
Hey, Tsuno, are you going to decrease the lag? If yes, check my ABS, there is a HUD code in it which is highly optimized. Just use the same "Refresh it only if it changes" algorythm.:)
Get King of Booze for Android, for iOS, for OUYA or for Windows!
Visit our website.
You can also love/hate us on Facebook or the game itself.


Get DropBox, the best free file syncing service there is!

*
Full Metal Mod - He will pillage your women!
Rep:
Level 93
The RGSS Dude
Well, that's part is completely out of my control Bliz. *points at script* lolz.

I just posted the script for the bars. Of course I could post the script for those other bars I made, but yours are very similar *cough*andBETTER*cough* so I see no point in doing so lol.

:D
"The wonderful thing about Tiggers
Is Tiggers are wonderful things
Their tops are made out of rubber
Their bottoms are made out of springs

They’re bouncy, trouncy, flouncy, pouncy
Fun, fun, fun, fun, fun!
But the most wonderful thing about Tiggers
Is I’m the only one, I’m the only one."

********
EXA
Rep:
Level 92
Pikachu on a toilet
Project of the Month winner for April 2007
Lol! I guess there is no point in making a script if there already is a better one. The only 3 points in making one are:

1. Don't want to credit somebody else to have done something, what you can do yourself.

2. Want to make a better one, even if it's only a little bit more efficient code.

3. To make a script to help somebody, because the script from the other guy is ruggish~

At least these are my three reasons, lol!
Get King of Booze for Android, for iOS, for OUYA or for Windows!
Visit our website.
You can also love/hate us on Facebook or the game itself.


Get DropBox, the best free file syncing service there is!

***
Rep:
Level 86
Falling under chaos
Ok I just tried to use your script and it looks good from pics but it wont work im a little confused  I whant to have the bars in battle only to replace the numbers for hp sp ect. Can someone help me plz?  :)

***
Rep:
Level 90
Skilled Scripter, Shitty Mapper, Decent Writer.
....okies. You just resurrected a very, very old thread. In the words of the great Milk-chan I shall scold you! You dumbass! Now...

#1:If you find an old thread like this with a script that you need help with, post a thread in the Script Request section detailing what you want and link to the old thread for reference.

#2:Necro posting is bad! It may bring about the wrath of Falcon and nobody wants the wrath of Falcon to be brought.

#3:If you want to add bars to the battle system, then look at Scene_Battle's "main" method to find out which windows are created for the battles. Then, you look through each window until you find the one that displays the actor hp/sp etc. That will be the window you want to use.

#4:To use a bar script, you have to have some sort of knowledge on how windows and scenes work.

***
Rep:
Level 86
Falling under chaos
srry bringing this old thread up but i was desprete and didn't thinkof making a new one  my bad anyways im fairly good at working rmxp and a little about scrpts just not how to write them I was just confused wether to put the thing the Bar script or somthing els for where the bars will be just scripts. The directions were vaige to me i got confused.  but thnx for replying anyway. And thnx for the help srry if i pissed any 1 off.
« Last Edit: December 05, 2007, 08:31:04 AM by Fallen Angle »

pokeball :)OfflineMale
********
Cheese
Rep:
Level 95
?
....okies. You just resurrected a very, very old thread. In the words of the great Milk-chan I shall scold you! You dumbass! Now...

#1:If you find an old thread like this with a script that you need help with, post a thread in the Script Request section detailing what you want and link to the old thread for reference.

#2:Necro posting is bad! It may bring about the wrath of Falcon and nobody wants the wrath of Falcon to be brought.

#3:If you want to add bars to the battle system, then look at Scene_Battle's "main" method to find out which windows are created for the battles. Then, you look through each window until you find the one that displays the actor hp/sp etc. That will be the window you want to use.

#4:To use a bar script, you have to have some sort of knowledge on how windows and scenes work.

People who say bumping old topics is bad are idiots.
It's relevant to him, he has all rights to post in it. It's not like he's bumping a topic in spam, no need to call him a dumbass.
Watch out for: HaloOfTheSun

*
Full Metal Mod - He will pillage your women!
Rep:
Level 93
The RGSS Dude
srry bringing this old thread up but i was desprete and didn't thinkof making a new one  my bad anyways im fairly good at working rmxp and a little about scrpts just not how to write them I was just confused wether to put the thing the Bar script or somthing els for where the bars will be just scripts. The directions were vaige to me i got confused.  but thnx for replying anyway. And thnx for the help srry if i pissed any 1 off.

No problem. *smiles as if he actually did something*
"The wonderful thing about Tiggers
Is Tiggers are wonderful things
Their tops are made out of rubber
Their bottoms are made out of springs

They’re bouncy, trouncy, flouncy, pouncy
Fun, fun, fun, fun, fun!
But the most wonderful thing about Tiggers
Is I’m the only one, I’m the only one."

***
Rep:
Level 86
Falling under chaos
thnx im still new to the site idk wats good or bad on this site intirly btw I like the script alot but if you dont mind um Im having some trouble getting it to work idk were to put  the other 3 strips( hp sp ect.) for it to replac the numbers for battle ive been searching for a good Bar script and this is the best one i found  :)

**
Rep: +0/-0Level 86
 Tsunokiette could you do me a favor & combine these two scripts?
Code: [Select]
#------------------------------------------------------------------------------
   # Begin Game_Actor Edit
   #------------------------------------------------------------------------------
   class Game_Actor < Game_Battler
      #--------------------------------------------------------------------------
      # * Return the exp needed to reach the next level
      #--------------------------------------------------------------------------
      def needed_exp(current_lvl)
         return @exp_list[current_lvl + 1]
      end
      #--------------------------------------------------------------------------
      # * Return the currently gained exp
      #--------------------------------------------------------------------------
      def gained_exp(current_lvl,current_exp)
         return (current_exp - @exp_list[current_lvl])
       end
      #--------------------------------------------------------------------------
      # * Return the current level
      #--------------------------------------------------------------------------
      def lvl
         return @level
      end
   end
   #------------------------------------------------------------------------------
   # End Game_Actor Edit
   #------------------------------------------------------------------------------

   #------------------------------------------------------------------------------
   # Begin Window_Base Edit
   #------------------------------------------------------------------------------
   class Window_Base < Window
      #--------------------------------------------------------------------------
      # * Draw HP Bar
      #--------------------------------------------------------------------------
      def draw_hp_bar(actor,x,y,w = 202)
         #get hp and max hp
         hp = actor.hp
         max_hp = actor.maxhp
         #define colors to be used
         border_color = Color.new(0,0,0,255)
         line1_color = Color.new(0,145,0,255)
         line2_color = Color.new(0,176,0,255)
         line3_color = Color.new(0,215,0,255)
         line4_color = Color.new(0,253,0,255)
         line5_color = Color.new(0,215,0,255)
         line6_color = Color.new(0,176,0,255)
         line7_color = Color.new(0,145,0,255)
         line8_color = Color.new(0,120,0,255)
         empty_color = Color.new(75,75,75,255)
         #get widths and x's
         line_width = (((hp * 1.0) / max_hp) * (w - 2))
         empty_width = ((w - 2) - line_width)
         empty_x = ((x + 1) + line_width)
         #make border Rects
         border1 = Rect.new(x, y, w, 1)
         border2 = Rect.new(x, y + 9, w, 1)
         border3 = Rect.new(x, y + 1, 1, 8)
         border4 = Rect.new(x + (w - 1), y + 1, 1, 8)
         #make line Rects
         line1 = Rect.new(x + 1, y + 1, line_width, 1)
         line2 = Rect.new(x + 1, y + 2, line_width, 1)
         line3 = Rect.new(x + 1, y + 3, line_width, 1)
         line4 = Rect.new(x + 1, y + 4, line_width, 1)
         line5 = Rect.new(x + 1, y + 5, line_width, 1)
         line6 = Rect.new(x + 1, y + 6, line_width, 1)
         line7 = Rect.new(x + 1, y + 7, line_width, 1)
         line8 = Rect.new(x + 1, y + 8, line_width, 1)
         #make empty Rect
         empty = Rect.new(empty_x, y + 1, empty_width, 8)
         #fill border Rects
         self.contents.fill_rect(border1,border_color)
         self.contents.fill_rect(border2,border_color)
         self.contents.fill_rect(border3,border_color)
         self.contents.fill_rect(border4,border_color)
         #fill line Rects
         self.contents.fill_rect(line1,line1_color)
         self.contents.fill_rect(line2,line2_color)
         self.contents.fill_rect(line3,line3_color)
         self.contents.fill_rect(line4,line4_color)
         self.contents.fill_rect(line5,line5_color)
         self.contents.fill_rect(line6,line6_color)
         self.contents.fill_rect(line7,line7_color)
         self.contents.fill_rect(line8,line8_color)
         #fill empty Rect
         self.contents.fill_rect(empty,empty_color)
      end
      #--------------------------------------------------------------------------
      # * Draw SP Bar
      #--------------------------------------------------------------------------
      def draw_sp_bar(actor,x,y,w = 202)
         #get sp and max sp
         sp = actor.sp
         max_sp = actor.maxsp
         #get percentage width
         percentage_width = ((w - 2) / 100)
         #define colors to be used
         border_color = Color.new(0,0,0,255)
         line1_color = Color.new(112,0,223,255)
         line2_color = Color.new(130,4,255,255)
         line3_color = Color.new(155,55,255,255)
         line4_color = Color.new(170,85,255,255)
         line5_color = Color.new(155,55,255,255)
         line6_color = Color.new(130,4,255,255)
         line7_color = Color.new(112,0,223,255)
         line8_color = Color.new(88,0,176,255)
         empty_color = Color.new(75,75,75,255)
         #get widths and x's
         line_width = (((sp * 1.0) / max_sp) * (w - 2))
         empty_width = ((w - 2) - line_width)
         empty_x = ((x + 1) + line_width)
         #make border Rects
         border1 = Rect.new(x, y, w, 1)
         border2 = Rect.new(x, y + 9, w, 1)
         border3 = Rect.new(x, y + 1, 1, 8)
         border4 = Rect.new(x + (w - 1), y + 1, 1, 8)
         #make line Rects
         line1 = Rect.new(x + 1, y + 1, line_width, 1)
         line2 = Rect.new(x + 1, y + 2, line_width, 1)
         line3 = Rect.new(x + 1, y + 3, line_width, 1)
         line4 = Rect.new(x + 1, y + 4, line_width, 1)
         line5 = Rect.new(x + 1, y + 5, line_width, 1)
         line6 = Rect.new(x + 1, y + 6, line_width, 1)
         line7 = Rect.new(x + 1, y + 7, line_width, 1)
         line8 = Rect.new(x + 1, y + 8, line_width, 1)
         #make empty Rect
         empty = Rect.new(empty_x, y + 1, empty_width, 8)
         #fill border Rects
         self.contents.fill_rect(border1,border_color)
         self.contents.fill_rect(border2,border_color)
         self.contents.fill_rect(border3,border_color)
         self.contents.fill_rect(border4,border_color)
         #fill line Rects
         self.contents.fill_rect(line1,line1_color)
         self.contents.fill_rect(line2,line2_color)
         self.contents.fill_rect(line3,line3_color)
         self.contents.fill_rect(line4,line4_color)
         self.contents.fill_rect(line5,line5_color)
         self.contents.fill_rect(line6,line6_color)
         self.contents.fill_rect(line7,line7_color)
         self.contents.fill_rect(line8,line8_color)
         #fill empty Rect
         self.contents.fill_rect(empty,empty_color)
      end
      #--------------------------------------------------------------------------
      # * Draw EXP Bar
      #--------------------------------------------------------------------------
      def draw_exp_bar(actor,x,y,w = 202)
         #get exp and needed exp
         exp = actor.exp
         gained_exp = actor.gained_exp(actor.lvl,exp)
         needed_exp = actor.needed_exp(actor.lvl)
         #define colors to be used
         border_color = Color.new(0,0,0,255)
         line1_color = Color.new(140,140,0,255)
         line2_color = Color.new(157,157,0,255)
         line3_color = Color.new(170,170,0,255)
         line4_color = Color.new(196,196,0,255)
         line5_color = Color.new(170,170,0,255)
         line6_color = Color.new(157,157,0,255)
         line7_color = Color.new(140,140,0,255)
         line8_color = Color.new(128,128,0,255)
         empty_color = Color.new(75,75,75,255)
         #get widths and x's
         line_width = (((gained_exp * 1.0) / needed_exp) * (w - 2))
         empty_width = ((w - 2) - line_width)
         empty_x = ((x + 1) + line_width)
         #make border Rects
         border1 = Rect.new(x, y, w, 1)
         border2 = Rect.new(x, y + 9, w, 1)
         border3 = Rect.new(x, y + 1, 1, 8)
         border4 = Rect.new(x + (w - 1), y + 1, 1, 8)
         #make line Rects
         line1 = Rect.new(x + 1, y + 1, line_width, 1)
         line2 = Rect.new(x + 1, y + 2, line_width, 1)
         line3 = Rect.new(x + 1, y + 3, line_width, 1)
         line4 = Rect.new(x + 1, y + 4, line_width, 1)
         line5 = Rect.new(x + 1, y + 5, line_width, 1)
         line6 = Rect.new(x + 1, y + 6, line_width, 1)
         line7 = Rect.new(x + 1, y + 7, line_width, 1)
         line8 = Rect.new(x + 1, y + 8, line_width, 1)
         #make empty Rect
         empty = Rect.new(empty_x, y + 1, empty_width, 8)
         #fill border Rects
         self.contents.fill_rect(border1,border_color)
         self.contents.fill_rect(border2,border_color)
         self.contents.fill_rect(border3,border_color)
         self.contents.fill_rect(border4,border_color)
         #fill line Rects
         self.contents.fill_rect(line1,line1_color)
         self.contents.fill_rect(line2,line2_color)
         self.contents.fill_rect(line3,line3_color)
         self.contents.fill_rect(line4,line4_color)
         self.contents.fill_rect(line5,line5_color)
         self.contents.fill_rect(line6,line6_color)
         self.contents.fill_rect(line7,line7_color)
         self.contents.fill_rect(line8,line8_color)
         #fill empty Rect
         self.contents.fill_rect(empty,empty_color)
       end
      end
   #------------------------------------------------------------------------------
   # End Window_Base Edit
   #------------------------------------------------------------------------------
Code: [Select]
class Window_Bars < Window_Base
   attr_accessor  :actor_id
   def initialize
      super(0,0,234,190)
      self.contents = Bitmap.new(width - 32, height - 32)
      self.contents.font.name = 'Times New Roman'
      self.contents.font.size = 22
      self.opacity = 100
      self.back_opacity = 100
      self.visible = false
      self.active = false
      @actor_id = 0
      refresh_stats
   end
   def refresh_stats
      self.contents.clear
      actor = $game_party.actors[@actor_id]
      draw_actor_name(actor,0,0)
      draw_actor_hp(actor,0,32,202)
      draw_hp_bar(actor,0,64)
      draw_actor_sp(actor,0,74,202)
      draw_sp_bar(actor,0,106)
      draw_actor_exp(actor,0,116)
      draw_exp_bar(actor,0,148)
    end
    def id(id,type)
      if type == 0
        @actor_id = id
      elsif type == 1
        @actor_id += id
      elsif type == 2
        @actor_id -= id
      end
    end
    def current_id(id)
      if @actor_id == id
        return true
      end
      return false
    end
   def update
      refresh_stats
   end
end
class Scene_Map
   def main
      @spriteset = Spriteset_Map.new
      @message_window = Window_Message.new
      @bar_window = Window_Bars.new
      @wait_count = 15
      Graphics.transition
      loop do
         Graphics.update
         Input.update
         update
         if $scene != self
            break
         end
      end
      Graphics.freeze
      @spriteset.dispose
      @message_window.dispose
      @bar_window.dispose
      if $scene.is_a?(Scene_Title)
         Graphics.transition
         Graphics.freeze
      end
   end
   def update
      loop do
         $game_map.update
         $game_system.map_interpreter.update
         $game_player.update
         $game_system.update
         $game_screen.update
         unless $game_temp.player_transferring
            break
         end
         transfer_player
         if $game_temp.transition_processing
            break
         end
       end
       if @bar_window.active
         if Input.repeat?(Input::L)
           if @bar_window.current_id(0)
             @bar_window.id(3,0)
           else
             @bar_window.id(1,2)
           end
         elsif Input.repeat?(Input::R)
           if @bar_window.current_id(3)
             @bar_window.id(0,0)
           else
             @bar_window.id(1,1)
           end
         end
       end
      if Input.press?(Input::A) and @wait_count >= 15
         if @bar_window.active
           @bar_window.active = false
           @bar_window.visible = false
           @wait_count = 0
         else
           @bar_window.active = true
           @bar_window.visible = true
           @wait_count = 0
         end
       end
       @wait_count += 1
      @spriteset.update
      @message_window.update
      @bar_window.update
      if $game_temp.gameover
         $scene = Scene_Gameover.new
         return
      end
      if $game_temp.to_title
         $scene = Scene_Title.new
         return
      end
      if $game_temp.transition_processing
         $game_temp.transition_processing = false
         if $game_temp.transition_name == ""
            Graphics.transition(20)
         else
            Graphics.transition(40, "Graphics/Transitions/" +
            $game_temp.transition_name)
         end
      end
      if $game_temp.message_window_showing
         return
      end
      if $game_player.encounter_count == 0 and $game_map.encounter_list != []
         unless $game_system.map_interpreter.running? or
            $game_system.encounter_disabled
            $game_temp.battle_calling = true
            $game_temp.battle_can_escape = true
            $game_temp.battle_can_lose = false
            $game_temp.battle_proc = nil
            n = rand($game_map.encounter_list.size)
            $game_temp.battle_troop_id = $game_map.encounter_list[n]
         end
      end
      if Input.trigger?(Input::B)
         unless $game_system.map_interpreter.running? or
            $game_system.menu_disabled
            $game_temp.menu_calling = true
            $game_temp.menu_beep = true
         end
      end
      if $DEBUG and Input.press?(Input::F9)
         $game_temp.debug_calling = true
      end
      unless $game_player.moving?
         if $game_temp.battle_calling
            call_battle
         elsif $game_temp.shop_calling
            call_shop
         elsif $game_temp.name_calling
            call_name
         elsif $game_temp.menu_calling
            call_menu
         elsif $game_temp.save_calling
            call_save
         elsif $game_temp.debug_calling
            call_debug
         end
      end
   end
end   

**
Rep:
Level 86
Looks very good, maybe I'll use it in my game...

**
Rep: +0/-0Level 86
Alright, I've been putting scripts into classes and groups, but nothing happens.....how do I get them working? I think I've been putting them in the right place but nothing happens...

*
Full Metal Mod - He will pillage your women!
Rep:
Level 93
The RGSS Dude
Tsunokiette could you do me a favor & combine these two scripts?

Could you provide me with a link to a topic with the second script? Just so I can get an idea as to what it's supposed to do.

Alright, I've been putting scripts into classes and groups, but nothing happens.....how do I get them working? I think I've been putting them in the right place but nothing happens...

If you read the first post you'll notice that I say the bars don't show up by themselves. :)
This is just the code that draws the bars, but you have to tell the system to draw them, otherwise it's like giving a builder the blueprints to a house without telling him to build the house.

I don't remember what the code is exactly (it should be in the first post) but you put it in the refresh method of most windows where it draws everything that is supposed to be in the window.

If this doesn't work post the code you have and I'll fix it for you. ^_^
"The wonderful thing about Tiggers
Is Tiggers are wonderful things
Their tops are made out of rubber
Their bottoms are made out of springs

They’re bouncy, trouncy, flouncy, pouncy
Fun, fun, fun, fun, fun!
But the most wonderful thing about Tiggers
Is I’m the only one, I’m the only one."