Skyrim Special Edition

File information

Last updated

Original upload

Created by

sync67

Uploaded by

sync67

Virus scan

Safe to use

About this mod

I always found the MCM menu image for XPMSSE to feel out of place when compared to the aesthetic of Skyrim. This mod alters the MCM menu to replace the image with a new custom, higher quality one.

Requirements
Permissions and credits
Changelogs
Overview

XPMSSE's mod configuration menu (MCM) has a custom image that, in my opinion, doesn't fit well into the aesthetic of Skyrim. It also generally appears pixelated and low quality. This mod replaces the image with a custom, higher quality one. This mod contains no plugin, because it simply overwrites some files included with XPMSSE.

Requirements

  • XP32 Maximum Skeleton Special Extended - XPMSSE
  • SkyUI

Installation

Download the file and install with a mod manager (Mod Organizer 2 or Vortex). Select the option you want in the FOMOD installer. Allow these files to overwrite XPMSSE. To uninstall, simply remove with your desired mod manager. Since this mod changes scripts, it is a good idea to only use it with a new save.

Options

There are five custom images to choose from, as well as an image randomizer option. Three images are "title screens" created using Elder Scrolls Online images of the Breton, High Elf, and Nord heroes; one is a similar graphic made from an image of all three ESO heroes together; and the last is a text only graphic. The image randomizer option allows the MCM to randomly select one of the three "title screen" images of the ESO heroes to display each time the menu is opened.

Details
Spoiler:  
Show
In the original mod MCM menu script, the image is offset so that it is centred in the menu. To replace the image with a larger one and have it positioned correctly, the script has to be altered slightly. Permissions for the XPMSSE scripts were opened on January 5, 2021, with the mod page permissions stating the following:

Script files:
Do what you want with them.

As such, I edited the original source script (XPMSEMCM.psc) and recompiled it with the Creation Kit. Click below to see the lines changed in the code:

Original Code:

Spoiler:  
Show
; Load custom logo in DDS format
if (a_page == "")
; Image size 256x256
; X offset = 376 - (height / 2) = 258
; Y offset = 223 - (width / 2) = 95
LoadCustomContent("xpmse/res/mcm_logo.dds", 258, 95)
return
else
UnloadCustomContent()
endIf


Modified Code for Single Image Replacement Options:
Spoiler:  
Show
; Load custom logo in DDS format
if (a_page == "")

LoadCustomContent("xpmse/res/mcm_logo.dds")
return

else

UnloadCustomContent()

endIf


Modified Code for the Image Randomizer Option:
Spoiler:  
Show
; Load custom logo in DDS format
If (a_page == "")
   
Int Int_MCM_Image_Randomizer = Utility.RandomInt(1,3)
       
If Int_MCM_Image_Randomizer == 1
LoadCustomContent("xpmse/res/s67_MCM_Logo_1.dds")
Return
           
ElseIf Int_MCM_Image_Randomizer == 2
LoadCustomContent("xpmse/res/s67_MCM_Logo_2.dds")
Return
            
ElseIf Int_MCM_Image_Randomizer == 3
LoadCustomContent("xpmse/res/s67_MCM_Logo_3.dds")
Return
    
EndIf
       
Else

UnloadCustomContent()
       
EndIf

No other changes were made to the existing code, so everything should function normally. Just the image positioning will be changed.

Compatibility

This mod should be compatible with any other mod, unless it also changes the same files or script in XPMSSE. Fully compatible with XPMSSE - Fixed Scripts by foreverphoenix (that mod changes different scripts).

Credits

The XPMSE Team for XPMSSE and for opening permissions to allow modifications.
ZeniMax Online Studios for the CGI images from ESO promotional material. No copyright infringement is intended.
Thanks to Wenderer for his FOMOD Creation Tool.
Thanks to Darkfox127 for his excellent Creation Kit tutorials.
Thanks to Bethesda for providing the Creation Kit and for publishing the game in the first place.


Disclaimer:
Spoiler:  
Show
This mod is not made, guaranteed, supported, or endorsed by Microsoft, Bethesda Game Studios, Zenimax, or any of their affiliates.

THE RESOURCES HEREIN ARE PROVIDED"AS IS" AND WITHOUT WARRANTIES OF ANY KIND EITHER EXPRESSED OR
IMPLIED, TO THE FULLEST EXTENT PERMISSIBLE PURSUANT TO APPLICABLE LAW. AUTHOR/UPLOADER DOES NOT WARRANT THAT THE RESOURCES PROVIDED BY THE AUTHOR/UPLOADER WILL BE ERROR-FREE, THAT DEFECTS WILL BE CORRECTED, OR THAT THIS SITE OR THE SERVER THAT MAKES IT AVAILABLE ARE FREE OF, INCLUDING BUT NOT LIMITED TO, VIRUSES, MALWARE, OR OTHER HARMFUL COMPONENTS. AUTHOR/UPLOADER DOES NOT WARRANT OR MAKE ANY REPRESENTATIONS REGARDING THE USE OF, OR THE RESULT OF THE USE OF THE RESOURCES PROVIDED HEREIN IN TERMS OF THEIR CORRECTNESS, ACCURACY, RELIABILITY, OR OTHERWISE. YOU (AND NOT AUTHOR/UPLOADER) ASSUME THE ENTIRE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. THE AUTHOR/UPLOADER DOES NOT
WARRANT, ENDORSE, OR ASSUME LIABILITY FOR ANY THIRD-PARTY CONTENT THAT MAY BE PROVIDED AS LINKS, MOD CONTENT, OR OTHERWISE. THE VIEWS AND OPINIONS EXPRESSED BY THE AUTHOR/UPLOADER ARE THEIRS ALONE, AND DO NOT REFLECT THE OFFICIAL POSITION OR POLICY OF ANY OTHER ENTITY WHATSOEVER WITH WHICH THEY HAVE BEEN, ARE NOW, OR WILL BE AFFILIATED. THE AUTHOR/UPLOADER DOES NOT WARRANT OR MAKE ANY REPRESENTATIONS REGARDING THE USE OF, OR THE RESULT OF THE USE OF OPINIONS AND VIEWS EXPRESSED THAT MAY OR MAY NOT BE INTERPRETED AS ADVICE, IN TERMS OF THEIR CORRECTNESS, ACCURACY, RELIABILITY, TIMELINESS, OR OTHERWISE. ANY CONTENT PROVIDED BY THE AUTHOR/UPLOADER IS NOT INTENDED TO MALIGN ANY RELIGION, ETHNIC GROUP, CLUB, ORGANIZATION, COMPANY, INDIVIDUAL, OR ANYONE OR ANYTHING. THE ABOVE EXCLUSION MAY NOT APPLY TO YOU, TO THE EXTENT THAT APPLICABLE LAW DOES NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES.