Scripting/Squirrel/Client Events/Script::ScriptLoad
This wiki is using an old backup from 2020
Some information may be old/missing
Syntax
Script::ScriptLoad()
Arguments
- None
Example
The following example will print "Hello World!" when the server is started.
function Script::ScriptLoad()
{
Console.Print("Hello World!");
}
Notes
Function Console.Print was used in this example. The Console.Print function outputs a string on the console.