[dismiss]
This wiki is a copy of the original Skyrim CK wiki created and maintained by the UESP.net. See CreationKit:Copy Notice for more info.
IsArrested - Actor
Jump to navigation
Jump to search
Member of: Actor Script
Returns whether this actor is currently arrested or not.
Syntax[edit | edit source]
bool Function IsArrested() native
Parameters[edit | edit source]
None.
Return Value[edit | edit source]
Whether the actor is currently arrested or not.
Examples[edit | edit source]
; Is the criminal currently arrested?
if Criminal.IsArrested()
Debug.Trace("We caught him!")
else
Debug.Trace("He went free!")
endIf