Difference between revisions of "GetClassTraitNumeric"

From the Fallout3 GECK Wiki
Jump to navigation Jump to search
imported>Jazzisparis
(Created page with "{{Function |origin = JIP |summary = Returns the value of a class' numeric trait (determined by <i>traitID</i>). |name = GetClassTraitNumeric |returnType = traitValue:int...")
 
imported>Jazzisparis
 
(2 intermediate revisions by the same user not shown)
Line 13: Line 13:
   |Value = 0-10
   |Value = 0-10
   }}
   }}
==Explosion Numeric Trait IDs==
==Class Numeric Trait IDs==
<pre>0&#09;Tag Skill #1
<pre>0&#09;Tag Skill #1
1&#09;Tag Skill #2
1&#09;Tag Skill #2
Line 30: Line 30:
}}
}}
==See Also==
==See Also==
*[[SetClassTraitNumeric]]
*[[GetClassFlag]]
*[[SetClassFlag]]
[[Category:Functions_(JIP)]]
[[Category:Functions_(JIP)]]
[[Category:Class Functions (JIP)]]

Latest revision as of 13:55, 30 March 2015

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

A function added by the JIP NVSE Plugin.

Description

Returns the value of a class' numeric trait (determined by traitID).

Syntax

[help]
(traitValue:int) GetClassTraitNumeric class:ref traitID:int{0-10}

Class Numeric Trait IDs

0	Tag Skill #1
1	Tag Skill #2
2	Tag Skill #3
3	Tag Skill #4
4	Base Strength
5	Base Perception
6	Base Endurance
7	Base Charisma
8	Base Intelligence
9	Base Agility
10	Base Luck
  • For Tag Skill values, see here.

Example

GetClassTraitNumeric NCRRanger 2

Will return the Tag Skill #3 of NCRRanger.

See Also