Difference between revisions of "ModActorValue2"

From the Oblivion ConstructionSet Wiki
Jump to navigation Jump to search
imported>Talkie Toaster
imported>Talkie Toaster
Line 10: Line 10:
ModActorValue2 modifies the current value of the stat by the specified value, without affecting the base value of the stat. Be aware that the value is an unrounded integer; ModAV2 StatName 3.9 would result in a 3 point change.
ModActorValue2 modifies the current value of the stat by the specified value, without affecting the base value of the stat. Be aware that the value is an unrounded integer; ModAV2 StatName 3.9 would result in a 3 point change.
   
   
Of critical note is that attempting to mod positive-only stats like health and attributes to negative values will cause the game to crash to desktop.


Other than [[ModActorValue]], this function acts exactly like spells:
Other than [[ModActorValue]], this function acts exactly like spells:

Revision as of 07:55, 11 December 2006

A command for Oblivion Script Extender

Syntax:

ModActorValue2 StatName value:integer 
ModAV2 StatName value:integer 

Example:

ModActorValue2 Strength -10 

ModActorValue2 modifies the current value of the stat by the specified value, without affecting the base value of the stat. Be aware that the value is an unrounded integer; ModAV2 StatName 3.9 would result in a 3 point change.

Of critical note is that attempting to mod positive-only stats like health and attributes to negative values will cause the game to crash to desktop.

Other than ModActorValue, this function acts exactly like spells:

  • A negative value and can be undone with a restore spell.
  • A positive value will restore damage done to the stat, but it will not exceed the maximum value of the stat. ("Player.ModAV2 health 10000" will fully heal you but not give you 10000 health).


Notes:

  • This function is identical to the console-version of ModActorValue