Difference between revisions of "GetEffectInteger"

From Dragon Age Toolset Wiki
Jump to: navigation, search
(Generated by Sunjammer's Dragon Age Script Paser)
 
m (Correcting category)
 
(2 intermediate revisions by one other user not shown)
Line 1: Line 1:
{{Generated with errors}}
 
 
{{dafunction
 
{{dafunction
 
|name=GetEffectInteger
 
|name=GetEffectInteger
Line 5: Line 4:
 
|param1type=effect
 
|param1type=effect
 
|param1name=efEffect
 
|param1name=efEffect
|param1desc=
+
|param1desc=The effect to query
 
|param2type=int
 
|param2type=int
 
|param2name=nIndex
 
|param2name=nIndex
Line 14: Line 13:
 
|sourcemodule=
 
|sourcemodule=
 
}}
 
}}
 
 
== Description ==
 
== Description ==
 
<!-- 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 specified integer on the effect
+
Gets the specified integer on the effect.
 
+
 
<!-- == Remarks == -->
 
<!-- == Remarks == -->
 
<!-- This section contains additional comments, observations and known issues. -->
 
<!-- This section contains additional comments, observations and known issues. -->
 
 
<!-- == Examples == -->
 
<!-- == Examples == -->
 
<!-- This section contains examples transcluded from the snippet library. -->
 
<!-- This section contains examples transcluded from the snippet library. -->
 
 
== See also ==
 
== See also ==
 
<!-- This section contains links to articles, functions or constant groups. -->
 
<!-- This section contains links to articles, functions or constant groups. -->
 
[[SetEffectInteger]]
 
[[SetEffectInteger]]
[[Category: Effect access functions]]
+
 
 +
[[Category:Effect functions]]

Latest revision as of 19:42, 10 March 2012

Gets the specified integer on the effect

int GetEffectInteger(
effect efEffect,
int nIndex
);
Parameters:
efEffect
The effect to query
nIndex
The index of the integer to get
Returns:

Returns the specified integer, returns -1 on error.

Source:

script.ldf

Description

Gets the specified integer on the effect.

See also

SetEffectInteger