Difference between revisions of "GetAccuracyBonus - InstanceData"

From the Fallout4 CreationKit Wiki
Jump to navigation Jump to search
imported>ShadeMe
(Create GetAccuracyBonus page)
 
imported>ShadeMe
(add GetAccuracyBonus description)
Line 5: Line 5:
'''Member of:''' [[InstanceData Script]]
'''Member of:''' [[InstanceData Script]]


<desc>
Gets the accuracy bonus of an object.


== Syntax ==
== Syntax ==

Revision as of 20:26, 30 September 2017


Member of: InstanceData Script

Gets the accuracy bonus of an object.

Syntax

int Function GetAccuracyBonus(Owner akOwner) Native Global

Parameters

  • akOwner: The InstanceData Owner to get the value from.

Return Value

The object's accuracy bonus.

Examples

; Get the gun's accuracy bonus
thisInstance = new InstanceData:Owner
thisInstance.owner = self as ObjectReference

int thisBonus = GetAccuracyBonus(thisInstance)

See Also