Difference between revisions of "GetCreaturePropertyType"

From Dragon Age Toolset Wiki
Jump to: navigation, search
m (1 revision: Importing auto-generated function articles)
(looks okay, removing tag)
Line 1: Line 1:
{{Generated}}
 
 
{{dafunction
 
{{dafunction
 
|name=GetCreaturePropertyType
 
|name=GetCreaturePropertyType
Line 18: Line 17:
 
<!-- This section contains the full description from the functions comments. Do not change unless you are confident these are incomplete or incorrect. -->
 
<!-- This section contains the full description from the functions comments. Do not change unless you are confident these are incomplete or incorrect. -->
 
Gets the type of property for a given property index.
 
Gets the type of property for a given property index.
The property types are: ATTRIBUTE, SIMPLE, DEPLETABLE and DERIVED.
+
 
The property type definitions are found at the top of this file (script.ldf).
+
The property types are: ATTRIBUTE, SIMPLE, DEPLETABLE and DERIVED. See [[PROPERTY TYPE*]]
  
 
<!-- == Remarks == -->
 
<!-- == Remarks == -->

Revision as of 19:03, 2 March 2010

Get the specified attribute from oCreature

int GetCreaturePropertyType(
object oCreature,
int nProperty
);
Parameters:
oCreature
the creature whose property type is requested
nProperty
the property (stat) we want to know about
Returns:

Returns the selected property's type.

Source:

script.ldf

Description

Gets the type of property for a given property index.

The property types are: ATTRIBUTE, SIMPLE, DEPLETABLE and DERIVED. See PROPERTY TYPE*