HasMagicEffectWithKeyword - Actor

From the Fallout4 CreationKit Wiki
Revision as of 16:27, 18 October 2011 by imported>Vitamant (1 revision: Clobber re-import by Henning)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Member of: Actor Script

Checks to see if this actor is currently being affected by a Magic Effect with the given Keyword.

Syntax[edit | edit source]

bool Function HasMagicEffectWithKeyword(Keyword akKeyword) native

Parameters[edit | edit source]

Return Value[edit | edit source]

Whether the actor is being affected by a Magic Effect with the given Keyword or not.

Examples[edit | edit source]

; Does the player have some kind of disease?
if (Game.GetPlayer().HasMagicEffectWithKeyword(Disease))
  Debug.Trace("The player has a disease")
endIf

See Also[edit | edit source]