Hi, I'm new here. If you go to Gaming World You may know that I am working on a game called "THE FATE OF KYBERIA" which no one over there cares about. Anyway, back to the topic. In my game I need to know how to change characters through the game. (like in rob blanc 2 and 3) If you could show me the script I would highly appreaciate it. Bye.
Use the command Character.SetAsPlayer().
if your characters' script names are Ego1 and Ego2, you can do:
cEgo2.SetAsPlayer();
and to return to the other one,
cEgo1.SetAsPlayer();
Thanx! I'll try this out.