- Joined
- Sep 15, 2014
- Messages
- 3
- Reaction score
- 0
- First Language
- English
- Primarily Uses
Hi guys,
As I'm using Jet10985's simple Side-View battle system I've had to attempt to make a few changes in order to make it look like my characters are not standing on a wall:
My solution to this, I figured was to find a way to put all the menus that appear at the bottom, at the top and to push the characters down.
However, upon trying this by changing
#-------------------------------------------------------------------------- # * Create Status Window #-------------------------------------------------------------------------- def create_status_window @status_window = Window_BattleStatus.new @status_window.x = 128 endto
#-------------------------------------------------------------------------- # * Create Status Window #-------------------------------------------------------------------------- def create_status_window @status_window = Window_BattleStatus.new @status_window.x = 128 @status_window.y = 50 endthe following happens
Please advise as to how I fix this problem, I'm slowly making my way through RGSS and am trying to pick it up but there are some things that just confuse the hell out of me.
I am also using Yanfly's battle engine though I cannot find an instance where it is declared that the window is to be placed at the bottom.
Cheers guys!
As I'm using Jet10985's simple Side-View battle system I've had to attempt to make a few changes in order to make it look like my characters are not standing on a wall:
My solution to this, I figured was to find a way to put all the menus that appear at the bottom, at the top and to push the characters down.
However, upon trying this by changing
#-------------------------------------------------------------------------- # * Create Status Window #-------------------------------------------------------------------------- def create_status_window @status_window = Window_BattleStatus.new @status_window.x = 128 endto
#-------------------------------------------------------------------------- # * Create Status Window #-------------------------------------------------------------------------- def create_status_window @status_window = Window_BattleStatus.new @status_window.x = 128 @status_window.y = 50 endthe following happens
Please advise as to how I fix this problem, I'm slowly making my way through RGSS and am trying to pick it up but there are some things that just confuse the hell out of me.
I am also using Yanfly's battle engine though I cannot find an instance where it is declared that the window is to be placed at the bottom.
Cheers guys!


