HasMagicEffectWithKeyword - Actor
Member of: Actor Script
Checks to see if this actor is currently being affected by a Magic Effect with the given Keyword.
SyntaxEdit
bool Function HasMagicEffectWithKeyword(Keyword akKeyword) native
ParametersEdit
- akKeyword: The Keyword to check.
Return ValueEdit
Whether the actor is being affected by a Magic Effect with the given Keyword or not.
ExamplesEdit
; Does the player have some kind of disease?
if (Game.GetPlayer().HasMagicEffectWithKeyword(Disease))
Debug.Trace("The player has a disease")
endIf