Hm so I found it, and it does indeed work if I replace one of the two. But once I add in a second else if, none of the switching works. I had to switch the frontier to the top as it doesn't seem to switch off the NV global when going there. It's probably something simple i'm missing and I'm just being dumb.
Hi I've been using this mod for a while and it's a nice quality of life feature, but I was wondering if it would be possible to add an option for it to not affect terminal screens. I like having my HUD and pip boy switch, but terminal screens glow green so it doesn't make much sense for them to show up amber when you use them
Well this is weird...my game already does this o_o. I followed the TTW Wastland Survival Guide for my mod setup, so I'm assuming one of those many menu based mods already does this?
I change the HUD color every time I switch so this is such a great QOL idea. Thanks!
Just curious, what event triggers the HUD switch? Is it just the train ride? Or would switching wastelands via the Mobile Truck Base or Transportalponder Expanded also result in a HUD color swap?
thanks! it checks it in a couple different ways, so it works regardless of how you get between wastelands, you can take the train, fast travel with map markers, ride the mobile truck base, or use the transportalponder and it works either way
20 comments
SetOnMenuOpenEventHandler (begin function {int id}
if ( TFInFrontier )
SetSystemColor 1 255 255 255
SetSystemColor 3 255 255 255
SetSystemColor 4 255 255 255
SetSystemColor 5 255 255 255
SetINIFloat "Data:iHCS" 2 "TTWHudSwitcher.ini"
elseif ( bInDCWasteland )
SetSystemColor 1 26 255 128
SetSystemColor 3 26 255 128
SetSystemColor 4 26 255 128
SetSystemColor 5 26 255 128
SetINIFloat "Data:iHCS" 0 "TTWHudSwitcher.ini"
elseif ( bInNVWasteland )
SetSystemColor 1 255 182 66
SetSystemColor 3 255 182 66
SetSystemColor 4 255 182 66
SetSystemColor 5 255 182 66
SetINIFloat "Data:iHCS" 1 "TTWHudSwitcher.ini"
endif
end) 1 1023
Just curious, what event triggers the HUD switch? Is it just the train ride? Or would switching wastelands via the Mobile Truck Base or Transportalponder Expanded also result in a HUD color swap?