I am trying to create a script where, when you create a new character, you can choose from different sprites for Actor001. I also want it so Actor001 can never be a member of a party, but IS the controlled character.
I am still in the process for working it out but if anyone can help it would be greatly appreciated.
So far I have changed refresh in Game_Party to this to omit the [0] actor
I am still in the process for working it out but if anyone can help it would be greatly appreciated.
So far I have changed refresh in Game_Party to this to omit the [0] actor
Code:
def refresh
# Actor objects split from $game_actors right after loading game data
# Avoid this problem by resetting the actors each time data is loaded.
new_actors = []
for i in [email=1...@actors.size]1...@actors.size[/email]
if $data_actors[@actors[i].id] != nil
new_actors.push($game_actors[@actors[i].id])
end
end
@actors = new_actors
end