02-09-2010, 04:16 PM
Yes, there is. For example:
clones actor number 12, puts it in the database, and returns the new Game_Actor object. You may want to store the id of the new actor for later use with something like:
the new actor should be then available as
Code:
$game_actors.clone_actor(12)
clones actor number 12, puts it in the database, and returns the new Game_Actor object. You may want to store the id of the new actor for later use with something like:
Code:
$game_variables[67] = $game_actors.clone_actor(12).id
the new actor should be then available as
Code:
$game_actors[$game_variables[67]]