RemoveLinkedLocation - Location

From the Fallout4 CreationKit Wiki
Jump to navigation Jump to search

Member of: Location Script

Removes the link between this location and the given one under the given keyword.

Syntax[edit | edit source]

Function RemoveLinkedLocation(Location akLoc, Keyword akKeyword) native

Parameters[edit | edit source]

  • akLocation: The Location to remove link to.
  • akKeyword: The Keyword to remove link under.

Return Value[edit | edit source]

None

Examples[edit | edit source]

; Break link between the actor's home location and the player's so they no longer share crime data
ActorHomeLoc.RemoveLinkedLocation(PlayerHomeLoc, SharesCrimeKeyword);

See Also[edit | edit source]