Difference between revisions of "HasPerk - Actor"

From the Fallout4 CreationKit Wiki
Jump to navigation Jump to search
imported>Qazaaq
imported>Qazaaq
Line 22: Line 22:
   If (akActor.HasPerk(akPerk))
   If (akActor.HasPerk(akPerk))
     Debug.Trace("The actor " + akActor + " has the " + akPerk + " perk.")
     Debug.Trace("The actor " + akActor + " has the " + akPerk + " perk.")
  Else
    Debug.Trace("The actor " + akActor + " does not have the " + akPerk + " perk.")
   EndIf
   EndIf
EndFunction
EndFunction

Revision as of 01:53, 13 June 2016

Member of: Actor Script

Checks to see if this actor has the given Perk.

Syntax

bool Function HasPerk(Perk akPerk) native

Parameters

  • akPerk: The Perk to check.

Return Value

Whether the actor has the given Perk or not.

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
EndFunction

See Also