Jump to content

Photo

The Mod Configuration Menu - Support


  • Please log in to reply
336 replies to this topic

#51
Dragonetti

Dragonetti

    Journeyman

  • Supporter
  • Pip
  • 43 posts
@Pelinor

Ok, I have a lot of mods installed... about 70ish, and you guest it, MCM tells me to remove redundant XML lines.
In the readme file you said this:

You need to remove any duplicate <include src="MCM\MCM.xml"/> lines. There can be only one in Data\menus\options\start_menu.xml or Data\menus\prefabs\includes_StartMenu.xml


I'm not that good in editing and mostly end up with issues.
This resolves the issue quicker (if you have installed (Unified HUD Project ).

1. Start up FOMM > Package manager
2. Deactivate Unified HUD(in FOMM)
3. Go to FNV installation folder "Data\menus\options\" and rename start_menu.xml.ori (just in case)
4. Activate Unified HUD in FOMM again.
(And If you still have the FNV\Data\menus\options\ folder open in the back ground you will see that a new start_menu.xml file is created.)
5. Startup the game and you will notice that MCM doesn't tells you to remove redundant XML lines when press "Esc" to get to the MCM Menu.

Edited by Dragonetti, 08 September 2011 - 03:49 PM.


#52
Coreinsanity

Coreinsanity

    Newbie

  • Supporter
  • Pip
  • 15 posts
I am having the same problem with the missing the start_menu.xml edit.

Some things I have done:
> Reinstalled all my UI mods (DarnUI/Primary needs/aHud/the mod configuration menu/unified hud - in that order I think).
> Reinstalled just The Mod config and then unified hud
> Reinstalled just the mod config (With unified installed, and again with it uninstalled without re-installing unified afterwords).
> Reinstalled just the unified hud (With the mod config installed).
> I even tried installing the UI mods (Like the first one) up to and including unified hud last, disabling unified hud and removing/renaming start_menu.xml and then reinstalling unified hud letting it regenerate the file. Still the same problem.

I think I have done everything short of deleting everything related to the installation of FONV, FOMM and the saved list of mods or anything FOMM might have saved (Not my downloaded mods) and then re-downloading the game off steam again. (Note, I won't be deleting the mod downloads themselves if I do this. No point in re-downloading all my mods.)


Edit: Well, I fixed it. I had activated archive invalidation fully, yet for some reason bInvalidateOlderFiles keeps getting put back at 0.

Edited by Coreinsanity, 17 September 2011 - 06:52 PM.


#53
DrunkenStranger

DrunkenStranger

    Journeyman

  • Members
  • Pip
  • 38 posts
Here my script (requires converted to esm nevada skies 0.6)
scn MCMNSkiesQuestScript

short iMaster
short iMouseover
short iOption
short iTemp
short iSubMenu
float fTemp
float fValue
reference rList

begin GameMode
    if GetGameRestarted
        if IsModLoaded "The Mod Configuration Menu.esp"
            set iMaster to GetModIndex "The Mod Configuration Menu.esp"
            set rList to BuildRef iMaster 2790
            ListAddForm rList MCMNSkies
        endif
    endif
end

begin MenuMode 1013
    if IsModLoaded "The Mod Configuration Menu.esp"
    else
        Return
    endif
    
    if GetUIFloat "StartMenu/MCM/_ActiveMod" == GetModIndex "NSkies 0.6 MCM.esp"
        set iOption to GetUIFloat "StartMenu/MCM/_ActiveOption"
        set fValue to GetUIFloat "StartMenu/MCM/_Value"
        
        if GetUIFloat "StartMenu/MCM/MCM_ModList/SubMenu1/_enable" == 0
            SetUIFloat "StartMenu/MCM/_ActiveSubMenu" 0

            SetUIFloat "StartMenu/MCM/MCM_ModList/SubMenu1/_enable" 1
            SetUIString "StartMenu/MCM/MCM_ModList/SubMenu1/text/string" "General Settings"
            SetUIString "StartMenu/MCM/MCM_ModTitle/SubTitle1/string" "Nevada Skies: General Settings"
        
            SetUIFloat "StartMenu/MCM/MCM_ModList/SubMenu2/_enable" 1
            SetUIString "StartMenu/MCM/MCM_ModList/SubMenu2/text/string" "Weather Control"
            SetUIString "StartMenu/MCM/MCM_ModTitle/SubTitle2/string" "Nevada Skies: Weather Control"
            
        endif
        
        set iSubMenu to GetUIFloat "StartMenu/MCM/_ActiveSubMenu"
    
        ; ==========================================================================================
        ;   RESET
        ; ==========================================================================================
        if GetUIFloat "StartMenu/MCM/_Reset"
            SetUIFloat "StartMenu/MCM/_Reset" 0
    
			if iSubMenu == 0
            
                ; ----------------------------------------------------------------------------------
                ;   Readme
                ; ----------------------------------------------------------------------------------

                SetUIFloat "StartMenu/MCM/MCM_Options/_columns" 1

                SetUIFloat "StartMenu/MCM/MCM_Options/Option1/_enable" 1
                SetUIFloat "StartMenu/MCM/MCM_Options/Option1/_type" 0
                SetUIFloat "StartMenu/MCM/MCM_Options/Option1/_highlight" 0
                SetUIFloat "StartMenu/MCM/MCM_Options/Option1/_altFont" 8
                SetUIFloat "StartMenu/MCM/MCM_Options/Option1/_RGB" 255255255
                SetUIString "StartMenu/MCM/MCM_Options/Option1/_title" "NEVADA SKIES"
                
                SetUIFloat "StartMenu/MCM/MCM_Options/Option3/_enable" 1
                SetUIFloat "StartMenu/MCM/MCM_Options/Option3/_type" 0
                SetUIFloat "StartMenu/MCM/MCM_Options/Option3/_highlight" 0
                SetUIFloat "StartMenu/MCM/MCM_Options/Option3/_altFont" 6
                SetUIFloat "StartMenu/MCM/MCM_Options/Option3/_RGB" 191191191
                SetUIString "StartMenu/MCM/MCM_Options/Option3/_title" "Version"

                SetUIFloat "StartMenu/MCM/MCM_Options/Option4/_enable" 1
                SetUIFloat "StartMenu/MCM/MCM_Options/Option4/_type" 0
                SetUIFloat "StartMenu/MCM/MCM_Options/Option4/_highlight" 0
                SetUIFloat "StartMenu/MCM/MCM_Options/Option4/_altFont" 3
                SetUIFloat "StartMenu/MCM/MCM_Options/Option4/_indent" 2.5
                SetUIString "StartMenu/MCM/MCM_Options/Option4/_title" "0.6"

                SetUIFloat "StartMenu/MCM/MCM_Options/Option5/_enable" 1
                SetUIFloat "StartMenu/MCM/MCM_Options/Option5/_type" 0
                SetUIFloat "StartMenu/MCM/MCM_Options/Option5/_highlight" 0
                SetUIFloat "StartMenu/MCM/MCM_Options/Option5/_altFont" 6
                SetUIFloat "StartMenu/MCM/MCM_Options/Option5/_RGB" 191191191
                SetUIString "StartMenu/MCM/MCM_Options/Option5/_title" "Help & Credits"
                
                SetUIFloat "StartMenu/MCM/MCM_Options/Option6/_enable" 1
                SetUIFloat "StartMenu/MCM/MCM_Options/Option6/_type" 6
                SetUIFloat "StartMenu/MCM/MCM_Options/Option6/_value" 1
                SetUIFloat "StartMenu/MCM/MCM_Options/Option6/_indent" 2.5
                SetUIString "StartMenu/MCM/MCM_Options/Option6/_title" "Show Help"
                SetUIString "StartMenu/MCM/MCM_Options/Option6/_textOn" " "
                SetUIString "StartMenu/MCM/MCM_Options/Option6/_textOff" " "
            
                SetUIFloat "StartMenu/MCM/MCM_Options/Option7/_enable" 1
                SetUIFloat "StartMenu/MCM/MCM_Options/Option7/_type" 6
                SetUIFloat "StartMenu/MCM/MCM_Options/Option7/_value" 1
                SetUIFloat "StartMenu/MCM/MCM_Options/Option7/_indent" 2.5
                SetUIString "StartMenu/MCM/MCM_Options/Option7/_title" "Show Credits"
                SetUIString "StartMenu/MCM/MCM_Options/Option7/_textOn" " "
                SetUIString "StartMenu/MCM/MCM_Options/Option7/_textOff" " "
            
			elseif iSubMenu == 1
            
                ; ----------------------------------------------------------------------------------
                ;   General Settings
                ; ----------------------------------------------------------------------------------
    
                SetUIFloat "StartMenu/MCM/MCM_Options/_columns" 1
    
                ; Title: Thermo-Hydrograph
                SetUIFloat "StartMenu/MCM/MCM_Options/Option1/_enable" 1
                SetUIFloat "StartMenu/MCM/MCM_Options/Option1/_type" 0
                SetUIFloat "StartMenu/MCM/MCM_Options/Option1/_highlight" 0
                SetUIFloat "StartMenu/MCM/MCM_Options/Option1/_altFont" 6
                SetUIFloat "StartMenu/MCM/MCM_Options/Option1/_indent" 0
                SetUIFloat "StartMenu/MCM/MCM_Options/Option1/_RGB" 191191191
                SetUIString "StartMenu/MCM/MCM_Options/Option1/_title" "Thermo-Hydrograph"
                
                ; Enabled Inventory Item
                set iTemp to Player.GetItemCount 0WEAMeterNoDrop
                SetUIFloat "StartMenu/MCM/MCM_Options/Option2/_enable" 1
                SetUIFloat "StartMenu/MCM/MCM_Options/Option2/_type" 5
                SetUIFloat "StartMenu/MCM/MCM_Options/Option2/_value" iTemp
                SetUIFloat "StartMenu/MCM/MCM_Options/Option2/_indent" 2.5
                SetUIString "StartMenu/MCM/MCM_Options/Option2/_title" "Enabled Inventory Item"

                ; Compact Terminal Menu
                SetUIFloat "StartMenu/MCM/MCM_Options/Option3/_enable" 1
                SetUIFloat "StartMenu/MCM/MCM_Options/Option3/_type" 5
                SetUIFloat "StartMenu/MCM/MCM_Options/Option3/_value" aequipdisplay
                SetUIFloat "StartMenu/MCM/MCM_Options/Option3/_indent" 2.5
                SetUIString "StartMenu/MCM/MCM_Options/Option3/_title" "Compact Terminal Menu"

                ; Measurment Units
                SetUIFloat "StartMenu/MCM/MCM_Options/Option4/_enable" 1
                SetUIFloat "StartMenu/MCM/MCM_Options/Option4/_type" 6
                SetUIFloat "StartMenu/MCM/MCM_Options/Option4/_value" aunits
                SetUIFloat "StartMenu/MCM/MCM_Options/Option4/_indent" 2.5
                SetUIString "StartMenu/MCM/MCM_Options/Option4/_title" "Measurment Units"
                SetUIString "StartMenu/MCM/MCM_Options/Option4/_textOn" "English"
                SetUIString "StartMenu/MCM/MCM_Options/Option4/_textOff" "International"

                ; Title: Weather Conditions
                SetUIFloat "StartMenu/MCM/MCM_Options/Option5/_enable" 1
                SetUIFloat "StartMenu/MCM/MCM_Options/Option5/_type" 0
                SetUIFloat "StartMenu/MCM/MCM_Options/Option5/_highlight" 0
                SetUIFloat "StartMenu/MCM/MCM_Options/Option5/_altFont" 6
                SetUIFloat "StartMenu/MCM/MCM_Options/Option5/_indent" 0
                SetUIFloat "StartMenu/MCM/MCM_Options/Option5/_RGB" 191191191
                SetUIString "StartMenu/MCM/MCM_Options/Option5/_title" "Weather Conditions"
                
                ; Auto Display
                SetUIFloat "StartMenu/MCM/MCM_Options/Option6/_enable" 1
                SetUIFloat "StartMenu/MCM/MCM_Options/Option6/_type" 5
                SetUIFloat "StartMenu/MCM/MCM_Options/Option6/_value" aautodisplay
                SetUIFloat "StartMenu/MCM/MCM_Options/Option6/_indent" 2.5
                SetUIString "StartMenu/MCM/MCM_Options/Option6/_title" "Auto Display"
                
                ; Display Now
                SetUIFloat "StartMenu/MCM/MCM_Options/Option7/_enable" 1
                SetUIFloat "StartMenu/MCM/MCM_Options/Option7/_type" 6
                SetUIFloat "StartMenu/MCM/MCM_Options/Option7/_value" 1
                SetUIFloat "StartMenu/MCM/MCM_Options/Option7/_indent" 2.5
                SetUIString "StartMenu/MCM/MCM_Options/Option7/_title" "Display Now"
                SetUIString "StartMenu/MCM/MCM_Options/Option7/_textOn" " "
                SetUIString "StartMenu/MCM/MCM_Options/Option7/_textOff" " "

                ; Title: Miscellanious
                SetUIFloat "StartMenu/MCM/MCM_Options/Option8/_enable" 1
                SetUIFloat "StartMenu/MCM/MCM_Options/Option8/_type" 0
                SetUIFloat "StartMenu/MCM/MCM_Options/Option8/_highlight" 0
                SetUIFloat "StartMenu/MCM/MCM_Options/Option8/_altFont" 6
                SetUIFloat "StartMenu/MCM/MCM_Options/Option8/_indent" 0
                SetUIFloat "StartMenu/MCM/MCM_Options/Option8/_RGB" 191191191
                SetUIString "StartMenu/MCM/MCM_Options/Option8/_title" "Miscellanious"

                ; Special Mood
                SetUIFloat "StartMenu/MCM/MCM_Options/Option9/_enable" 1
                SetUIFloat "StartMenu/MCM/MCM_Options/Option9/_type" 6
                SetUIFloat "StartMenu/MCM/MCM_Options/Option9/_value" 0
                SetUIFloat "StartMenu/MCM/MCM_Options/Option9/_indent" 2.5
                SetUIString "StartMenu/MCM/MCM_Options/Option9/_title" "Special Mood"
                SetUIString "StartMenu/MCM/MCM_Options/Option9/_textOn" " "
                if amoodsmenu == 1
                    if GetIsCurrentWeather 00SpecialRA == 1
                        SetUIString "StartMenu/MCM/MCM_Options/Option9/_textOff" "Toxic Overload"
                    elseif GetIsCurrentWeather 00SpecialEoT == 1
                        SetUIString "StartMenu/MCM/MCM_Options/Option9/_textOff" "End of Time"
                    elseif GetIsCurrentWeather 00SpecialNM == 1
                        SetUIString "StartMenu/MCM/MCM_Options/Option9/_textOff" "Nuclear Memories"
                    elseif GetIsCurrentWeather 00SpecialRR == 1
                        SetUIString "StartMenu/MCM/MCM_Options/Option9/_textOff" "Rusted Rose"
                    elseif GetIsCurrentWeather 00SpecialIDoV == 1
                        SetUIString "StartMenu/MCM/MCM_Options/Option9/_textOff" "I Dream of Visari"
                    elseif GetIsCurrentWeather 00SpecialSH == 1
                        SetUIString "StartMenu/MCM/MCM_Options/Option9/_textOff" "Silent Hell"
                    elseif GetIsCurrentWeather 00SpecialTA == 1
                        SetUIString "StartMenu/MCM/MCM_Options/Option9/_textOff" "Tropical Dream"
                    else
                        SetUIString "StartMenu/MCM/MCM_Options/Option9/_textOff" "Normal"
                    endif
                else
                    SetUIString "StartMenu/MCM/MCM_Options/Option9/_textOff" "Disabled"
                endif
                
                ; Night Brightness
                SetUIFloat "StartMenu/MCM/MCM_Options/Option10/_enable" 1
                SetUIFloat "StartMenu/MCM/MCM_Options/Option10/_type" 6
                SetUIFloat "StartMenu/MCM/MCM_Options/Option10/_value" 0
                SetUIFloat "StartMenu/MCM/MCM_Options/Option10/_indent" 2.5
                SetUIString "StartMenu/MCM/MCM_Options/Option10/_title" "Night Brightness"
                SetUIString "StartMenu/MCM/MCM_Options/Option10/_textOn" " "
                if Player.HasPerk FriendOfTheNight == 0
                    if Player.HasPerk 0CaractedEyes == 0
                        SetUIString "StartMenu/MCM/MCM_Options/Option10/_textOff" "Normal"
                    else
                        SetUIString "StartMenu/MCM/MCM_Options/Option10/_textOff" "Dark"
                    endif
                else
                    if Player.HasPerk 0CaractedEyes == 0
                        SetUIString "StartMenu/MCM/MCM_Options/Option10/_textOff" "Bright"
                    else
                        SetUIString "StartMenu/MCM/MCM_Options/Option10/_textOff" "Normal"
                    endif
                endif
                
			elseif iSubMenu == 2
            
                ; ----------------------------------------------------------------------------------
                ;   Weather Control
                ; ----------------------------------------------------------------------------------
            
                SetUIFloat "StartMenu/MCM/MCM_Options/_columns" 1
            
                ; Title: Force Weather
                SetUIFloat "StartMenu/MCM/MCM_Options/Option1/_enable" 1
                SetUIFloat "StartMenu/MCM/MCM_Options/Option1/_type" 0
                SetUIFloat "StartMenu/MCM/MCM_Options/Option1/_highlight" 0
                SetUIFloat "StartMenu/MCM/MCM_Options/Option1/_altFont" 6
                SetUIFloat "StartMenu/MCM/MCM_Options/Option1/_indent" 0
                SetUIFloat "StartMenu/MCM/MCM_Options/Option1/_RGB" 191191191
                SetUIString "StartMenu/MCM/MCM_Options/Option1/_title" "Force Weather"
                
                ; Sandstorm
                SetUIFloat "StartMenu/MCM/MCM_Options/Option2/_enable" 1
                SetUIFloat "StartMenu/MCM/MCM_Options/Option2/_type" 6
                SetUIFloat "StartMenu/MCM/MCM_Options/Option2/_value" AWEASandstorm
                SetUIFloat "StartMenu/MCM/MCM_Options/Option2/_indent" 2.5
                SetUIString "StartMenu/MCM/MCM_Options/Option2/_title" "Sandstorm"
                SetUIString "StartMenu/MCM/MCM_Options/Option2/_textOn" "Stop"
                SetUIString "StartMenu/MCM/MCM_Options/Option2/_textOff" "Start"
    
                ; Rain
                SetUIFloat "StartMenu/MCM/MCM_Options/Option3/_enable" 1
                SetUIFloat "StartMenu/MCM/MCM_Options/Option3/_type" 6
                SetUIFloat "StartMenu/MCM/MCM_Options/Option3/_value" AWEARain
                SetUIFloat "StartMenu/MCM/MCM_Options/Option3/_indent" 2.5
                SetUIString "StartMenu/MCM/MCM_Options/Option3/_title" "Rain"
                SetUIString "StartMenu/MCM/MCM_Options/Option3/_textOn" "Stop"
                SetUIString "StartMenu/MCM/MCM_Options/Option3/_textOff" "Start"

                ; Snow
                SetUIFloat "StartMenu/MCM/MCM_Options/Option4/_enable" 1
                SetUIFloat "StartMenu/MCM/MCM_Options/Option4/_type" 6
                SetUIFloat "StartMenu/MCM/MCM_Options/Option4/_value" AWEASnow
                SetUIFloat "StartMenu/MCM/MCM_Options/Option4/_indent" 2.5
                SetUIString "StartMenu/MCM/MCM_Options/Option4/_title" "Snow"
                SetUIString "StartMenu/MCM/MCM_Options/Option4/_textOn" "Stop"
                SetUIString "StartMenu/MCM/MCM_Options/Option4/_textOff" "Start"

                ; Title: Disabled Weather
                SetUIFloat "StartMenu/MCM/MCM_Options/Option5/_enable" 1
                SetUIFloat "StartMenu/MCM/MCM_Options/Option5/_type" 0
                SetUIFloat "StartMenu/MCM/MCM_Options/Option5/_highlight" 0
                SetUIFloat "StartMenu/MCM/MCM_Options/Option5/_altFont" 6
                SetUIFloat "StartMenu/MCM/MCM_Options/Option5/_indent" 0
                SetUIFloat "StartMenu/MCM/MCM_Options/Option5/_RGB" 191191191
                SetUIString "StartMenu/MCM/MCM_Options/Option5/_title" "Disabled Weather"

                ; Radstorms
                SetUIFloat "StartMenu/MCM/MCM_Options/Option6/_enable" 1
                SetUIFloat "StartMenu/MCM/MCM_Options/Option6/_type" 5
                SetUIFloat "StartMenu/MCM/MCM_Options/Option6/_value" acheatdisablerads
                SetUIFloat "StartMenu/MCM/MCM_Options/Option6/_indent" 2.5
                SetUIString "StartMenu/MCM/MCM_Options/Option6/_title" "Disabled Radstorms"
                
                ; Sandstorms
                SetUIFloat "StartMenu/MCM/MCM_Options/Option7/_enable" 1
                SetUIFloat "StartMenu/MCM/MCM_Options/Option7/_type" 5
                SetUIFloat "StartMenu/MCM/MCM_Options/Option7/_value" acheatdisablestorm
                SetUIFloat "StartMenu/MCM/MCM_Options/Option7/_indent" 2.5
                SetUIString "StartMenu/MCM/MCM_Options/Option7/_title" "Disabled Sandstorms"

                ; Rain
                SetUIFloat "StartMenu/MCM/MCM_Options/Option8/_enable" 1
                SetUIFloat "StartMenu/MCM/MCM_Options/Option8/_type" 5
                SetUIFloat "StartMenu/MCM/MCM_Options/Option8/_value" acheatdisablerain
                SetUIFloat "StartMenu/MCM/MCM_Options/Option8/_indent" 2.5
                SetUIString "StartMenu/MCM/MCM_Options/Option8/_title" "Disabled Rain"

                ; Title: Frequency/Duration
                SetUIFloat "StartMenu/MCM/MCM_Options/Option9/_enable" 1
                SetUIFloat "StartMenu/MCM/MCM_Options/Option9/_type" 0
                SetUIFloat "StartMenu/MCM/MCM_Options/Option9/_highlight" 0
                SetUIFloat "StartMenu/MCM/MCM_Options/Option9/_altFont" 6
                SetUIFloat "StartMenu/MCM/MCM_Options/Option9/_indent" 0
                SetUIFloat "StartMenu/MCM/MCM_Options/Option9/_RGB" 191191191
                SetUIString "StartMenu/MCM/MCM_Options/Option9/_title" "Frequency/Duration"
                
                ; Sandstorm Duration
                SetUIFloat "StartMenu/MCM/MCM_Options/Option10/_enable" 1
                SetUIFloat "StartMenu/MCM/MCM_Options/Option10/_type" 6
                SetUIFloat "StartMenu/MCM/MCM_Options/Option10/_value" 0
                SetUIFloat "StartMenu/MCM/MCM_Options/Option10/_indent" 2.5
                SetUIString "StartMenu/MCM/MCM_Options/Option10/_title" "Sandstorm Duration"
                SetUIString "StartMenu/MCM/MCM_Options/Option10/_textOn" " "
                if AWEASandstormDUR == 120
                    SetUIString "StartMenu/MCM/MCM_Options/Option10/_textOff" "Short (2-6 min)"
                elseif AWEASandstormDUR == 240
                    SetUIString "StartMenu/MCM/MCM_Options/Option10/_textOff" "Medium (4-8 min)"
                elseif AWEASandstormDUR == 480
                    SetUIString "StartMenu/MCM/MCM_Options/Option10/_textOff" "Long (8-12 min)"
                endif
                
                ; Sandstorm Frequency
                SetUIFloat "StartMenu/MCM/MCM_Options/Option11/_enable" 1
                SetUIFloat "StartMenu/MCM/MCM_Options/Option11/_type" 6
                SetUIFloat "StartMenu/MCM/MCM_Options/Option11/_value" 0
                SetUIFloat "StartMenu/MCM/MCM_Options/Option11/_indent" 2.5
                SetUIString "StartMenu/MCM/MCM_Options/Option11/_title" "Sandstorm Frequency"
                SetUIString "StartMenu/MCM/MCM_Options/Option11/_textOn" " "
                if AWEASandstormFREQm == 0
                    SetUIString "StartMenu/MCM/MCM_Options/Option11/_textOff" "High"
                elseif AWEASandstormFREQm == 1
                    SetUIString "StartMenu/MCM/MCM_Options/Option11/_textOff" "Medium"
                elseif AWEASandstormFREQm == 2
                    SetUIString "StartMenu/MCM/MCM_Options/Option11/_textOff" "Low"
                endif
                
                ; Rain Frequency
                SetUIFloat "StartMenu/MCM/MCM_Options/Option12/_enable" 1
                SetUIFloat "StartMenu/MCM/MCM_Options/Option12/_type" 6
                SetUIFloat "StartMenu/MCM/MCM_Options/Option12/_value" 0
                SetUIFloat "StartMenu/MCM/MCM_Options/Option12/_indent" 2.5
                SetUIString "StartMenu/MCM/MCM_Options/Option12/_title" "Rain Frequency"
                SetUIString "StartMenu/MCM/MCM_Options/Option12/_textOn" " "
                if AWEARAINFREQm == 0
                    SetUIString "StartMenu/MCM/MCM_Options/Option12/_textOff" "Very High"
                elseif AWEARAINFREQm == 1
                    SetUIString "StartMenu/MCM/MCM_Options/Option12/_textOff" "High"
                elseif AWEARAINFREQm == 2
                    SetUIString "StartMenu/MCM/MCM_Options/Option12/_textOff" "Medium"
                elseif AWEARAINFREQm == 3
                    SetUIString "StartMenu/MCM/MCM_Options/Option12/_textOff" "Low"
                elseif AWEARAINFREQm == 4
                    SetUIString "StartMenu/MCM/MCM_Options/Option12/_textOff" "Very Low"
                endif

                ; Title: Enabled Conditions
                SetUIFloat "StartMenu/MCM/MCM_Options/Option13/_enable" 1
                SetUIFloat "StartMenu/MCM/MCM_Options/Option13/_type" 0
                SetUIFloat "StartMenu/MCM/MCM_Options/Option13/_highlight" 0
                SetUIFloat "StartMenu/MCM/MCM_Options/Option13/_altFont" 6
                SetUIFloat "StartMenu/MCM/MCM_Options/Option13/_indent" 0
                SetUIFloat "StartMenu/MCM/MCM_Options/Option13/_RGB" 191191191
                SetUIString "StartMenu/MCM/MCM_Options/Option13/_title" "Enabled Conditions"
                
                ; Foggy
                SetUIFloat "StartMenu/MCM/MCM_Options/Option14/_enable" 1
                SetUIFloat "StartMenu/MCM/MCM_Options/Option14/_type" 5
                SetUIFloat "StartMenu/MCM/MCM_Options/Option14/_value" aweafoggy
                SetUIFloat "StartMenu/MCM/MCM_Options/Option14/_indent" 2.5
                SetUIString "StartMenu/MCM/MCM_Options/Option14/_title" "Foggy"

                ; Cloudy
                SetUIFloat "StartMenu/MCM/MCM_Options/Option15/_enable" 1
                SetUIFloat "StartMenu/MCM/MCM_Options/Option15/_type" 5
                SetUIFloat "StartMenu/MCM/MCM_Options/Option15/_value" aweacloudy
                SetUIFloat "StartMenu/MCM/MCM_Options/Option15/_indent" 2.5
                SetUIString "StartMenu/MCM/MCM_Options/Option15/_title" "Cloudy"

                ; Western
                SetUIFloat "StartMenu/MCM/MCM_Options/Option16/_enable" 1
                SetUIFloat "StartMenu/MCM/MCM_Options/Option16/_type" 5
                SetUIFloat "StartMenu/MCM/MCM_Options/Option16/_value" aweawestern
                SetUIFloat "StartMenu/MCM/MCM_Options/Option16/_indent" 2.5
                SetUIString "StartMenu/MCM/MCM_Options/Option16/_title" "Western"
                
                ; Blue
                SetUIFloat "StartMenu/MCM/MCM_Options/Option17/_enable" 1
                SetUIFloat "StartMenu/MCM/MCM_Options/Option17/_type" 5
                SetUIFloat "StartMenu/MCM/MCM_Options/Option17/_value" aweablue
                SetUIFloat "StartMenu/MCM/MCM_Options/Option17/_indent" 2.5
                SetUIString "StartMenu/MCM/MCM_Options/Option17/_title" "Blue"

                ; Deep Blue
                SetUIFloat "StartMenu/MCM/MCM_Options/Option18/_enable" 1
                SetUIFloat "StartMenu/MCM/MCM_Options/Option18/_type" 5
                SetUIFloat "StartMenu/MCM/MCM_Options/Option18/_value" aweadblue 
                SetUIFloat "StartMenu/MCM/MCM_Options/Option18/_indent" 2.5
                SetUIString "StartMenu/MCM/MCM_Options/Option18/_title" "Deep Blue"
                
			endif
    
        ; ==========================================================================================
        ;   DEFAULT
        ; ==========================================================================================
        elseif GetUIFloat "StartMenu/MCM/_Default"
            SetUIFloat "StartMenu/MCM/_Default" 0
            SetUIFloat "StartMenu/MCM/_Reset" 1
    
            if iSubMenu == 1
            
                ; ----------------------------------------------------------------------------------
                ;   General Settings
                ; ----------------------------------------------------------------------------------
                set iTemp to Player.GetItemCount 0WEAMeterNoDrop
                if iTemp > 0
                    Player.RemoveItem 0WEAMeterNoDrop iTemp
                endif
            
            endif
    
        ; ==========================================================================================
        ;   NEW VALUE
        ; ==========================================================================================
        elseif GetUIFloat "StartMenu/MCM/_NewValue"
            SetUIFloat "StartMenu/MCM/_NewValue" 0
            SetUIFloat "StartMenu/MCM/_Reset" 1
    
            if iSubMenu == 1
            
                ; ----------------------------------------------------------------------------------
                ;   General Settings
                ; ----------------------------------------------------------------------------------
                if iOption == 2
                    
                    ; Inventory Item
                    set iTemp to Player.GetItemCount 0WEAMeterNoDrop
                    if iTemp > 0
                        Player.RemoveItem 0WEAMeterNoDrop iTemp
                    else
                        Player.Additem 0WEAMeterNoDrop 1
                    endif
                    
                endif
            
            endif

    
        ; ==========================================================================================
        ;   SHOW LIST
        ; ==========================================================================================
        elseif GetUIFloat "StartMenu/MCM/_ShowList" == 1
            SetUIFloat "StartMenu/MCM/_ShowList" 2
    
        ; ==========================================================================================
        ;   SHOW SCALE
        ; ==========================================================================================
        elseif GetUIFloat "StartMenu/MCM/_ShowScale" == 1
            SetUIFloat "StartMenu/MCM/_ShowScale" 2
    
        ; ==========================================================================================
        ;   DEFAULT SCALE
        ; ==========================================================================================
        elseif GetUIFloat "StartMenu/MCM/_DefaultScale"
            SetUIFloat "StartMenu/MCM/_DefaultScale" 0
            SetUIFloat "StartMenu/MCM/_ShowScale" 2
    
        endif
    
        ; ==========================================================================================
        ;   MOUSE-OVER
        ; ==========================================================================================
        if iMouseover != GetUIFloat "StartMenu/MCM/MCM_Options/_optionID"
            set iMouseover to GetUIFloat "StartMenu/MCM/MCM_Options/_optionID"
            if iMouseover
                SetUIFloat "StartMenu/MCM/MCM_Info/visible" 1
    
                if iSubMenu == 1
                
                    if iMouseover == 2
                        SetUIString "StartMenu/MCM/MCM_Info/string" "Add or remove Thermo-Hydrograph from inventory."
                    else
                        SetUIFloat "StartMenu/MCM/MCM_Info/visible" 0
                    endif
                
                else 
                    SetUIFloat "StartMenu/MCM/MCM_Info/visible" 0
                endif

            else
                SetUIFloat "StartMenu/MCM/MCM_Info/visible" 0
            endif
        endif
    endif
end

He wont save in GECK. Comment any 3 of strings below (no matter which exactly) and he will be saved (all global variables exists) and works fine.
SetUIFloat "StartMenu/MCM/MCM_Options/Option14/_value" aweafoggy
SetUIFloat "StartMenu/MCM/MCM_Options/Option15/_value" aweacloudy
SetUIFloat "StartMenu/MCM/MCM_Options/Option16/_value" aweawestern
SetUIFloat "StartMenu/MCM/MCM_Options/Option17/_value" aweablue
SetUIFloat "StartMenu/MCM/MCM_Options/Option18/_value" aweadblue 

Any ideas why?

Looks like some undocumented restriction...

#54
DrunkenStranger

DrunkenStranger

    Journeyman

  • Members
  • Pip
  • 38 posts
Nevermind. I found how to enable GECK error messages. Looks like I have reached script max size.

#55
DrunkenStranger

DrunkenStranger

    Journeyman

  • Members
  • Pip
  • 38 posts
Damn.

#56
FrostyFrosty

FrostyFrosty

    Journeyman

  • Banned
  • Pip
  • 41 posts
Got a problem here.

I followed the tutorial video for this and Project Nevada, but it does not seem to work. I activate Project Nevada, then Mod Config Menu but it says Project Nevada isn't installed ect. and no MCM. But if I install Mod Config first then Project Nevada, MCM doesn't load my other mods, but only Project Nevada's stuff. So what is going on here? Also, my FOMM does not seem to have the .esp for MCM in its list so...

#57
Scorpio9

Scorpio9

    Enthusiast

  • Members
  • PipPip
  • 180 posts
EDIT: It's fixed.

Edited by Scorpio9, 01 October 2011 - 07:16 AM.


#58
Majextic

Majextic

    Stranger

  • Members
  • Pip
  • 5 posts
I installed it via FOMM (after installing NVSE), but my pause menu hasn't changed at all.

#59
Pelinor

Pelinor

    Fan

  • Supporter
  • PipPipPip
  • 484 posts
Did you select the mod in your mod list? I'll make sure that's done automatically in the next update.

#60
igli

igli

    Enthusiast

  • Members
  • PipPip
  • 137 posts
Pelinor, would you, please, add Slavery Simple to the list of mods using MCM? Link: http://www.newvegasn...e.php?id=43785. Thanks in advance and kudos for your great work!




Page loaded in: 1.256 seconds