i had to uninstall ufop because as soon as i left the enclave base, a started crashing, like 6 times in abt 20 minutes, including shuting down and restarting the game and 2 reboots. Fomm showed your patch at the top of the list. It worked fine inside the enclave based, just not out in the wastelands. i am running vista.
I went to the control panel and removed the patch from there, rebooted and restarted the game and had no problems running the game.
Please be more specific... there are many places that could be called "enclave bases" give me a FormID of some object in the area the crashes occour. Also you're not running Fallout 3 from the program files folder are you?
For some reason the Love Nest theme house lighting fix still does not seem to work for me. It will work when I rebuy the theme but when I reload my save the lighting color scheme is gone again and exiting and re-entering the house did not seem to reset it like the patch notes state it should. For screenshots, this is annoying having to keep rebuying the theme and I am kind of bummed I cannot seem to get the fix to work for me as this was one I was really looking forward to.
Ok, I'll go check it out now.
Edit: turns out I missed the love theme... you see I was copying the reference names from the script, the love them must of been added after because it is nearly at the bottom away from all the other themes, thats why I missed it
Here is the fixed script:
SCN UF3PPHCIFScriptBegin GameModeIf GetQuestRunning HD01 == 1 If HD01VaultTheme01.GetDisabled == 0 SetCellImageSpace MegatonPlayerHouse VaultImageSpace01 ElseIf HD01ExplorerTheme.GetDisabled == 0 SetCellImageSpace MegatonPlayerHouse LamplightInterior ElseIf HD01PreWarTheme.GetDisabled == 0 SetCellImageSpace MegatonPlayerHouse TenpennyImageSpace ElseIf HD01RaiderTheme.GetDisabled == 0 SetCellImageSpace MegatonPlayerHouse UrbanImageSpace01 ElseIf HD01ScienceTheme.GetDisabled == 0 SetCellImageSpace MegatonPlayerHouse NeoClassDefaultImageSpace ElseIf HD01LoveTheme.GetDisabled == 0 SetCellImageSpace MegatonPlayerHouse LoveHouseTheme EndIfEndIfIf GetQuestRunning HD02 == 1 If HD02VaultTheme.GetDisabled == 0 SetCellImageSpace Tenpenny03Player VaultImageSpace01 ElseIf HD02ExplorerTheme.GetDisabled == 0 SetCellImageSpace Tenpenny03Player LamplightInterior ElseIf HD02PreWarTheme.GetDisabled == 0 SetCellImageSpace Tenpenny03Player TenpennyImageSpace ElseIf HD02RaiderTheme.GetDisabled == 0 SetCellImageSpace Tenpenny03Player UrbanImageSpace01 ElseIf HD02ScienceTheme.GetDisabled == 0 SetCellImageSpace Tenpenny03Player NeoClassDefaultImageSpace ElseIf HD02LoveTheme.GetDisabled == 0 SetCellImageSpace Tenpenny03Player LoveHouseTheme EndIfEndIfEnd