Need help (Actors)

Lancelot How can i move an npc from one room to another.
Jim C I don't know if this is the best way, but what I would do is this:

When a certain condition is met, make the npc walk to the door, make it open, and hide() the npc. Then set a global variable (flag) in main.sc to 1. Then, when the flag is 1, every time the ego walks into the original room, don't initialize the npc. And every time the ego walks into the room the npc walked into, initialize the npc there. Did that make sense?
Lancelot Thanks
I think that would do it.I will try it today.