- Found in:
- SKSE
Description
Wiki Description
Changes the base damage of this weapon. (This function requires SKSE)
Caveats
Parameters
intdamage
CK Wiki Description
The new base damage of this weapon.
Examples
; Double the base damage of the player's right hand weapon
Weapon PlayerWeapon = Game.GetPlayer().GetEquippedWeapon()
PlayerWeapon.SetBaseDamage(PlayerWeapon.GetBaseDamage() * 2)Auto-Generated Example
int myInt__damage
myWeapon__toCallFunctionOn.SetBaseDamage(myInt__damage)