22 lines
945 B
Plaintext
22 lines
945 B
Plaintext
Scriptname _00E_Phasmalist_ApparationToPlayer extends activemagiceffect
|
|
|
|
_FS_Phasmalist_ControlQuest Property controlQuest auto
|
|
Message Property _00E_Phasmalist_Tutorial_Teleport Auto
|
|
Message Property _00E_Phasmalist_NoApparitionCurrentlySummoned Auto
|
|
GlobalVariable Property _00E_Phasmalist_TeleportTutorialShown Auto
|
|
GlobalVariable Property _00E_DisableSkillTutorials Auto
|
|
GlobalVariable Property _00E_Phasmalist_TankMode Auto
|
|
|
|
Event OnEffectStart(Actor akTarget, Actor akCaster)
|
|
If _00E_Phasmalist_TeleportTutorialShown.GetValueInt() == 0 && _00E_DisableSkillTutorials.GetValueInt() == 0
|
|
_00E_Phasmalist_TeleportTutorialShown.SetValueInt(1)
|
|
_00E_Phasmalist_Tutorial_Teleport.ShowAsHelpMessage("Jump", 5, 1, 1)
|
|
EndIf
|
|
|
|
If controlQuest.IsApparitionSpawned() == False || _00E_Phasmalist_TankMode.GetValue() != 0
|
|
_00E_Phasmalist_NoApparitionCurrentlySummoned.Show()
|
|
Else
|
|
controlQuest.TeleportApparitionToPlayer(True)
|
|
EndIf
|
|
EndEvent
|