SkyrimSE_ConjurableMaid/Source/Scripts/FCMMaidDialogueScript.psc

8 lines
403 B
Text
Raw Normal View History

2025-03-14 09:34:25 +09:00
Scriptname FCMMaidDialogueScript extends Quest
Spell Property ConjureMaidSpell Auto
Spell Property ConjurePermanentMaidSpell Auto
Spell Property ConjureSpectralMaidSpell Auto
Bool Function TryReturn()
Actor player = Game.GetPlayer()
return player.DispelSpell(ConjureMaidSpell) || player.DispelSpell(ConjurePermanentMaidSpell) || player.DispelSpell(ConjureSpectralMaidSpell)
EndFunction