Difference between revisions of "GetM2DAFloat"

From Dragon Age Toolset Wiki
Jump to: navigation, search
m (checked)
 
(One intermediate revision by the same user not shown)
Line 28: Line 28:
 
Returns a 2DA integer based on the specified Row and Column values.
 
Returns a 2DA integer based on the specified Row and Column values.
  
<!-- == Remarks == -->
+
== Remarks ==
 
<!-- This section contains additional comments, observations and known issues. -->
 
<!-- This section contains additional comments, observations and known issues. -->
 +
Note that nRow is the value in the ID field of the row you wish to access.
  
 
<!-- == Examples == -->
 
<!-- == Examples == -->

Latest revision as of 13:57, 3 August 2010

Returns a 2DA value in float format.

float GetM2DAFloat(
int n2DA,
string sColumn,
int nRow,
string s2DA = ""
);
Parameters:
n2DA
The 2DA to access
sColumn
The name of the column to access
nRow
The 0 based index of the row to access
s2DA
(optional) if n2da is -1 and this is a valid resource, it will retrieve the 2da based on the name instead of the index. Note that this should be avoided when possible.
Returns:

Returns the float specified by the parameters.

Source:

script.ldf

Description

Returns a 2DA integer based on the specified Row and Column values.

Remarks

Note that nRow is the value in the ID field of the row you wish to access.