Reztea 34 Posted March 4, 2017 I want the PC to move to a certain spot in my module.. My PC is switched to Kreia for a side quest. Can anyone provide me with a script that will make my pc move? Thanks. Quote Share this post Link to post Share on other sites
bead-v 251 Posted March 4, 2017 void main(){ object oPC = GetFirstPC(); location lDest = Location(Vector(20.0, 30.0, 1.0), 0.0); //This means: Location(Vector(x, y, z), orientationInDegrees); object oDest = GetObjectByTag("destination"); int bRun = FALSE; //PC will walk //If you want to move to a location AssignCommand(oPC, ActionMoveToLocation(lLocation, bRun)); //If you want to move to an object AssignCommand(oPC, ActionMoveToObject(oDest, bRun)); } Quote Share this post Link to post Share on other sites