Hi there
I'm using this japanese RTAB System with Minkoffs SideView script and want to add some little design.
As known, the Battlestatus windows is transparent. I made my own battlebars and would like to show them during the battle.
Thats the code i use:
The problem is, wherever i put it in, i can't see it during the battle. i tried it in every single class i found and i still see nothing.
Where I have to put this in?
I'm using this japanese RTAB System with Minkoffs SideView script and want to add some little design.
As known, the Battlestatus windows is transparent. I made my own battlebars and would like to show them during the battle.
Thats the code i use:
Code:
def draw_picture(picture, x, y)
bitmap = RPG::Cache.picture("dragonhead.png")
cw = bitmap.width
ch = bitmap.height
src_rect = Rect.new (0, 0, cw, ch)
self.contents.blt(x - cw / 2, y - ch, bitmap, src_rect)
end
The problem is, wherever i put it in, i can't see it during the battle. i tried it in every single class i found and i still see nothing.
Where I have to put this in?