Difference between revisions of "Ability AdjustDuration"

From Dragon Age Toolset Wiki
Jump to: navigation, search
(Created page with '{{dafunction |name = Ability_AdjustDuration |brief = Good place to add spell extension talents |param1type = object |param1name = oThis |param1desc = {{undocumented}} |param1defa...')
 
m (Fixing source)
 
Line 1: Line 1:
 
{{dafunction
 
{{dafunction
|name = Ability_AdjustDuration
+
|name         = Ability_AdjustDuration
|brief = Good place to add spell extension talents
+
|brief         = Good place to add spell extension talents
|param1type = object
+
|param1type   = object
|param1name = oThis
+
|param1name   = oThis
|param1desc = {{undocumented}}
+
|param1desc   = {{undocumented}}
 
|param1default =
 
|param1default =
|param2type = float
+
|param2type   = float
|param2name = fDuration
+
|param2name   = fDuration
|param2desc = {{undocumented}}
+
|param2desc   = {{undocumented}}
 
|param2default =
 
|param2default =
|returntype = float
+
|returntype   = float
|returndesc =  
+
|returndesc   =  
|sourcefile = ability_h
+
|sourcefile   = ability_h
|sourcemodule = Core Resources
+
|sourcemodule = Core Game Resources
 
}}
 
}}
 
 
<!-- == 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. -->
Line 21: Line 20:
 
== Remarks ==
 
== Remarks ==
 
<!-- This section contains additional comments, observations and known issues. -->
 
<!-- This section contains additional comments, observations and known issues. -->
 
+
This function currently does nothing except return <code>fDuration</code>.
This function currently does nothing except return fDuration.
+
  
 
<!-- == 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. -->

Latest revision as of 13:37, 1 March 2012

Good place to add spell extension talents

float Ability_AdjustDuration(
object oThis,
float fDuration
);
Parameters:
oThis
[Undocumented]
fDuration
[Undocumented]
Returns:

[Undocumented]

Source:

Core Game Resources.ability_h

Remarks

This function currently does nothing except return fDuration.