2021-10-05 22:15:58 +00:00
|
|
|
Scriptname _FS_Phasmalist_AffinityControlQuest extends Quest
|
2021-10-05 22:59:59 +00:00
|
|
|
{ OBSOLETE. Left for backward save compatibility.
|
|
|
|
The functions of the old code have been moved to magic effects of the apparition ability. }
|
2021-10-05 22:15:58 +00:00
|
|
|
|
|
|
|
_00E_FS_Affinity_SpectralWarriorSC spectralWarriorEventsListener
|
|
|
|
_00E_FS_Affinity_RitualistSC ritualistEventsListener
|
|
|
|
|
|
|
|
Function OnGameLoad()
|
2021-10-05 22:59:59 +00:00
|
|
|
If spectralWarriorEventsListener
|
2021-10-05 22:15:58 +00:00
|
|
|
spectralWarriorEventsListener.OnLoadGame()
|
2021-10-05 22:59:59 +00:00
|
|
|
spectralWarriorEventsListener = None
|
2021-10-05 22:15:58 +00:00
|
|
|
EndIf
|
2021-10-05 22:59:59 +00:00
|
|
|
If ritualistEventsListener
|
2021-10-05 22:15:58 +00:00
|
|
|
ritualistEventsListener.OnLoadGame()
|
2021-10-05 22:59:59 +00:00
|
|
|
ritualistEventsListener = None
|
|
|
|
EndIf
|
2021-10-05 22:15:58 +00:00
|
|
|
EndFunction
|