Background for Starfield
Member of the Location script

Description

Wiki Description

Event called when the Location is loaded.

Documentation Comment

Event sent when a location is loaded


Caveats

CK Wiki - Notes

Locations can't actually be scripted to get this event on a location you must register for it remotely.


Examples

Event Location.OnLocationLoaded(Location akSender)
  ; Remote event registered for earlier
  Debug.Trace(akSender + " has loaded!")
endEvent

Auto-Generated Example

Scriptname MyCoolScript extends Location

event OnLocationLoaded()
    Debug.trace("Event received - OnLocationLoaded")
endEvent

Related Pages


Additional References

View this event’s page on the Fallout 4 Creation Kit Wiki

Some data provided by the Fallout 4 Creation Kit Wiki. Licensed under the Creative Commons Attribution-Share Alike 4.0 license.