Difference between revisions of "IsOffLimits - ObjectReference"
Jump to navigation
Jump to search
Line 10: | Line 10: | ||
Bool Function IsOffLimits() native | Bool Function IsOffLimits() native | ||
</source> | </source> | ||
== Examples == | == Examples == |
Revision as of 17:08, 8 April 2022
SKSE Member of: ObjectReference Script
This Function will set a ObjectReference's charge to the specified amount.
Syntax
Bool Function IsOffLimits() native
Examples
ObjectReference ErikursBooze boozeRef Auto
Function takeButDontSteal()
if boozeRef.IsOffLimits()
boozeRef.Activate(playerRef) ; takes it
endif
EndFunction