This wiki is a copy of the original Oblivion CS wiki created and maintained by the UESP.net. See CSwiki:Copy Notice for more info.

Difference between revisions of "GetPCMiscStat"

From the Oblivion ConstructionSet Wiki
Jump to navigation Jump to search
imported>Haama
(Category links)
imported>SpookyFX
 
(3 intermediate revisions by 3 users not shown)
Line 12: Line 12:


   0 DAYS IN PRISON
   0 DAYS IN PRISON
   1 DAYS PASSED
   1 DAYS PASSED (Not working, use global GameDaysPassed instead.)
   2 SKILL INCREASES
   2 SKILL INCREASES
   3 TRAINING SESSIONS
   3 TRAINING SESSIONS
Line 47: Line 47:




Note that entering values higher than 33 and lower than 0 will return numbers (in the console, at least). As these numbers are almost uniformly large integers, it appears that GetPCMiscStat n simply reads the n<sup>th</sup> four-byte cluster after a certain point and displays that value as an unsigned long int.
Note that entering values higher than 33 and lower than 0 will return out-of-bounds data. GetPCMiscStat n simply reads the n<sup>th</sup> four-byte cluster after a certain point and displays that value as an unsigned long int formatted as a float with two decimal points.


==See Also==
==See Also==
Line 54: Line 54:


[[Category: Functions]]
[[Category: Functions]]
[[Category:Functions (CS)]]
[[Category: Functions (CS 1.0)]]
[[Category: Functions (CS 1.0)]]
[[Category: Condition Functions]]
[[Category: Condition Functions]]
Line 59: Line 60:
[[Category: Player Functions]]
[[Category: Player Functions]]
[[Category: Player Functions (CS 1.0)]]
[[Category: Player Functions (CS 1.0)]]
<!-- Begin Search Terms
Get
PC
Misc
Stat
End Search Terms -->

Latest revision as of 13:52, 12 February 2011

Syntax:

GetPCMiscStat MiscStatID 

Example:

GetPCMiscStat 4  ; returns player's largest bounty 


Returns the specified player misc stat.


The misc stat IDs are:


 	0	DAYS IN PRISON
 	1	DAYS PASSED (Not working, use global GameDaysPassed instead.)
 	2	SKILL INCREASES
 	3	TRAINING SESSIONS
 	4	LARGEST BOUNTY
 	5	CREATURES KILLED
 	6	PEOPLE KILLED
 	7	PLACES DISCOVERED
 	8	LOCKS PICKED
 	9	PICKS BROKEN
 	10	SOULS TRAPPED
 	11	INGREDIENTS EATEN
 	12	POTIONS MADE
 	13	OBLIVION GATES SHUT
 	14	HORSES OWNED  
 	15	HOUSES OWNED  
 	16	STORES INVESTED IN 
 	17	BOOKS READ
 	18	SKILL BOOKS READ
 	19	ARTIFACTS FOUND 
 	20	HOURS SLEPT
 	21	HOURS WAITED
 	22	DAYS AS A VAMPIRE
 	23	LAST DAY AS VAMPIRE 
 	24	PEOPLE FED ON
 	25	JOKES TOLD
 	26	DISEASES CONTRACTED 
 	27	NIRNROOTS FOUND
 	28	ITEMS STOLEN
 	29	ITEMS PICKPOCKETED
 	30	TRESPASSES
 	31	ASSAULTS
 	32	MURDERS
 	33	HORSES STOLEN


Note that entering values higher than 33 and lower than 0 will return out-of-bounds data. GetPCMiscStat n simply reads the nth four-byte cluster after a certain point and displays that value as an unsigned long int formatted as a float with two decimal points.

See Also[edit | edit source]

ModPCMiscStat