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 04-06-2012, 03:24 PM by foxtacles (contribs). It may differ significantly from the current revision.
Sets the map of the server.

[top]Declaration

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

[top]Parameters

map - the new map

[top]Return value

None.

[top]Usage example (C++)

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