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

SetServerMap

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

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

'''map''' - the new map

== Return value ==

None.

== Usage example (C++) ==

<code cpp>
std::string map = "Vault 101";
SetServerMap(map);
</code>