Quest Alias Tab

From the CreationKit Wiki
Jump to navigation Jump to search

Aliases[edit | edit source]

Aliases are names or tags assigned to actors, objects, and locations used by the quest. This allows various data elements (script, packages, dialogue) to be tagged to the alias rather than to a specific object in the world, allowing quests to specify their aliases at runtime instead of being predefined.

There are two kinds of aliases:

  • Reference Aliases (actors and objects)
  • Location Aliases

Aliases can be made dependent on other aliases, but because the aliases are filled in order, dependencies can only be to aliases higher in the list. For example: Questgiver is Victim's Brother; Treasure is Collector's Owned Item; etc. Aliases may be undefined by the quest (meaning they are defined by the Story Manager when an instance of the quest is created) or can be predefined in the editor.

Note that the aliases are not actually "filled" until the quest starts running - what is defined in the Quest Alias tab is how the alias will be filled when the quest starts.

For a more comprehensive overviews of aliases and how they are filled and used, see Radiant Story.

Quest Alias Tab[edit | edit source]

The Quest Alias Tab contains a list of aliases used by this quest. If the quest has a triggering Event (see Quest Data Tab), it will be listed at the top of the tab.

The list of aliases is an ordered list - when the quest starts, aliases are filled in order, and the order can matter in the case of aliases which are directly or indirectly (through conditions referring to other aliases) dependent on each other.

QuestAliasesWindow.png

Reference Aliases[edit | edit source]

A reference alias, which will be assigned to an Object Reference when the quest starts.

Reference Aliases can be applied to any reference (invalid data like packages and factions are ignored when the alias is assigned to a non-actor reference).

Reference Alias data:[edit | edit source]

  • Alias Name: used within the quest to refer to this alias. This is never displayed in the game. This also becomes part of the automatically generated quest stage fragment property name.
  • Display Name: (optional) Can be used to rename the reference when it is assigned to the alias. The dropdown is a list of Messages - the Message Title will replace the reference's name. Note that this change is permanent - the reference will retain the new Display Name even when it is removed from the alias.
  • Force Into Alias When Filled: (optional) The specified alias will also be filled with whatever fills this alias. This can be useful when you need to fill aliases in a "prioritized" manner (for example, pick NPC_A if alive, otherwise pick NPC_B).
    • Be aware that the last "source" alias that is filled will be the one that determines the final value for the specified "target" alias. The quest does not stop performing the force fill on the first match. In the previous example of picking NPC_A if alive, otherwise NPC_B, the alias for NPC_B should be first in the alias list, followed by the alias for NPC_A. If the NPC_B alias appears after the NPC_A alias and fills unconditionally, while the NPC_A alias fills conditionally, the value of the target alias will always be NPC_B. If they are reversed in order, then NPC_B will fill the target alias, but then NPC_A will overwrite the target alias' value if its conditions allow it to be filled.
  • Additional Valid Voice Types for Export: This is used in cases where the alias's Fill Type (see below) does not give the editor enough information to determine what voice types are valid (for example, Location Alias Reference). Select a form list of voice types which the editor uses to limit any dialogue assigned to this alias (on scenes or through the GetIsAliasRef condition).

Checkboxes:[edit | edit source]

  • Reserves Reference: Once a reference is assigned to a "Reserved" alias by a quest, the game will not fill any other alias with this reference unless:
    • A) The new alias is marked "Allow Reserved", or
    • B) The new alias is a "From External" fill type.
    • C) "Start Game Enabled" quests - all their aliases are treated as if "Allow Reserved" were checked (in order to avoid "race conditions" where the order that the "game start" quests actually fill their aliases matters). However, this may not be true for Start Game Enabled quests that are added to a saved game in progress. See the notes for the "Allow Reserved" checkbox.
  • Optional: If checked, the quest is not required to fill this in order to start. If unchecked, the quest will fail to start if it cannot fill this alias.
  • Essential: Make the actor in this alias Essential while in the alias.
  • Protected: Make the actor in this alias Protected while in the alias.
  • Quest Object: Make the reference in this alias a Quest Object while in the alias:
    • Cannot be dropped or sold by the player. EXCEPTION: Player can place Quest Objects into a container in an alias on the same quest which is ALSO marked as a Quest Object.
    • Any container containing a Quest Object cannot be cleaned up (deleted) by the game.
  • Allow Reuse in Quest: Normally, the game will not fill two aliases on the same quest with the same reference. If "Allow Reuse in Quest" is checked, the reference in this alias CAN be placed into another alias on this quest during the startup process.
Achtung.png This option must be checked on any alias that can be filled with a reference that has already been used, not on the first alias that uses the reference. This option is not required for all fill types. For example, a Unique Actor fill can target a reference that's already been used even if this option isn't checked.
  • Allow Dead: Allows this alias to be filled with a dead actor. If unchecked, the alias will not fill if there are no living actors that match the fill requirements.
  • Allow Disabled: Allows the alias to be filled with a disabled reference. If unchecked, the alias will not fill if there are no enabled references that match the fill requirements.
  • Allow Reserved: Allows the alias to be filled with a reference which is already in a Reserved alias on another quest. Checking this will resolve some issues with quests failing to initialize because aliases could not be filled.
    • This option is greyed out for Start Game Enabled quests, which consider their aliases to "Allow Reserved" by default when initialized at the beginning of a new game. However, ticking "Allow Reserved" may be required to avoid problems if the Start Game Enabled quest is added to a pre-existing save. To select this option on a Start Game Enabled quest:
      • Highlight the alias's line in the main alias list for the quest, then press CTRL-SHIFT-R to set this flag, OR
      • Temporarily disable the quest's Start Game Enabled status until you've ticked the box in the alias.
  • Allow Destroyed: Allows the alias to be filled with a Destroyed reference. (see SetDestroyed)
  • Uses Stored Text: Check this if the alias requires text replacement (for example, a book with text replacement tags, or an alias which uses text replacement in an alternate Display Name).
  • Stores Text: Check this if the alias is used in text replacement. (see Text Replacement)
  • Initially Disabled: If checked, the reference will be automatically disabled when it is assigned to this alias.
  • Clears Name When Removed: If checked, any "Display Name" assigned by this alias (see above) will be removed from the reference when it is removed from this alias. If unchecked, the Display Name will be permanently changed.

Fill Type:[edit | edit source]

There are 6 ways that an alias can be filled during the process of starting the quest.

Specific Reference
A specific reference is assigned to this alias.
Achtung.png

Note that this will potentially make that reference permanently persistent (always loaded in memory), even when this quest is not running (see [1]). This can eventually cause performance issues, particularly with actors.

Unique Actor
Pick a Unique actor to fill the alias. Note that this will only work if the specified actor's reference has been assigned a Persist Location. (see Object Reference)
Location Alias Reference
Pick a Location Alias from this quest (must be higher in the list than this alias), and pick a Location Ref Type. When the quest starts, the Story Manager will attempt to find a matching loc ref type from that location to fill this alias.
External Alias Reference
Select another Quest, and then a Reference Alias from that quest. When this quest starts, it will fill this alias with whatever is currently in the selected alias.
    • An alias from a Kill Actor Event can fill this reference.
Achtung.png If the selected quest isn't running, or the selected alias is empty, or if the alias reference is inside a container, this alias will fail to fill.
Create Reference to Object
When the quest starts, a reference will be created using the selected base object. The new reference can either be placed at the same location as another Reference Alias (usually a marker), or in the inventory of another Reference Alias (which must be a container of some kind).

Note: A reference that this fill option, must have the Reference that this reference will create and object to be higher in the Alias list.

Find Matching Reference
This option allows the Story Manager to find a reference from anywhere in the world (but only persistent references, or Unique actors, can be found this way outside the loaded area). The "Match Conditions" are used by the Story Manager to filter the potential choices. The optional checkboxes are as follows:
  • In Loaded Area: This limits the search to the loaded area (the player's current interior cell, or the 5x5 cells around the player in a worldspace). Useful when you want something near the player. You must set at least one Match Condition if you use this fill type. If you don't, your alias will instead be saved with an unset Specific Reference fill type. This would cause a non-optional alias to prevent the quest from starting at all.
  • Closest: Only available when searching "In Loaded Area", this will cause the Story Manager to prefer the closest matching reference. (Otherwise it picks randomly from all matching refs.)
  • From Event: This is only available for quests which are started from an Event through the Story Manager (see Quest Data Tab). Select the event data to run the conditions against.
  • Near Alias: Select another Reference Alias on this quest - the Story Manager will run the conditions only on any references linked to that alias's ref. (NOTE: Only linked refs with NO keyword are considered.)

Fill Type Conditions[edit | edit source]

The conditions in the Match Conditions list can be applied to any of the fill types (it is always optional), but how the conditions are used depends on the fill type.

These fill types run the condition on the thing you are filling the alias with:

  • Specific Reference
  • External Alias Reference
  • Find Matching Reference
    • If you use GetInCurrentLoc as a condition for Find Matching Reference, for major cities you may need to also restrict the search to exclude the worldspace associated with the city, if you specifically want to fill an alias with a reference in that location, but not have it filled with references from within the city as cities will be tied to the location as well. Example: 4 guards OUTSIDE of solitude you want to fill to an alias while using "GetInCurrentLoc: SolitudeLocation == 1.00". You also add "GetInWorldspace: SolitudeWorld == 0.00" to prevent guards INSIDE the city from filling the aliases.

These fill types run the conditions on THE PLAYER (because there is no loaded reference available to test):

  • Unique actor
  • Location Alias Reference
  • Create Reference

Alias Data:[edit | edit source]

  • Scripts: Select scripts to run on the alias. These must extend ReferenceAlias script type in order to work properly.
  • Factions: The aliased reference will be considered a member of the specified factions while in the alias.
Achtung.png The faction will be removed from the base actor when the alias is cleared (including when the quest is stopped) or forced to point at a different reference, even if it appears in the faction list for another reference alias targeting the same actor that is still filled. The behavior is as though RemoveFromFaction is called on the reference as it is leaving the alias.

Example: 2 quests, named Quest1 and Quest2, are both started, and both have aliases that are filled with the same Actor. Both aliases add the Actor to ThievesGuildFaction. Quest1 is stopped, but Quest2 continues running. The Actor will no longer be in ThievesGuildFaction, even though Quest2 is still running.

  • Spells: The specified spells will be added to the reference that fills the alias, and removed when the reference leaves the alias. Note that rightclicking and using the Add menu in this box will allow you to add only Shouts, but if you wish to add other kinds of spell, you can drag them into this box from the Object Window.
  • Keywords: The aliased reference will be considered to have the specified keywords while in the alias.
  • Inventory: The specified items are added to the reference's inventory when the reference is placed into the alias.
Achtung.png This is permanent - these items are NOT removed when the reference leaves the alias.
  • Package Data: The list of packages is considered an additional "package stack" that sits on top of the aliased actor's base package stack. If an actor is in multiple aliases, the alias packages stack in quest priority order.
  • Override Package Lists: Anything specified here replaces the matching "override" package list from the base actor. (See Interrupt Override Packages.)

Location Aliases[edit | edit source]

Location aliases are assigned to Locations when the quest starts.

Location Alias Data[edit | edit source]

  • Alias Name: used within the quest to refer to this alias. This is never displayed in the game.
  • Force Into Alias When Filled: (optional) The specified alias will also be filled with whatever fills this alias.

Checkboxes:[edit | edit source]

  • Reserves Location: Similar to Reference Aliases, once a Location is assigned to a Reserved alias, the Story Manager will not assign it to any other aliases (unless they are marked "Allow Reserved").
  • Optional: If checked, this alias can be unfilled and the quest will still start. If unchecked, failure to fill this alias will cause the quest to fail to start.
  • Displays Text: Check this if the alias is used in text replacement.
  • Allow Reuse in Quest: Normally, the Story Manager will not fill two aliases on the same quest with the same location. If "Allow Reuse in Quest" is checked, the location in this alias CAN be placed into another alias on this quest during the startup process.
  • Allow Reserved: Allows locations that are in Reserved aliases on other quests to be picked for this alias.
  • Allow Cleared: If unchecked, "Cleared" Locations will never be selected for this alias. If checked, "Cleared" Locations can be checked, but uncleared locations will be preferred if available.

Fill Type:[edit | edit source]

There are 4 ways that a location alias can be filled during the process of starting the quest.

Specific Location
A specific Location is assigned to this alias.
Reference Alias Location
Select a Reference Alias on this quest (must be higher in the alias list); fill with that reference's current location (optionally use a keyword to select a desired parent location of the current location - no keyword means the current location).
External Alias Location
Select another Quest, and then a Location Alias from that quest. When this quest starts, it will fill this alias with whatever is currently in the selected alias. (If the selected quest isn't running, or the selected alias is empty, this alias will fail to fill.)
Find Matching Location
This option allows the Story Manager to find a Location that matches specified conditions. If "From Event" is unchecked, a matching location is randomly selected from all locations in the game. If "From Event" is checked, the location on the specified event data is checked to see if it passes the conditions - if not, this alias fails to fill.


Notes[edit | edit source]

  • A Location Alias will not fill with a location that is cleared, unless the “allow cleared” flag is set (and even then non-cleared locations are preferred)
    • Note: Forced Location Aliases ignore this.
  • Condition function: LocationHasRefType returns false if the ref type is dead or disabled.
  • Due to the reference window's large height it may not fit all resolutions. To activate the OK button (and save your changes) select the first field (Alias Name) and press Shift+TAB twice. Then press enter to confirm and close the window.
  • To add the Player as a Reference, select Specific Reference, click Select Forced Reference, pick (any) for cell and find the Player reference
  • Shortcut keys to change flags on multiple aliases at the same time:
CTL+SHIFT+R = toggle the Allow Reserved Flag
CTL+SHIFT+D = toggle the Allow Disabled Flag
CTL+SHIFT+O = toggle the Optional Flag


Language: English