IsBribed - Actor
Revision as of 15:27, 18 October 2011 by imported>Rhavlovick (1 revision: Clobber re-import by Henning)
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