IsIntimidated - Actor
Member of: Actor Script
Used to determine if this actor has been intimidated by the player
SyntaxEdit
bool Function IsIntimidated() native
ParametersEdit
None.
Return ValueEdit
True if the actor has been intimidated by the player and false if not.
ExamplesEdit
; Print a message if Bob has been intimidated by the player
if (Bob.IsIntimidated())
Debug.Trace("Bob was intimidated by the player!")
endIf