Envision, Create, Share

Welcome to HBGames, a leading amateur game development forum and Discord server. All are welcome, and amongst our ranks you will find experts in their field from all aspects of video game design and development.

small edit of Legacy's full CMS

EDIT: wow, im an idiot, nevermind, this topic is solved. thank you :]

Since i hear Lecacy's not active anymore, i thought id post this here, instead of the actual topic.

can someone edit theis script: http://www.rmxp.org/forums/showthread.php?t=4059

to take out the battle portion of it? what i was is the bars gone... i still want the: example: (HP: 177/900)

thanks a bunch in advance. :]

EDIT: wow, im an idiot, nevermind, this topic is solved. thank you :]
 

Shiro

Member

Step #1: Make sure you did this right.

Code:
    BATTLE_BAR      = false                       # True if you want to have bar for battle system.

Step #2: Put this script right above LeGaCy's CMS.

Code:
#==============================================================================
# ** Window_BattleStatus
#------------------------------------------------------------------------------
#  This window displays the status of all party members on the battle screen.
#==============================================================================

class Window_BattleStatus < Window_Base
  #--------------------------------------------------------------------------
  # * Refresh
  #--------------------------------------------------------------------------
  def refresh
    self.contents.clear
    @item_max = $game_party.actors.size
    for i in 0...$game_party.actors.size
      actor = $game_party.actors[i]
      actor_x = i * 160 + 4
      draw_actor_name(actor, actor_x, 0)
      self.contents.draw_text(actor_x, 32, 150, 32, "#{$data_system.words.hp} #{actor.hp}/#{actor.maxhp}")
      self.contents.draw_text(actor_x, 64, 150, 32, "#{$data_system.words.sp} #{actor.sp}/#{actor.maxsp}")
      if @level_up_flags[i]
        self.contents.font.color = normal_color
        self.contents.draw_text(actor_x, 96, 120, 32, "LEVEL UP!")
      else
        draw_actor_state(actor, actor_x, 96)
      end
    end
  end
end
Credit: Raziel
 

Thank you for viewing

HBGames is a leading amateur video game development forum and Discord server open to all ability levels. Feel free to have a nosey around!

Discord

Join our growing and active Discord server to discuss all aspects of game making in a relaxed environment. Join Us

Content

  • Our Games
  • Games in Development
  • Emoji by Twemoji.
    Top