Difference between revisions of "GetCannibal"

From the Fallout3 GECK Wiki
Jump to navigation Jump to search
imported>Kkuhlmann
 
imported>Odessa
(created)
 
(2 intermediate revisions by one other user not shown)
Line 1: Line 1:
{{Function
|origin = GECK1
|summary = Returns True (1) if the calling actor is currently playing the cannibal animation.
|name = GetCannibal
|returnType = bool
|referenceType = Actor
|example = if PlayerREF.GetCannibal
    ; wait until they've finished
endif
}}
=='''See Also'''==
*[[HasBeenEaten]]
*[[IsAnimPlaying]]
*[[HasPerk]]


[[Category:Functions]]
[[Category:Functions]]
[[Category:Functions (GECK 1.1)]]

Latest revision as of 13:30, 26 July 2014

< [[::Category:Functions|Category:Functions]]

A function included in the GECK version 1.1.0.36.

Description

Returns True (1) if the calling actor is currently playing the cannibal animation.

Syntax

[help]
(bool) Actor.GetCannibal

Example

if PlayerREF.GetCannibal
   ; wait until they've finished
endif

See Also