Difference between revisions of "IncrementPlayerSkillUse"
Jump to navigation
Jump to search
imported>WereWolf |
imported>Low Post |
||
(7 intermediate revisions by 3 users not shown) | |||
Line 2: | Line 2: | ||
'''Syntax:''' | '''Syntax:''' | ||
(nuSkillExperience:float) IncrementPlayerSkillUse skill: | (nuSkillExperience:float) IncrementPlayerSkillUse skill:name ''whichAction:short'' ''howManyTimes:float'' | ||
Records some additional uses of one of the skill actions. | Records some additional uses of one of the skill actions. Increments Skill Level by using the internal formula used for normal SkillUps if necessary. | ||
''whichAction'' defaults to 0, ''howManytimes'' defaults to 1 if omitted. | |||
''howManyTimes'' should always be positive. Use [[TriggerPlayerSkillUse]] or [[ModPlayerSkillExp]] if you want to decrease SkillUse. | |||
'''Example''' | |||
float Exp | |||
set Exp to (IncrementPlayerSkillUse Alchemy 1 1) | |||
Increases the player's alchemy skill as if the player had just made a potion. Sets ''Exp'' to the player's new amount of experience for alchemy. | |||
==See Also== | ==See Also== | ||
Line 85: | Line 19: | ||
*[[GetSkillUseIncrement]] | *[[GetSkillUseIncrement]] | ||
*[[SetSkillUseIncrement]] | *[[SetSkillUseIncrement]] | ||
*[[TriggerPlayerSkillUse]] | |||
*[[ModPlayerSkillExp]] | |||
*[[GetRequiredSkillExp]] | |||
[[Category: Functions]] | [[Category: Functions]] | ||
Line 90: | Line 27: | ||
[[Category: Player Functions]] | [[Category: Player Functions]] | ||
[[Category: Player Functions (OBSE)]] | [[Category: Player Functions (OBSE)]] | ||
Latest revision as of 09:20, 23 March 2011
A command for Oblivion Script Extender
Syntax:
(nuSkillExperience:float) IncrementPlayerSkillUse skill:name whichAction:short howManyTimes:float
Records some additional uses of one of the skill actions. Increments Skill Level by using the internal formula used for normal SkillUps if necessary.
whichAction defaults to 0, howManytimes defaults to 1 if omitted.
howManyTimes should always be positive. Use TriggerPlayerSkillUse or ModPlayerSkillExp if you want to decrease SkillUse.
Example
float Exp set Exp to (IncrementPlayerSkillUse Alchemy 1 1)
Increases the player's alchemy skill as if the player had just made a potion. Sets Exp to the player's new amount of experience for alchemy.