Actor

From the Fallout4 CreationKit Wiki
Revision as of 17:38, 12 June 2016 by imported>Qazaaq
Jump to navigation Jump to search

Papyrus: ActorBase Script, Actor Script

An Actor is a type of object that runs AI routines. Actors move in the world, can engage in combat, and can interact with other objects such as doors, containers, activators (levers, buttons, etc.), and other actors.

Actor Object.PNG

Editor Dialog

  • ID: The editor ID which is used by the Creation Kit.
  • Name: The name as it will appear in-game.
  • Short Name: Optionally, a shorter name used in the HUD and for text replacement fields that specify the Short Name. If blank, the full Name is used.
  • Alt Activation Text:
  • Flags
    • Is CharGen Face Preset: If checked, the face created for this actor is available for the player to choose in Character Gen.
    • Essential: Essential actors cannot be killed. When they reach 0 health, they go into a special "bleedout" state and recover over time.
    • Protected: Protected actors are treated as essential to all damage except that delivered by the player. The player is the only one allowed to kill a Protected actor.
    • Respawn: References of this actor in the world will resurrect and reset when their cell is reset.
    • Unique: Only one reference of this actor is allowed to exist. Unique actors mainly exist so that the Story Manager can find them even when they are not currently persisting.
    • Doesn't affect stealth meter: When this actor detects the player, the stealth meter does not react. Typically used for non-hostile actors such as animals and critters.
    • Diffuse alpha test:
    • Summonable: This actor can be associated with a Summon Actor magic effect.
    • Is Ghost: This actor is immune to all damage, and all weapons pass through them without playing hit effects or triggering hit events.
    • Invulnerable: This actor is immune to all damage, although weapons and projectiles appear to hit them normally.
    • Doesnt Bleed: When the actor is struck by a weapon, blood effects are disabled.
    • Simple Actor: Disables face animations and morphing. Also disables the Story Manager's Death and Assault events.
    • No Activation/Hellos:
  • Destructible Object:
  • Forced Ref Loc Type:
  • Scripts: Scripts can be attached here, and their properties edited.
  • Native Terminal:
  • Preview Transform:
  • Templated From:

Dialog Tabs

  • Traits Tab: The Actor Form's Traits Tab sets the Actor's basic race and voice data.
  • Stats Tab: Governs the Actor's Attributes, Skills, Level, and Class.
  • Templates Tab:
  • Factions Tab: The Actor Factions Tab displays the Factions that an Actor belongs to, and their rank within the Faction.
  • Relationships Tab: The Actor Relationships Tab lets you specify that an Actor has a Relationship with another Actor.
  • Keywords Tab:
  • AI Data Tab: The Actor AI Data Tab determines the Actor's basic approach to combat.
  • AI Packages Tab: The Actor AI Packages Tab lists all of the Actor's base packages.
  • Inventory Tab: The Actor Inventory Tab lists all of the Items that the actor is carrying or wearing by default.
  • SpellList Tab:
  • Sounds Tab:
  • Animation Tab: The Animation Tab lists all of the animations available to the Actor.
  • Attack Data Tab: The Actor Attack Data Tab displays the raw properties associated with animation attack events, and allows you to manually override their default values if desired.
  • Character Gen Parts Tab: When working with a non-templated humanoid Actor, the Character Gen Parts Tab allows you to adjust their appearance.
  • Character Gen Morphs Tab:

Render Panel

  • Preview Allows you to view a preview of the Actor in the Preview panel on the right side of the Actor form.
    • Full:
    • Head: Allows you to preview changes to the Actor's face morphs.

See Also