Olivia sidebattle UI plugin formula

● ARCHIVED · READ-ONLY
Started by Madre_Joshua 5 posts View original ↗
  1. Yanfly made a video regarding the octopath inspired plugins by Olivia a few days ago. I decided to use some of them (sideview battle ui, battle system, victory screen). I have managed to set up most things as I wanted, unfortunately I´ve run into a small problem now.

    https://imgur.com/a/ALQhayL

    As it is now, all player characters are standing as depicted in the picture, diagonally, with each member standing further in the back. They´re also standing a bit too far left for my liking. How can I set them up to stand in one row and preferably around the area marked in the second picture? The current formulas used by the plugin are

    Formula for X

    Graphics.boxWidth * 0.5 + 128 + index * 64

    Formula for Y

    Graphics.boxHeight - 128 - ($gameParty.maxBattleMembers() - index - 1) * 48

    I´m not an expert at these kinds of things, so I´m honestly not sure what I should do to change their positions, and I´m somewhat afraid of changing anything and ruining the placement completly. I hope this is enough information for someone to help me with my problem. If it isn´t, I´ll provide any asked information.

    Thank you very much
  2. Formula for X
    Graphics.boxWidth * 0.5 + 128 + index * 0

    Formula for Y
    Graphics.boxHeight - 128 - ($gameParty.maxBattleMembers() - index - 1) * 48
  3. Isabella Ava said:
    Formula for X
    Graphics.boxWidth * 0.5 + 128 + index * 0

    Formula for Y
    Graphics.boxHeight - 128 - ($gameParty.maxBattleMembers() - index - 1) * 48

    Thank you very much, that was very helpful!

    Could you perhabs help me with another small problem I have?



    Is there a way to move the Command Window to the bottom left of the screen? Or alternatively just anywhere where it doesn´t cover half the party whenever anyone decides to do something? I originally had it further to the right and smaller but that causes the attack name text for attacks with a longer name to overlap with the cost of the skill.

    Also, is there a way to highen the distance between characters? As in, how close they are to each other horizontally since they all feel pretty close to each other.

    Please ignore the black circle above the characters.
  4. Captain_Joshua said:
    Thank you very much, that was very helpful!

    Could you perhabs help me with another small problem I have?



    Is there a way to move the Command Window to the bottom left of the screen? Or alternatively just anywhere where it doesn´t cover half the party whenever anyone decides to do something? I originally had it further to the right and smaller but that causes the attack name text for attacks with a longer name to overlap with the cost of the skill.

    Also, is there a way to highen the distance between characters? As in, how close they are to each other horizontally since they all feel pretty close to each other.

    Please ignore the black circle above the characters.

    You can edit the number in Pink to change characters' distance:
    Formula for Y
    Graphics.boxHeight - 128 - ($gameParty.maxBattleMembers() - index - 1) * 48

    About the Command Window i think it's very likely to have an option to change that inside Plugin's Parameters, you should check for it
  5. Thank you, that did indeed work. I haven´t found any way to actually move the window over to the left unfortunately, but I´m sure I´ll think of something at some point. I´m very grateful for your help.