Caveats
Parameters
Examples
; Does the actor have the perk?
Function Example(Actor akActor, Perk akPerk)
If (akActor.HasPerk(akPerk))
Debug.Trace("The actor " + akActor + " has the " + akPerk + " perk.")
Else
Debug.Trace("The actor " + akActor + " does not have the " + akPerk + " perk.")
EndIf
EndFunctionAuto-Generated Example
Perk myPerk__akPerk
bool returnedValue = myActor__toCallFunctionOn.HasPerk(myPerk__akPerk)Related Pages
Additional References
View this function’s page on the Fallout 4 Creation Kit Wiki
