OnServerLoaded: Difference between revisions

From Onset Developer Wiki
(Created page with "{{Info|Event|Server|1.5.2}} {{FuncDescription|Called when the server has fully started up.}} {{FuncSyntax|OnServerLoaded()}} {{FuncParameters}} {{FuncNoParam}} == Example...")
 
(No difference)

Latest revision as of 14:18, 12 November 2021

OnServerLoaded

Type: Event
Context: Server
Introduced: v1.5.2

Description

Called when the server has fully started up.

Syntax

OnServerLoaded()

Parameters

  • This function has no parameters.

Example

Server

AddEvent("OnServerLoaded", function()
    print("Server has fully loaded")
end)

See also