2021-10-05 22:15:58 +00:00
|
|
|
Scriptname _00E_Theriantrophist_TransformSC extends _00E_Theriantrophist_WerewolfPotion
|
|
|
|
|
|
|
|
_FS_TheriantrophistControlQuest Property controlQuest Auto
|
|
|
|
Message Property _00E_Theriantrophist_CannotDrinkPotion Auto
|
|
|
|
Message Property _00E_Theriantrophist_ForceTransformBackMessage Auto
|
|
|
|
Perk Property _00E_Class_Theriantrophist_P01_StrongBlood Auto
|
|
|
|
Spell Property _00E_Theriantrophist_PoisonOnWerewolfPotion Auto
|
|
|
|
|
|
|
|
GlobalVariable Property _00E_FS_Theriantrophist_AllowTemporaryTransform Auto
|
|
|
|
|
|
|
|
Actor Property _00E_MC_JesparREF Auto
|
|
|
|
Actor Property _00E_MC_CaliaREF Auto
|
|
|
|
|
|
|
|
Topic Property JesparDialogue_ForgottenStories_Theriantrophist_CommentsTopic Auto
|
|
|
|
Topic Property CaliaDialogue_ForgottenStories_Theriantrophist_CommentsTopic Auto
|
|
|
|
|
|
|
|
Event OnEffectStart(Actor akTarget, Actor akCaster)
|
|
|
|
|
|
|
|
if akTarget == Game.GetPlayer()
|
|
|
|
|
|
|
|
if !akTarget.HasPerk(_00E_Class_Theriantrophist_P01_StrongBlood)
|
|
|
|
_00E_Theriantrophist_CannotDrinkPotion.Show()
|
|
|
|
_00E_Theriantrophist_PoisonOnWerewolfPotion.Cast(akTarget)
|
|
|
|
self.dispel()
|
|
|
|
return
|
|
|
|
Endif
|
|
|
|
_00E_Theriantrophist_PlayerAsWerewolf playerWhileTransformedAlias = controlQuest.playerWhileTransformed
|
|
|
|
|
|
|
|
if _00E_FS_Theriantrophist_AllowTemporaryTransform.GetValueInt() == 0
|
|
|
|
|
|
|
|
if !playerWhileTransformedAlias.CanBeTransformed(akTarget.getCurrentLocation())
|
2022-07-31 18:55:11 +00:00
|
|
|
if EnderalFunctions.IsDLLLoaded()
|
2021-12-29 12:48:11 +00:00
|
|
|
Debug.Notification(_00E_Theriantrophist_ForceTransformBackMessage.getName())
|
|
|
|
_RestorePotion()
|
|
|
|
else
|
|
|
|
; TODO: Replace the string with a localizable message.
|
|
|
|
Debug.Notification("You cannot transform here.")
|
|
|
|
endif
|
2021-10-05 22:15:58 +00:00
|
|
|
self.dispel()
|
|
|
|
return
|
|
|
|
Endif
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
if (!playerWhileTransformedAlias.IsTransformed())
|
|
|
|
_AddArcaneFever()
|
|
|
|
playerWhileTransformedAlias.ForceRefTo(akTarget)
|
|
|
|
playerWhileTransformedAlias.Transform(self.getDuration() as int)
|
|
|
|
Endif
|
|
|
|
|
|
|
|
If _00E_MC_CaliaREF.GetDistance(Game.GetPlayer()) <= 700
|
|
|
|
_00E_MC_CaliaREF.Say(CaliaDialogue_ForgottenStories_Theriantrophist_CommentsTopic)
|
|
|
|
ElseIf _00E_MC_JesparREF.GetDistance(Game.GetPlayer()) <= 700
|
|
|
|
_00E_MC_JesparREF.Say(JesparDialogue_ForgottenStories_Theriantrophist_CommentsTopic)
|
|
|
|
endif
|
|
|
|
|
|
|
|
self.dispel()
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
Endevent
|