This site has been archived and made available for preservation purposes. No edits can be made.

SetServerName

This is an old revision of this page, as edited 09-30-2011, 12:08 PM by . It may differ significantly from the current revision.
Sets the name of the server.

== Declaration ==
<code cpp>
VAULTSCRIPT void (*SetServerName)(std::string);
native SetServerName(name{});
</code>
== Parameters ==

'''name''' - the new server name

== Return value ==

None.

== Usage example (C++) ==

<code cpp>
std::string name = "My first server";
SetServerName(name);
</code>