Am I the only one having a problem with the door to the Upper Tower not appearing after reaching stronghold level 3? (master level, not archmagister)
http://img191.imageshack.us/img191/6216/morrowindscreenshot50.png
The hall plug disappeared like it should have, but so did the door? The Tower Dungeon plug and door are fine.
EDIT: It's the Uvi_UpperTower_Doors script that's causing it to disappear. If I remove it from the door it's there ingame, and I can go through it to Tower Upper. Add the script back and it disappears leaving a gaping hole.
My question then is why does the hall plug disappear if the door is scripted to not appear? Llunela Hleran gave me a key to Tel Uvirith, told me about the hidden study and told me about plans to expand the tower after I'm Archmagister. I'm only a Master. I'm wondering if maybe you aren't supposed to be able to access Tower Upper until you're Archmagister? Is Tower Upper supposed to be the Archmagister expansion?
The Tel Uvirith Travel Ring lets me teleport to Tower Upper too, even if it's not supposed to yet.
Hall plug script:
Begin Strong3_Notif ( Stronghold < 5 ) if ( GetDisabled == 1 ) enable endifelse if ( GetDisabled == 0 ) disable endifendifEnd
Door script:
Begin Uvi_UpperTower_DoorsIf ( Stronghold < 6 ) If ( GetDisabled == 0 ) Disable EndifElse If ( GetDisabled == 1 ) Enable Endif EndifIf ( MenuMode == 1 ) ReturnEndifIf ( GetJournalIndex HT_Uvi_SaraRevenge >= 50 ) If ( GetJournalIndex HT_UvirithVerena < 50 ) If ( gp_npc_sara->GetCurrentAiPackage == 3 ) If ( GetDistance Player < 200 ) If ( gp_sara_FGS == 0 ) Set gp_sara_FGS to 10 gp_npc_sara->ForceGreeting Endif Endif Endif EndifEndifEnd
Just in case the problem is with the scripts themselves. I'm either not supposed to get the key and be told about the study yet, or something's wrong with the script. Either way something's wrong
I know next to nothing about scripting, but it looks like the hall plug disappears before the door appears, causing the hole. Whether that's because the door should appear now because I should have access to Tower Upper as a Telvanni Master, or the plug should not disappear yet because I'm not Archmagister yet, I don't know.