Difference between revisions of "StartQuest"

From the Fallout3 GECK Wiki
Jump to navigation Jump to search
imported>Wkilleen
 
imported>Cipscis
(Undo revision 16705 by Fallout gamer (Talk))
 
(10 intermediate revisions by 5 users not shown)
Line 1: Line 1:
Link to TES4 Construction Set Wiki: [http://cs.elderscrolls.com/constwiki/index.php/StartQuest StartQuest].
{{Function
|origin = GECK1
|summary = Starts the quest, which means:
* Any attached dialogue will be enabled.
* The quest script, if any, will begin running.  
|arguments = {{FunctionArgument
    |Name = questname
    |Type = EditorID
  }}
}}
==Examples==
StartQuest SQ09
Starts the quest with the EditorID of SQ09


=='''See Also'''==
==Notes==
[[StopQuest]]
* Avoid calling this function to start a quest which is already running. If there is a script attached to the quest, any variables will be reset to 0 when the saved game is reloaded.
 
==See Also==
*[[StopQuest]]
*[[GetQuestRunning]]
*Link to TES4 Construction Set Wiki: [http://cs.elderscrolls.com/constwiki/index.php/StartQuest StartQuest].


[[Category:Functions]]
[[Category:Functions]]
[[Category:Functions (GECK 1.1)]]
[[Category:Quest Functions]]
[[Category:Quest Functions]]
[[Category:Quest Functions (GECK 1.1)]]

Latest revision as of 23:12, 23 July 2010

< [[::Category:Functions|Category:Functions]]

A function included in the GECK version 1.1.0.36.

Description

Starts the quest, which means:

  • Any attached dialogue will be enabled.
  • The quest script, if any, will begin running.

Syntax

[help]
StartQuest questname:EditorID

Examples

StartQuest SQ09 

Starts the quest with the EditorID of SQ09

Notes

  • Avoid calling this function to start a quest which is already running. If there is a script attached to the quest, any variables will be reset to 0 when the saved game is reloaded.

See Also