After returning to skyrim it was time to update my mods and give them a MCM menu...
following the quickguide https://github.com/schlangster/skyui/wiki/MCM-Quickstart I stumbled by not able to see my page when at the point when the guide states my MCM page should be visible.
- downloaded and installed the SkyUI SDK 4.1 ( same version as my SkyUI )
- made new quest ( run on startup )
- made new script extending SKI_ConfigBase
- added string property ModName and entered my mod name as a value
- added PlayerAlias under Quest Aliases like shown in the guide ( For Fill Type, select the player reference (Specific Reference, Cell any, Ref PlayerRef ) )
- Added script to the PlayerAlias ( SKI_PlayerLoadGameAlias ) ... same way as in this http://i.imgur.com/2LHw0.png
- compiled quest script
- attached quest script to quest
- saved esp
no MCM page for my mod...
The script itself
Scriptname dyReanimateQSmcm extends SKI_ConfigBase
; OIDs
int aOID
int bOID
; Toggle states
bool aVal = false;
bool bVal = true;
event OnPageReset(string page)
AddHeaderOption("Group 1")
aOID = AddToggleOption("A", aVal)
bOID = AddToggleOption("B", bVal)
endEvent
event OnOptionSelect(int option)
if (option == aOID)
; ... handle A select
elseIf (option == bOID)
; ... handle B select
endIf
endEvent
I oblivionsly did something wrong..