how to start a quest with a note

Post » Mon Nov 19, 2012 12:39 pm

Thanks to everyone who responded in this topic. I finally got my note quest to work!
User avatar
Dale Johnson
 
Posts: 3352
Joined: Fri Aug 10, 2007 5:24 am

Post » Mon Nov 19, 2012 12:29 am

I also wanted to mention the courier quest in the tutorial linked here is overly complicated and it never worked more than once for me and never again. There is a LOT easier way to do it.
User avatar
Terry
 
Posts: 3368
Joined: Mon Jul 09, 2007 1:21 am

Post » Mon Nov 19, 2012 1:04 am

Some of these examples are pretty expansive...

How about something more simple like this:
Spoiler

Scriptname DWRHVNIntroBookScript extends ObjectReference

Quest Property DWRHVNIntro Auto

Event OnRead()
DWRHVNIntro.SetStage(20)
EndEvent

I've had issues with this on the occasion where the next quest won't work due to bad aliases, but that has nothing to do with this script. Hopefully this simple example can help future searchers.
User avatar
Tanya
 
Posts: 3358
Joined: Fri Feb 16, 2007 6:01 am

Post » Sun Nov 18, 2012 11:00 pm

As http://www.gamesas.com/topic/1411355-how-to-start-a-quest-with-a-note/page__view__findpost__p__21542734, DefaultOnReadSetQuestStageNotAlias is already set up for this:
Spoiler
ScriptName DefaultOnReadSetQuestStageNotAlias Extends ObjectReference  Int Property myStage AutoQuest Property myQuest AutoEvent OnRead()	myQuest.SetStage(myStage)EndEvent
User avatar
kennedy
 
Posts: 3299
Joined: Mon Oct 16, 2006 1:53 am

Post » Mon Nov 19, 2012 9:27 am

Mine has no alias at all. Works great every time. Simple is better.
User avatar
JD bernal
 
Posts: 3450
Joined: Sun Sep 02, 2007 8:10 am

Post » Sun Nov 18, 2012 10:31 pm

If enough people are interested I can write up a tutorial on how I did my note quest to get around the dialog bug.
User avatar
Anna Kyselova
 
Posts: 3431
Joined: Sun Apr 01, 2007 9:42 am

Post » Mon Nov 19, 2012 5:28 am

Mine has no alias at all. Works great every time. Simple is better.
Agreed. DefaultOnReadSetQuestStageNotAlias does not pertain to aliases. DefaultOnReadSetQuestStage, however. does. All you had to do was glue the existing, prewritten script to your BOOK and set its properties accordingly. :shrug: One of the coolest things about Papyrus is that one script can be used a number of different ways according to how its properties are set up.
User avatar
Trevor Bostwick
 
Posts: 3393
Joined: Tue Sep 25, 2007 10:51 am

Post » Mon Nov 19, 2012 8:22 am

Mine was a little more complex than that but yes.
User avatar
Susan Elizabeth
 
Posts: 3420
Joined: Sat Oct 21, 2006 4:35 pm

Previous

Return to V - Skyrim