Squirrel/Functions/Server/SetServerName

From VC-MP Wiki

Jump to: navigation, search

Changes the name of the server.

Syntax

bool SetServerName( string name )

Arguments

  • name - The name you want to change the server to

Example

This example will change the name of the server when someone types '/c changename VC-MP Server'

function onPlayerCommand( player, cmd, text )
{
     if ( cmd == "changename" )
     {
          SetServerName( text );
     }
}

Notes

The call onPlayerCommand was also used in the example. More info about this in the corresponding page.

Related Functions

squirrel scripting