SetPort
From Liberty Unleashed Wiki
Changes the port your server will be running on.
Syntax
bool SetPort( int port )
Arguments
- port - This is the port you want the server to be running on
Example
This example will change the server port when a player types '/setport 5192'.
function OnPlayerCommand( id, cmd, text ) { if ( cmd == "setport" ) { SetPort( text.tointeger() ); } }
Notes
The call onPlayerCommand was also used in the example. More info about this in the corresponding page.