Difference between revisions of "GetActorLevelingData"

From the Fallout3 GECK Wiki
Jump to navigation Jump to search
imported>Jazzisparis
imported>Jazzisparis
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{Function
{{Function
  |origin = NVSE
  |origin = JIP
  |summary = Returns the specified leveling data value of an actor. The value returned is determined by dataType (see below).
  |summary = Returns the specified leveling data value of an actor. The value returned is determined by <i>dataType</i>:
<pre>0&#09;Fixed Level/Level Mult.
1&#09;Calc. Min.
2&#09;Calc. Max.</pre>
  |name = GetActorLevelingData
  |name = GetActorLevelingData
  |returnType = dataValue:float
  |returnType = dataValue:float
Line 19: Line 22:
This will return Craig Boone's calculated minimum level.
This will return Craig Boone's calculated minimum level.
}}
}}
==Notes==
Valid values for dataType:
*0 - Fixed Level/Level Mult.
*1 - Calc. Min.
*2 - Calc. Max.
==See Also==
==See Also==
*[[SetActorLevelingData]]
[[Category:Functions_(JIP)]]
[[Category:Functions_(JIP)]]
[[Category:Actor Functions (JIP)]]

Latest revision as of 14:49, 30 March 2015

< [[::Category:Functions|Category:Functions]]

A function added by the JIP NVSE Plugin.

Description

Returns the specified leveling data value of an actor. The value returned is determined by dataType:

0	Fixed Level/Level Mult.
1	Calc. Min.
2	Calc. Max.

Syntax

[help]
(dataValue:float) reference.GetActorLevelingData dataType:int baseForm:ref

Example

CraigBooneRef.GetActorLevelingData 0

This will return Craig Boone's base fixed level/level multiplier.

GetActorLevelingData 1 CraigBoone

This will return Craig Boone's calculated minimum level.

See Also