SetAccuracyBonus - InstanceData

From the Fallout4 CreationKit Wiki
Revision as of 20:52, 30 September 2017 by imported>ShadeMe (Add function script name in See Also)
Jump to navigation Jump to search

Member of: InstanceData Script

Sets the accuracy bonus of an object.

Syntax

Function SetAccuracyBonus(Owner akOwner, int aiBonus) Native Global

Parameters

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

Return Value

None

Examples

; 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