- Found in:
- SKSE
Description
Wiki Description
Changes the minimum range of this weapon. (This function requires SKSE)
Caveats
Parameters
floatminRange
CK Wiki Description
The new minimum range of this weapon.
Examples
; Double the minimum range of the player's right hand weapon
Weapon PlayerWeapon = Game.GetPlayer().GetEquippedWeapon()
PlayerWeapon.SetMinRange(PlayerWeapon.GetMinRange() * 2.0)Auto-Generated Example
float myFloat__minRange
myWeapon__toCallFunctionOn.SetMinRange(myFloat__minRange)