so im using rye's side view battle system, and it only lets you edit the entire parties positioning with this code:
what i want to do is stagger my actors so theyre not all in a line like they are now... this battle system can also take into accound their classes positioning from the database (front, middle or back row), however, i have that turned off by having: "FORMATION_X = 0Â # actor's interval X" set to zero. i cant find anywhere in the script how to make my actors staggered. here's the script:
RYE's SVBs topic/demo:Â http://rmxp.org/forums/index.php?topic=24608.0
Code:
 #--------------------------------------------------------------------------
 # ÂÅ“ Positional correction of combat screen party
 #-----------4--------------------------------------------------------------
 PARTY_X = 480   # X position of party
 PARTY_Y = 200   # Y position of party
 FORMATION_X = 0 # actor's interval X
 FORMATION_Y = 38 # actor's interval Y
what i want to do is stagger my actors so theyre not all in a line like they are now... this battle system can also take into accound their classes positioning from the database (front, middle or back row), however, i have that turned off by having: "FORMATION_X = 0Â # actor's interval X" set to zero. i cant find anywhere in the script how to make my actors staggered. here's the script:
RYE's SVBs topic/demo:Â http://rmxp.org/forums/index.php?topic=24608.0