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.

CMS Help: Adding Status Icons instead of words

poccil

Sponsor

Use this script, which should be placed in a new script section.  Name each icon stateX.png where X is the state's number.  Put each icon in Graphics/Icons/.

Code:
class Window_Base
  def draw_actor_state(actor, x, y, width=128)
   totalwidth=0
   for i in actor.states
     statebitmap=RPG::Cache.icon("state#{i}")
     break if totalwidth+statebitmap.width>width
     self.contents.blt(x+totalwidth,y+(16-(statebitmap.height/2)),statebitmap,statebitmap.rect)
     totalwidth+=statebitmap.width
   end
  end
end
 

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