Jump to content

Adding an image to the MCM menu


Recommended Posts

Posted

It is quite easy to do.

 

First you need a DDS file as image.

 

Then inside the event OnPageReset(string a_page), you have to load the image.

Be aware that when an image is displayed nothing else is displayed.

Usually it is done when the a_page==""

 

Something like:

 

Event OnPageReset(string a_page)
  if (a_page == "")
    LoadCustomContent("MyPicturedds", 10, 14)
    return
  endIf
  UnloadCustomContent()
 
  ...

 

The actual image has to be stored in "Interface\"
You can use sub-folders if you like.
 LoadCustomContent("MyModName\\MyPicturedds")
and place the image in "Interface\MyModName\"
 
 
Posted

No idea, sorry.

You posted in Skyrim section.

 

I can only answer for Skyrim. Never modded FNV or FO3.

Archived

This topic is now archived and is closed to further replies.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...