Loading Events

Events run when a script is loaded.

The core library contains two script loading events.

Any Load

on any [script] load
on any script load:
    trigger:
        print event-name + " was loaded"

This is run whenever any script is loaded. This may be the current script or a different script. During initial start-up, scripts will not receive load events for other scripts loaded before them.

This is designed to catch the loading of 'lazy' scripts loaded while the program is already running.

Event ValueTypeDescription

name

The name of the loaded script.

path

The full path of the loaded script in skript/path/script format.

Load

on [script] load
on script load:
    trigger:
        print "this script was loaded"

This is run when this script is loaded. Other scripts will not receive this event.

This is designed to be a start-up entry-point for your program, equivalent to Java's <clinit>.

Event ValueTypeDescription

name

The name of the loaded script.

path

The full path of the loaded script in skript/path/script format.

Last updated