HasMagicEffectWithKeyword - Actor
Revision as of 15:27, 18 October 2011 by imported>Rhavlovick (1 revision: Clobber re-import by Henning)
Member of: Actor Script
Checks to see if this actor is currently being affected by a Magic Effect with the given Keyword.
Syntax
bool Function HasMagicEffectWithKeyword(Keyword akKeyword) native
Parameters
- akKeyword: The Keyword to check.
Return Value
Whether the actor is being affected by a Magic Effect with the given Keyword or not.
Examples
; Does the player have some kind of disease?
if (Game.GetPlayer().HasMagicEffectWithKeyword(Disease))
Debug.Trace("The player has a disease")
endIf