Here are the two scripts, I've put five stars (*****) at the start and end of the sections I've deleted:
1st:
scn SE14RezSpellScriptBegin ScriptEffectStart set SE14Rez.spellrunning to 0 if ( player.GetinCell SEVitharnBailey == 1 ) || ( player.GetinCell XPVitharn == 1 ) Message "Your power will not work in this location." elseif ( GetPlayerinSEWorld == 0 ) Message "That spell may only be used in the Shivering Isles." else set SE14Rez.spellrunning to 1 endifEndBegin ScriptEffectUpdate if ***** ( GetPlayerinSEWorld == 0 ) || ***** SE14Rez.spellrunning == 0 dispel SE14RezSpell endifEndBegin ScriptEffectFinish set SE14Rez.spellrunning to 0End
2nd:
scn SE14ProtectionScriptfloat playerhealthfloat currenthealthfloat higherhealthshort CheckHealthshort doOncefloat timerfloat fquestdelaytimeshort spellrunningshort getoutshort movebackshort castonceBegin GameModeif ( doOnce == 0 ) set fquestdelaytime to 0.5 set doOnce to 1endif;this section sets the player's baseline health whenever he enters the throne room to be used to measure the percentage of the player's heal that has been lostif ( CheckHealth == 0 ) if ( player.GetInCell SENSCastleSheogorath == 1 ) set playerhealth to player.GetAV health set CheckHealth to 1 endifendifif ( CheckHealth == 1 ) if ( player.GetAV Health > playerhealth ) set playerhealth to player.GetAV Health endif if ( player.GetInCell SENSCastleSheogorath == 0 ) set CheckHealth to 0 endifendif;this section checks the player's currenthealth versus the most recent baseline health and it resurrects if the player manages to get health to zeroif ( spellrunning == 1 ) ***** && ( GetPlayerInSEWorld == 1 ) ***** set currenthealth to Player.GetAV health if ( player.getav health < 0 ) player.resurrect endif if ( currenthealth <= ( playerhealth * 0.20 ) ) set getout to 1 endifendif;this section moves the marker to the player's original position and moves the player to the castleif ( getout == 1 ) SE14RezMarker.MoveTo Player set getout to 2 DisablePlayerControls SE14HealerREF1.MoveTo SE14EntertainerMarker1 SEHaskillREF.MoveTo SE07AThadonMarkerendifif ( getout == 2 ) set getout to 3 player.MoveTo SE14RezMarker2endif;this section has the healer heal the player with a spell. a heal spell. on the player.if ( getout == 3 ) && ( player.GetDistance SE14HealerREF1 <= 1000 ) set timer to ( timer + GetSecondsPassed ) if ( timer >= 2 ) SE14HealerREF1.Cast SE14HealSpell Player set getout to 4 set timer to 0 endifendif;this has Haskill give the player the choice to return to the spot of near death or to stay in castleif ( getout == 4 ) set timer to ( timer + GetSecondsPassed ) if ( timer >= 6 ) SEHaskillREF.StartConversation Player set getout to 5 set timer to 0 endifendif;this moves the player back to spot where he almost died, if the player has chosen to go backif ( moveback == 1 ) set timer to ( timer + GetSecondsPassed ) if ( timer >= 2 ) && ( castonce == 0 ) SEHaskillREF.Cast StandardRestoreHealth1Novice SEHaskillREF set castonce to 1 elseif ( timer >= 4 ) set moveback to 0 player.MoveTo SE14RezMarker set castonce to 0 set timer to 0 endifendifEnd
It seems to me that deleting these sections should mean that the spell functions anywhere (except in Vitharn), yet this is not the case.
I suspect that maybe its a problem with the way that Shivering Isles is considered a completely different worldspace, i.e. with a new Map etc (as opposed to Oblivion Worldspaces, which are not so different). Perhaps this is something hardcoded to seperate SI from Tamriel? And Perhaps the game cannot move the markers which are essential for the spell between these worldspaces, OR perhaps the game cannot teleport the player between the worldspaces... since the game needs to ensure, at least at the beginning, that the player must go through the Strange Door to meet Haskill...
Does anybody have any other ideas, or, better, a way of solving this problem?