GetLocation

From Dragon Age Toolset Wiki
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

void main()
{     
    // get a location from a waypoint with a unique tag
    object oWaypoint = GetObjectByTag("wp_werewolf_spawn"); 
    location lWaypoint = GetLocation(oWaypoint);
 
    // create a werewolf object at the location
    object oWerewolf = CreateObject(OBJECT_TYPE_CREATURE, R"werewolf_core.utc", lWaypoint);
}

See also

IsLocationValid