OnPackageStart
From Onset Developer Wiki
Description
Package was started and its scripts loaded. Use this event to initialize your script. For instance connecting to a database.
Syntax
OnPackageStart()
Example
local function OnPackageStart()
print(GetPackageName().." started")
end
AddEvent("OnPackageStart", OnPackageStart)