Jump to content

Travel


cdo947214

Recommended Posts

I created an NPC and put her in Vault 101. I gave her a forcegreet dialogue that takes place right before you go into the classroom to take the GOAT. Now, I want her to travel to Rivet City. Do I put that in the "result script (end)" under topics, or do I create an AI package? How do I phrase it?

 

Thanks.

Link to comment
Share on other sites

There are a couple of ways I would try, but something like below should work.

Have your own Quest with Quest Script that says something like below. When the Player completes the quest Future Imperfect (GOAT) your NPC will move to a location of your design. You could have the NPC just stand around outside the classroom while the Player goes in to talk to Mr. Brotch or have the NPC run a package walking towards the Vault exit. In either case once the GOAT is finished and Future Imperfect ends your NPC will move and the Player will never notice.

I would not have them use a Travel Package for such a great distance because way to many things can go wrong between the start and finish point.

scn MyQuestScriptName
short MoveOnce

Begin GameMode
if GetQuestCompleted CG03 == 1 && MoveOnce == 0
	YourNPCref.moveto RivetCityMARKER ;This can be a current Marker or one you make yourself.
	set MoveOnce to 1
	endif
End
Link to comment
Share on other sites

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...