Jump to content

Quest not starting


JoRakhar

Recommended Posts

I changed the MQ so you no longer get the objective to go to Megaton upon leaving Vault 101. I also removed the quest from triggering if you read Moriarty's terminal or kill him.

 

My goal is to have Quest Stage 40 "Find Galaxy News Radio" trigger if you pick a note up off the ground.

 

Thought maybe doing something along the lines of:

 

scn MQ01DirectionsScript

begin OnAdd player

if (player.getHasNote MQ01Directions == 1)
setStage MQ01 40
endif

end

 

would suffice but apparently it's not that simple heh.

 

I'm also going to put activators around the object to run when it gets picked up but if there are any other ways, I'm interested in knowing what they are.

Link to comment
Share on other sites

Hmm, still no dice.

 

Seems like it'd be a pretty easy thing to do, heh.

 

Guessing it's going to be more than creating a script to execute when I pick up the note.

 

I originally thought putting the gethasnote line into the result script for stage 40 would work but no dice. :wacko:

Link to comment
Share on other sites

well I have no clue why it isn't working, it should.

 

but you are messing with an already existing quest/script, so go look if there's a condition set for stage 40 which is not fullfilled when you pick up the note, that might just be why the script appears to be not working.

 

okay, just pulled it up, and the only condition i could find is:

if ( GetStage MQ03 < 10 )

 

MQ03 being scientific pursuits, so see if you have already started that quest

Link to comment
Share on other sites

This is a brand new character from the vault exit autosave. I haven't done anything yet.

 

The one thing I haven't done is remove any of the references to the original quest triggers in the MQ01Script, since I disabled them directly.

 

Also I did set the note's owner quest to MQ01 so I'm stumped heh.

Link to comment
Share on other sites

Yeah, I've got a similar issue in a mod I'm doing, but I'm trying to make it happen OnActivate.

 

Anyways, what you probably want to do is find the overall MQ01 Quest Script and add your script stuff in there.

 

------------------

 

scn [whateverthemq1questscriptiscalled]

 

begin gamemode

if player.getHasNote MQ01Directions == 1

setStage MQ01 40

endif

end

 

------------------

 

Hope that helps.

Link to comment
Share on other sites

  • Recently Browsing   0 members

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