SetAccuracyBonus - InstanceData

From the Fallout4 CreationKit Wiki
Jump to navigation Jump to search

Member of: InstanceData Script
Requires F4SE version 0.3.1 or higher.

Sets the accuracy bonus of an object.

Syntax[edit | edit source]

Function SetAccuracyBonus(Owner akOwner, int aiBonus) Native Global

Parameters[edit | edit source]

  • akOwner: The InstanceData Owner to get the value from.
  • aiBonus: The accuracy bonus value to set.

Return Value[edit | edit source]

None

Examples[edit | edit source]

; Set the gun's accuracy bonus
thisInstance = new InstanceData:Owner
thisInstance.Owner = self as ObjectReference
SetAccuracyBonus(thisInstance, 1000)
Debug.Trace("You can't miss!")

See Also[edit | edit source]