Sheogorath's Extended Protection

Post » Fri May 13, 2011 12:12 pm

I'm trying to create a quick mod to allow the "Sheogorath's Protection" power to fuction outside the Shivering Isles (Since it seems more realistic, after all, when other Daedric Princes are killed in Tamriel, they do not die, they just are banished to there Realms (i.e. Mehrunes Dagon) so why should this not happen to Sheogorath, just because the new Sheo used to be mortal). It seems that there are only two scripts which regulate this spell: 1st: "SE14RezSpellScript", which is attached to the spell "SERezSpell". 2nd: "SE14ProtectionScript", which is attached to the 'quest' "SE14Rez". In both of these scripts I've delted the section which specify that the player must be in the Shivering Isles world for the spell to work, however, when I test it in game, whilst it give me no "Cannot cast outside SI" message, the spell still does not teleport me back when my health reaches the required level. However it still works inside the Shivering Isles, so I know I havn't deleted an essential part of the script, yet there seems to be no reason for it not to work OUTSIDE SI with my alterations...
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?
User avatar
leigh stewart
 
Posts: 3415
Joined: Mon Oct 23, 2006 8:59 am

Post » Fri May 13, 2011 7:10 am

Begin 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	endif


Are you also changing this section to remove the elseif statement so SE14Rez.spellrunning is set to 1 ?? --- You will also need to add some scripting to recall whether the player was already in SI or not and update the variable that keeps track of whether the player is in SEWorld or it will break dialog if the user returns to the castle and the game still thinks he is in Tamriel.
User avatar
jodie
 
Posts: 3494
Joined: Wed Jun 14, 2006 8:42 pm


Return to IV - Oblivion