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.

Move the battler

Hi everyone i'd like to ask a question

I have a party of 2 mems but my battlers are so big that they mess up in battles. 
Here is a picture, for example

http://i129.photobucket.com/albums/p215 ... 492/ss.jpg[/img]

In the picture i want the female battler moved to the 4th slot ( you can see the arrow i draw) so that the 2 battlers don't mess up with each other.

Thx very much if someone helps me with this (you can delete this topic when i have the answer ^_^)
 
Ok, this requires 3 edits. One to position the battler image, one to position the status text, and one to position the actor command window. I'll include the original statement, commented, and the modified statement.

Scene_Battle 3, line 81
Code:
#    @actor_command_window.x = @actor_index * 160
    @actor_command_window.x = @actor_index * (480 / ($game_party.actors.size - 1))

Game_Actor, line 574
Code:
#      return self.index * 160 + 80
      return 80 + self.index * (480 / ($game_party.actors.size - 1))

Window_BattleStatus, line 38
Code:
#      actor_x = i * 160 + 4
      actor_x = 4 + i  * (480 / ($game_party.actors.size - 1))

Be Well
 
I see you have 'gradient' bars for the actors & enemy. Probably a conflict between the scripts.

The mod I posted works fine in a new project.

Can you send me your Scripts.rxdata file, and I'll send it back fixed. (at least, I'll try...)
 

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