OnServerStart
		
		
		
		Jump to navigation
		Jump to search
		

This wiki is using an old backup from 2020
Some information may be old/missing
Syntax
onServerStart()Example
The following example will print "Hello World!" when the server is started.
function onServerStart() {
  print( "Hello World!" );
}Notes
Function print() was used in this example.The print() function outputs a formatted string on the console.