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