harIII Posted October 19, 2009 Share Posted October 19, 2009 I am trying to make some npcs walk around in a module and I could never figure out the process used in the tutorial here on LFs. I made a huge script that is simply a script making the npc walk from one specific location to another. It worked fine on the first npc but the second two I had problems with. The second one I went straight to another location and by passed the one that the npc stopped at and is now working fine. The third npc is completely stopping at the 7th to 8th movement and it shouldn't yet it does. Here is my script. void main() { object oNPC=GetObjectByTag("colonist03"); float x=115.8; float y=135.17; float z=0.0; int bRun=TRUE; vector vExit=Vector(x,y,z); location lExit=Location(vExit,0.0f); ActionDoCommand(SetCommandable(TRUE,oNPC)); AssignCommand (oNPC,ActionForceMoveToLocation(lExit,bRun)); x=101.6; y=172.54; z=0.0; vExit=Vector(x,y,z); lExit=Location(vExit,0.0f); ActionDoCommand(SetCommandable(TRUE,oNPC)); AssignCommand (oNPC,ActionForceMoveToLocation(lExit,bRun)); x=116.72; y=187.34; z=0.0; vExit=Vector(x,y,z); lExit=Location(vExit,0.0f); ActionDoCommand(SetCommandable(TRUE,oNPC)); AssignCommand (oNPC,ActionForceMoveToLocation(lExit,bRun)); x=111.48; y=205.0; z=0.0; vExit=Vector(x,y,z); lExit=Location(vExit,0.0f); ActionDoCommand(SetCommandable(TRUE,oNPC)); AssignCommand (oNPC,ActionForceMoveToLocation(lExit,bRun)); x=115.8; y=135.17; z=0.0; vExit=Vector(x,y,z); lExit=Location(vExit,0.0f); ActionDoCommand(SetCommandable(TRUE,oNPC)); AssignCommand (oNPC,ActionForceMoveToLocation(lExit,bRun)); x=119.46; y=130.88; z=0.0; vExit=Vector(x,y,z); lExit=Location(vExit,0.0f); ActionDoCommand(SetCommandable(TRUE,oNPC)); AssignCommand (oNPC,ActionForceMoveToLocation(lExit,bRun)); x=109.42; y=124.89; z=0.0; vExit=Vector(x,y,z); lExit=Location(vExit,0.0f); ActionDoCommand(SetCommandable(TRUE,oNPC)); AssignCommand (oNPC,ActionForceMoveToLocation(lExit,bRun)); x=109.38; y=103.53; z=0.0; vExit=Vector(x,y,z); lExit=Location(vExit,0.0f); ActionDoCommand(SetCommandable(TRUE,oNPC)); AssignCommand (oNPC,ActionForceMoveToLocation(lExit,bRun)); x=93.09; y=97.21; z=0.0; vExit=Vector(x,y,z); lExit=Location(vExit,0.0f); ActionDoCommand(SetCommandable(TRUE,oNPC)); AssignCommand (oNPC,ActionForceMoveToLocation(lExit,bRun)); x=136.88; y=93.6; z=0.0; vExit=Vector(x,y,z); lExit=Location(vExit,0.0f); ActionDoCommand(SetCommandable(TRUE,oNPC)); AssignCommand (oNPC,ActionForceMoveToLocation(lExit,bRun)); x=136.75; y=100.7; z=0.0; vExit=Vector(x,y,z); lExit=Location(vExit,0.0f); ActionDoCommand(SetCommandable(TRUE,oNPC)); AssignCommand (oNPC,ActionForceMoveToLocation(lExit,bRun)); x=112.59; y=100.7; z=0.0; vExit=Vector(x,y,z); lExit=Location(vExit,0.0f); ActionDoCommand(SetCommandable(TRUE,oNPC)); AssignCommand (oNPC,ActionForceMoveToLocation(lExit,bRun)); x=109.42; y=124.89; z=0.0; vExit=Vector(x,y,z); lExit=Location(vExit,0.0f); ActionDoCommand(SetCommandable(TRUE,oNPC)); AssignCommand (oNPC,ActionForceMoveToLocation(lExit,bRun)); x=119.46; y=130.88; z=0.0; vExit=Vector(x,y,z); lExit=Location(vExit,0.0f); ActionDoCommand(SetCommandable(TRUE,oNPC)); AssignCommand (oNPC,ActionForceMoveToLocation(lExit,bRun)); x=115.8; y=135.17; z=0.0; vExit=Vector(x,y,z); lExit=Location(vExit,0.0f); ActionDoCommand(SetCommandable(TRUE,oNPC)); AssignCommand (oNPC,ActionForceMoveToLocation(lExit,bRun)); ExecuteScript("move_colonist03", OBJECT_SELF); } In the second quote is where the npc is just stopping and the very end code, the execute script, it simply makes the script start all over again making it loop. What is making the npc stop? Link to comment Share on other sites More sharing options...
harIII Posted October 19, 2009 Author Share Posted October 19, 2009 You guys can skip over this, I figured it out. My npc file was still using the same old scripts from before when he spawns and not this one. It works fine and repeats itself. Sorry. Link to comment Share on other sites More sharing options...
Qui-Gon Glenn Posted October 19, 2009 Share Posted October 19, 2009 No apologies necessary. I am impressed that you figured out where you went wrong. Deciphering what is breaking what you are trying to do is at least 90% of KotOR modding. Kudos, and carry on! Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.