SetStagger - Weapon

SKSE Member of: Weapon Script

Changes the stagger value of this weapon. (This function requires SKSE)

SyntaxEdit

Function SetStagger(float stagger) native

ParametersEdit

  • stagger: The new stagger value of this weapon.

Return ValueEdit

None.

ExamplesEdit

; Double the stagger value of the player's right hand weapon
Weapon PlayerWeapon = Game.GetPlayer().GetEquippedWeapon()
PlayerWeapon.SetStagger(PlayerWeapon.GetStagger() * 2.0)

See AlsoEdit