GetLocation

From Dragon Age Toolset Wiki
Revision as of 08:55, 13 November 2009 by Shade Sharphook (Talk | contribs)

Jump to: navigation, search

Returns the location of the specified object.

location GetLocation(
object oObject
);
Parameters:
oObject
the object to get the location of
Returns:

a valid location on success or invalid location on error

Source:

script.ldf

Description

This function returns the location of the specified object. If an invalid object is specified, then an invalid location will be returned.


Examples

To get the location of the current PC/Hero:
location currentLocation = GetLocation(GetHero());


See also

IsLocationValid