HasMagicEffect - Actor

From the Fallout4 CreationKit Wiki
Jump to navigation Jump to search

Member of: Actor Script

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

Syntax[edit | edit source]

bool Function HasMagicEffect(MagicEffect akEffect) native

Parameters[edit | edit source]

Return Value[edit | edit source]

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

Examples[edit | edit source]

; Does the player have rockjoint?
if (Game.GetPlayer().HasMagicEffect(RockjointEffect))
  Debug.Trace("The player has rockjoint")
endIf

See Also[edit | edit source]