Difference between revisions of "GetAttackDamage"

From the Oblivion ConstructionSet Wiki
Jump to navigation Jump to search
imported>WereWolf
imported>Speedo
(Incorrect syntax in example)
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
A command for [[:Category:Oblivion Script Extender|Oblivion Script Extender]]
A command for [[:Category:Oblivion Script Extender|Oblivion Script Extender]]
Returns the base attack damage.


'''Syntax:'''
'''Syntax:'''
(damage:long) ''reference.''GetAttackDamage ''objectID:ref''


(damage:long) ''reference.''GetAttackDamage ''objectID:ref''
Returns the base attack damage.


'''Example:'''
'''Example:'''
Line 11: Line 10:
  float WeaponDamage
  float WeaponDamage
  set Weapon to player.[[GetEquippedObject]] 16
  set Weapon to player.[[GetEquippedObject]] 16
  set WeaponDamage to Weapon.GetAttackDamage
  set WeaponDamage to GetAttackDamage Weapon
Gets the attack damage value of the player's equipped weapon and store in ''WeaponDamage'' variable.
Gets the attack damage value of the player's equipped weapon and store in ''WeaponDamage'' variable.



Latest revision as of 12:19, 14 April 2008

A command for Oblivion Script Extender

Syntax:

(damage:long) reference.GetAttackDamage objectID:ref

Returns the base attack damage.

Example:

ref Weapon
float WeaponDamage
set Weapon to player.GetEquippedObject 16
set WeaponDamage to GetAttackDamage Weapon

Gets the attack damage value of the player's equipped weapon and store in WeaponDamage variable.

See Also[edit | edit source]