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

GetBase

This is an old revision of this page, as edited 09-29-2011, 06:28 PM by . It may differ significantly from the current revision.
Retrieves the base of an [[Object]].

== Declaration ==
<code cpp>
VAULTSCRIPT vaultmp::Base (*GetBase)(vaultmp::ID);
native GetBase(ID);
</code>
== Parameters ==

'''[[ID|vaultmp::ID]]''' - the ID of the [[Object]]

== Return value ==

Returns a [[Base|vaultmp::Base]] containing the base.

== Usage example (C++) ==

<code cpp>
vaultmp::Base baseID;
baseID = GetBase(object);
</code>