Только изменив скрипт МСМ - найти в коде обработку ивента OnPageReset и вписать туда что-то вроде
Event OnPageReset(string page)
SetCursorFillMode(TOP_TO_BOTTOM)
if (page == "{MY_FIRST_PAGE_NAME}")
LoadCustomContent("{PATH_TO_TEXTURE}", xPos, ypos)
return
else
UnloadCustomContent()
endIf
......
EndEvent
https://github-wiki-see.page/m/lmstearn/skyui/wiki/MCM-API-Reference
LoadCustomContent(string source, float x = 0.0, float y = 0.0)
Loads an external file.
Once custom content has been loaded, it's shown in the option panel and the option list is hidden.
To clear the custom content and show the option list again, use UnloadCustomContent.
Parameters:
source - The path to the loaded file relative to Data/Interface/. Supported formats are .swf, for animated/interactive content, and .dds for images.
x (optional) - The horizontal offset relative to the top-left corner of the option panel.
y (optional) - The vertical offset relative to the top-left corner of the option panel.