Jump to content
New account registrations are disabed. This website is now an archive. Read more here.
  • Recently Browsing   0 members

    No registered users viewing this page.

  • Similar Content

    • By princessbinas
      This script (below) I'm using has a problem... It isn't all that well working with Dragor's Large Party (as in doesn't show battlers for your party once you reach actor 5 or higher).
       
       
       
      ##########################################################################
      #
      # Sideview Battlers
      #
      # Ripped from Ccoa's Side View battle system, courtesy of Rhazdel
      #
      # Inspired by Lambchop's Aveyond Battle System
      ##########################################################################
       
      class Game_Actor
      #-----------------------------------------------------------------------
      # * Get Battle Screen X-Coordinate
      #------------------------------------------------------------------------
      def screen_x
      if self.index != nil
      pos = $data_classes[self.class_id].position
      return (self.index * 20) + (pos * 40) + 480
      else
      return 0
      end
      end
      #------------------------------------------------------------------------
      # * Get Battle Screen Y-Coordinate
      #------------------------------------------------------------------------
      def screen_y
      return self.index * 45 + 175
      end
      end
×
×
  • Create New...