[dismiss]
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"
Jump to navigation
Jump to search
imported>Fella |
imported>Vswe m (Added Search Terms) |
||
Line 60: | 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 --> |
Revision as of 10:18, 20 June 2008
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 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 numbers (in the console, at least). As these numbers are almost uniformly large integers, it appears that GetPCMiscStat n simply reads the nth four-byte cluster after a certain point and displays that value as an unsigned long int.
See Also