Difference between revisions of "Bethesda Tutorial Dialogue"
Jump to navigation
Jump to search
→Scripting Dialogue
imported>ShadeMe (→Recording a Temp Track: Cleaned up the warning note a bit) |
imported>SLiesegang |
||
Line 129: | Line 129: | ||
In the End field, enter this script command: <br /> | In the End field, enter this script command: <br /> | ||
GetOwningQuest().SetStage(10)</code> | GetOwningQuest().SetStage(10)</code> | ||
The <code>SetStage(10)</code> portion, as you might expect, sets a quest's current stage to 10. The <code>GetOwningQuest()</code> part just says that the quest we care about is the one that contains this dialogue. (Sometimes you might want a line in your quest to muck around in a different quest, so we have to be specific.) | The <code>SetStage(10)</code> portion, as you might expect, sets a quest's current stage to 10. The <code>GetOwningQuest()</code> part just says that the quest we care about is the one that contains this dialogue. (Sometimes you might want a line in your quest to muck around in a different quest, so we have to be specific.) |