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

SetServerMap

(Difference between revisions)
Return to current revision
  1. -
    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>