Anonymous Guest May 12, 2007 #1 any1 know how in the status menu i can change the wwalking sprite picture to the battle graphic?
Mac Member 335 May 12, 2007 #3 Add this to Window Base, Code: def draw_actor_battler(actor, x, y) bitmap = RPG::Cache.battler(actor.battler_name, actor.battler_hue) self.contents.blt(x, y, bitmap, Rect.new(0, 0, bitmap.width, bitmap.height)) end Then change the word graphic in this method to battler:- Code: draw_actor_graphic(actor, x - 40, y + 80) Upvote 0 Downvote
Add this to Window Base, Code: def draw_actor_battler(actor, x, y) bitmap = RPG::Cache.battler(actor.battler_name, actor.battler_hue) self.contents.blt(x, y, bitmap, Rect.new(0, 0, bitmap.width, bitmap.height)) end Then change the word graphic in this method to battler:- Code: draw_actor_graphic(actor, x - 40, y + 80)