Editing Quest

Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.

Latest revision Your text
Line 1: Line 1:
'''Type:''' <code>QUST</code> [[File:Quest EditorIcon.png]]
'''Type:''' <code>QUST</code>
<BR/>
<BR/>
'''Papyrus:''' [[Quest Script]]
'''Papyrus:''' [[Quest Script]]
Line 7: Line 7:
== Editor Dialog ==
== Editor Dialog ==
=== Quest Data ===
=== Quest Data ===
[[File:Quest Data Editor.png|thumb|right|800px]]
[[File:Quest Data Editor.png]]
*{{Template:Editor:Property:ID}}
*'''ID:''' The editor ID which is used by the Creation Kit.
*'''Quest Name:''' Display name of your quest. This is the in game name the player sees.
*'''Quest Name:'''
*'''Priority:''' Dialogue is assigned by priority. The dialogue for higher priority quests will take precedence over the dialogue of lower priority quests, in cases where the dialogue "stacks" (shared topic types, or blocking/exclusive branches). Aliases are also affected by priority. A quest with low priority will give way to another quest's aliases with higher priority. The higher the number, the higher the quest priority.
*'''Priority:'''
*'''Event:''' Any quest which specifies an Event can only be started by the Story Manager ("Start Game Enabled" will be greyed out). Quests which have no Event are started "manually", by calling Start, SetStage, or SetObjectiveDisplayed.
*'''Event:'''
**'''Start Game Enabled:''' Start the quest as soon as possible. Un-ticking this option saves on memory and helps minimize your quest's memory imprint on the game. Your quest will start running when the Start, SetStage, or SetObjectiveDisplayed commands are used.
**'''Start Game Enabled:'''
**'''Run Once: ''' Prevents the Quest from being reset when it starts. If a "Start Game Enabled" quest is not also flagged to "Run Once", its OnInit event will fire twice.
**'''Run Once:'''
For clarity, all forms of resetting including Reset() will not work when this is checked.
**'''Warn on alias fill failure:'''
**'''Warn on alias fill failure:''' Prints out alias fill errors to Papyrus Log. Useful when debugging quest alias order. If aliases fail to fill, the entire quest will fail and not function properly. Stages won't set, actors won't speak their dialogue, fragments don't run and objectives don't display.
**'''Allow repeated stages:'''
**'''Allow repeated stages:''' If this box is checked, a journal entry will be displayed (and quest stage results run) every time SetStage is called for a particular stage number. Otherwise, SetStage has no effect after it is called the first time for any stage on a running quest.
**'''Add Idle Topic To Hello:'''
**'''Add Idle Topic To Hello:'''
*'''Quest Completion XP: ''' Choose the amount of XP you want given to the player upon completing your quest. '''
*'''Quest Completion XP:'''
*'''Type: ''' Type of the Quest. Influences the presentation elements of your quest. Miscellaneous quests go under the Misc section in the Pipboy and do not display objective descriptions and summaries.
*'''Type:'''
*'''Object Window Filter: ''' The in CK "Folder" you'd like your quest to be categorized under. For example, Brotherhood of Steel\, Institute\, My Quest Category\, etc.
*'''Object Window Filter:'''
*'''SWF File: ''' The special Flash swf to display upon quest completion. Most quests have special animation art associated with them.
*'''SWF File:'''
*'''Location:'''  
*'''Location:'''
*'''Quest Group:''' Quest collection this quest belongs to.
*'''Quest Group:'''
*'''Recompile All Papyrus Scripts: ''' Batch re-compiles all fragments associated with this quest.
*'''Recompile All Papyrus Scripts:'''
*'''Export Dialogue Specific Voices:''' Batch export all dialogue associated with a specific Voicetype.
*'''Export Dialogue Specific Voices:'''
*'''Export Quest Dialogue:''' Batch export all of the quest's dialogue to a text file. The file can be located in Fallout 4's main directory.
*'''Export Quest Dialogue:'''
*'''Exclude from dialogue export:''' Marks this quest to be ignored from batch exporting dialogue from the Character> Export Dialogue menu selection.
*'''Exclude from dialogue export:'''
*'''Calculate Voice Assets:''' Evaluates (using the same process as the export) how many actual audio files are used by the quest. If this is larger than the Lines of Dialogue field, it means that some lines can be said by multiple voice types. If it is smaller, it means that some lines cannot be said by any voice types.
*'''Calculate Voice Assets:'''
*'''Out of Date Dialogue:''' List of dialogue topics marked as "outdated".
*'''Out of Date Dialogue:'''
*'''Lines of dialog:'''
*'''Lines of dialog:'''
*'''Text Display Globals:'''
*'''Text Display Globals:'''
*'''Quest Dialogue Conditions:''' Apply a condition to the entirety of a quest's dialogue. For example, if you set a GetIsID condition here, all dialogues within your quest would have to abide by this condition, otherwise they will not show up.
*'''Quest Dialogue Conditions:'''
{{ClearFloats}}


=== Quest Stages ===
=== Quest Stages ===
[[File:Quest Stages Editor.png|thumb|right|800px]]
[[File:Quest Stages Editor.png]]
*'''Stage Items'''
*'''Stage Items'''
**'''Index:''' Each stage has an index number from 0 to 65535. It is recommended to space out stage indexes by at least 5 or 10 units in order to leave room for iteration further down the line. Useful when wanting to add new stages afterward. 
**'''Index:'''
**'''Log:''' Does this stage have a log associated with it?
**'''Log:'''  
**'''Notes:''' Displays a snippet of designer notes attached to this stage.
**'''Notes:'''
**'''Run on start?:'''  
**'''Run on start?:'''
**'''Run on stop?:'''
**'''Run on stop?:'''
**'''Keep Instance Data From Here On:''' Preserves text replacement data across save games.
**'''Keep Instance Data From Here On:'''
*'''Log Entries''' The description for your quest's objectives which is displayed in the Pipboy. If a stage item has log entry text, that text becomes the quest summary in the player's quest list. Only the most recent log entry is displayed to the player. You can have multiple entries for a single stage, however elect to have one display at any time, and that can be controlled by setting conditions on each entry.
*'''Log Entries'''
**'''Log Entry:''' The individual log entries.
**'''Log Entry:'''
**'''Designer Notes:''' CK only notes for other designers to read. Has no effect on actual game. Useful commenting and organizational tool, especially for collaborative efforts.
**'''Designer Notes:'''
**'''Complete Quest:''' If this box is checked, setting this stage will trigger the "Quest Completed" message, and move the quest from the active to completed portions of the player's quest list. Note that a completed quest can still be running.
**'''Complete Quest:'''
**'''Fail Quest:''' The same as Complete Quest, but triggers the "Quest Failed" message.
**'''Fail Quest:'''
**'''Next quest:''' Not used. The next quest to trigger after completing current quest. Instead, most quests trigger using case specific papyrus code, Quest.Start() or SetStage instead.
**'''Next quest:'''
**'''Start scene:'''  
**'''Start scene:'''
**'''Conditions''' Conditions to set for the entire stage.
**'''Conditions'''
**'''Papyrus Fragment''' The [[Papyrus]] fragment editor is for [[Quest Stage Fragments]]. These are code snippets that run when moving to this stage. A common use for this is SetObjectiveDisplayed() and SetObjectiveCompleted() to give the player new objectives, and complete others. The '''advanced''' tab allows the renaming and assignment of a unique namespace for your fragment.
**'''Papyrus Fragment''' The [[Papyrus]] fragment editor is for [[Quest Stage Fragments]].
 
Renaming fragments allows for setting unique prefixes or changing the naming of a fragment. Namespaces are sub folders within which your fragments will be output by the CK. The combination of a unique prefix and namespace for your fragments allows for more effective asset tracking.
{{ClearFloats}}


=== Quest Objectives ===
=== Quest Objectives ===
[[File:Quest Objectives Editor.png|thumb|right|800px]]
[[File:Quest Objectives Editor.png]]
*'''Objectives:''' Each objective has an ''Objective Index'', and ''Display Text''. By right clicking the window, you can add or delete an objective.
*'''Objectives:''' Each objective has an ''Objective Index'', and ''Display Text''. By right clicking the window, you can add or delete an objective.
*'''Quest Objective Data'''
*'''Quest Objective Data'''
Line 73: Line 68:
***'''Use Straight Line Pathing:'''
***'''Use Straight Line Pathing:'''
***'''Conditions:'''
***'''Conditions:'''
{{ClearFloats}}


=== Quest Aliases ===
=== Quest Aliases ===
Line 79: Line 73:
=== Command Dialogue ===
=== Command Dialogue ===
=== Scenes ===
=== Scenes ===
Scenes are used to create dialogue for any actor in the game, including the player. Scenes consist of an ordered collection of Topic Info forms.
Topic Info:
Topic infos consist of a few key components, namely the text the actor will say, the sound file name and location information, and the facial animation selection.
Facial animations are used to give a facial expression to an actor while they speak a line. There are many facial animations to choose from under the drop down list. For a visual reference of the different facial animation options, see this [https://www.youtube.com/watch?v=poksb4_sIQM&feature=youtu.be video]. (Credit to Sirick)
=== Scene Collections ===
=== Scene Collections ===
=== Combat ===
=== Combat ===

Please note that all contributions to the Fallout4 CreationKit Wiki are considered to be released under the Creative Commons Attribution-ShareAlike (see FalloutCK:Copyrights for details). If you do not want your writing to be edited mercilessly and redistributed at will, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource. Do not submit copyrighted work without permission!

Cancel Editing help (opens in new window)

Templates used on this page: