Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
 [RMXP] Actor Cloning
#3
Yea I found that too, unfortunately there is no Actor Cloning System on Planted Fleed, I don't know if it has just been lost or what?

Would anyone be able to tell me how to create a new section like Actors in the save file?

This seems to be how the entire actor Class is added to the Actors array
Code:
#==============================================================================
# ** Game_Actors
#------------------------------------------------------------------------------
#  This class handles the actor array. Refer to "$game_actors" for each
#  instance of this class.
#==============================================================================

class Game_Actors
  #--------------------------------------------------------------------------
  # * Object Initialization
  #--------------------------------------------------------------------------
  def initialize
@data = []
  end
  #--------------------------------------------------------------------------
  # * Get Actor
  # actor_id : actor ID
  #--------------------------------------------------------------------------
  def [](actor_id)
if actor_id > 999 or $data_actors[actor_id] == nil
  return nil
end
if @data[actor_id] == nil
  @data[actor_id] = Game_Actor.new(actor_id)
end
return @data[actor_id]
  end
end

Code:
def initialize(actor_id)
super()
setup(actor_id)
  end
  #--------------------------------------------------------------------------
  # * Setup
  # actor_id : actor ID
  #--------------------------------------------------------------------------
  def setup(actor_id)
   ...

from what I can tell from Actors, I would have to at least have these two sections correct?

Anyways I am pretty much looking for the easy way to do this, but it seems like there may not be an easy way. ya can check out my post about this subject, and what I am really trying to do here
Code:
http://www.hbgames.org/forums/viewtopic.php?p=826676
Reply }


Messages In This Thread
[RMXP] Actor Cloning - by dagarath - 03-08-2011, 06:58 AM
RE: [RMXP] Actor Cloning - by DerVVulfman - 03-08-2011, 07:13 AM
RE: [RMXP] Actor Cloning - by dagarath - 03-08-2011, 07:18 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
   Personal graph by actor zlsl 4 3,844 10-23-2021, 06:43 AM
Last Post: zlsl
   [RMXP] Showing skill gained by leveling up on battle result FrQise 12 10,315 05-07-2021, 02:05 PM
Last Post: FrQise
   Actor names in Quest Script jreagan406 5 7,605 03-07-2017, 08:06 AM
Last Post: JayRay
   RMXP SKill animations too bright (overlaying the battle screen) Starmage 4 9,154 06-13-2016, 03:41 AM
Last Post: Starmage
   Actor Graphic/Reflection Refuses to Update/Refresh penguwin 6 8,659 11-06-2014, 09:51 PM
Last Post: penguwin
   [RMXP]Game Over and Atoa Battle Status mishaps firestalker 8 9,688 08-07-2014, 01:59 AM
Last Post: firestalker
  Attack from an enemy to a actor as condinitional branch Djigit 7 8,881 07-05-2014, 06:58 PM
Last Post: Djigit
Star Multilanguage script petition for RMXP Iqus 11 17,364 01-07-2013, 10:50 AM
Last Post: Narzew
   Modifying Actor ID to Class ID for Advanced Individual Battle Commands Script NewHope 1 4,182 07-11-2012, 11:37 PM
Last Post: NewHope
   Repositioning the actor command window. MegaPowerNinja 4 8,543 04-12-2011, 05:21 AM
Last Post: MegaPowerNinja



Users browsing this thread: