OnServerStop

From Vice City Multiplayer
Revision as of 09:20, 7 September 2014 by Honey (talk | contribs) (Created page with "== Syntax == <pre>onServerStop()</pre> ---- == Arguments == * ''None'' ---- == Example == The Following Example Will Print "The Server Is Closing" When The Server Is C...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
Caution icon
This wiki is using an old backup from 2020
Some information may be old/missing

Syntax

onServerStop()

Arguments

  • None


Example

The Following Example Will Print "The Server Is Closing" When The Server Is Closed!

function onServerStop()
{
print( "The Server Is Closing" );
}

Notes

Function print() was used in this example.The print() function outputs a formatted string on the console.