drgn58 Posted November 11, 2025 Posted November 11, 2025 How can i fix this, i mean first two images which Camilla wears two different clothes and is daily other is robe? Last image not an issue and actually i want that type of clothing. Npcs clothes not stable and changing time to time. Here modlist, I didnt finished yet so i am opening the advices. modlist.txt modlist.txt
traison Posted November 11, 2025 Posted November 11, 2025 Install More Informative Console. Find Camilla. Open the console. Select her. Use MIC to find the armor in slot 32. Use MIC to find the mesh associated with that armor. Query your mod manager for which mod provides that mesh. 1
drgn58 Posted November 11, 2025 Author Posted November 11, 2025 Console says conflict found ond po3_baseobject swapper and error found when reading configs on po3_keyworditemdistributer. Here the logs about these two. po3_BaseObjectSwapper.logpo3_KeywordItemDistributor.log
traison Posted November 11, 2025 Posted November 11, 2025 I have a feeling you didn't actually use MIC. It seems very unlikely KID or BOS would be related here.
drgn58 Posted November 11, 2025 Author Posted November 11, 2025 Actually used and MIC said that. I found more variety clothes and sforzinda do similar job, i uninstalled more variety clothes now i will create bodyslide output then try again.
drgn58 Posted November 11, 2025 Author Posted November 11, 2025 Just curious is there any to move notifications top left to top right and lower the size?
drgn58 Posted November 11, 2025 Author Posted November 11, 2025 Just curious is there any to move notifications top left to top right and lower the size?
traison Posted November 11, 2025 Posted November 11, 2025 16 minutes ago, drgn58 said: Just curious is there any to move notifications top left to top right and lower the size? This might contain the things you're looking for: hudmenu.swf -> scripts -> __Packages -> <default package> -> Messages Edit the swf file with JPEXS.
drgn58 Posted November 11, 2025 Author Posted November 11, 2025 class Messages extends MovieClip { var MessageArray; var ShownCount; var ShownMessageArray; var bAnimating; var onEnterFrame; var ySpacing; static var MAX_SHOWN = 4; static var Y_SPACING = 15; static var END_ANIM_FRAME = 80; static var InstanceCounter = 0; function Messages() { super(); this.MessageArray = new Array(); this.ShownMessageArray = new Array(); this.ShownCount = 0; this.bAnimating = false; } function Update() { var bqueuedMessage = this.MessageArray.length > 0; if(bqueuedMessage && !this.bAnimating && this.ShownCount < Messages.MAX_SHOWN) { this.ShownMessageArray.push(this.attachMovie("MessageText","Text" + Messages.InstanceCounter++,this.getNextHighestDepth(),{_x:0,_y:0})); this.ShownMessageArray[this.ShownMessageArray.length - 1].TextFieldClip.tf1.html = true; this.ShownMessageArray[this.ShownMessageArray.length - 1].TextFieldClip.tf1.textAutoSize = "shrink"; this.ShownMessageArray[this.ShownMessageArray.length - 1].TextFieldClip.tf1.htmlText = this.MessageArray.shift(); this.bAnimating = true; this.ySpacing = 0; this.onEnterFrame = function() { var _loc2_; if(this.ySpacing < Messages.Y_SPACING) { _loc2_ = 0; while(_loc2_ < this.ShownMessageArray.length - 1) { this.ShownMessageArray[_loc2_]._y += 2; _loc2_ = _loc2_ + 1; } this.ySpacing = this.ySpacing + 1; return undefined; } this.bAnimating = false; if(!bqueuedMessage || this.ShownCount == Messages.MAX_SHOWN) { this.ShownMessageArray[0].gotoAndPlay("FadeOut"); } delete this.onEnterFrame; }; this.ShownCount = this.ShownCount + 1; } var _loc2_ = 0; var _loc3_; while(_loc2_ < this.ShownMessageArray.length) { if(this.ShownMessageArray[_loc2_]._currentFrame >= Messages.END_ANIM_FRAME) { _loc3_ = this.ShownMessageArray.splice(_loc2_,1); _loc3_[0].removeMovieClip(); this.ShownCount = this.ShownCount - 1; this.bAnimating = false; } _loc2_ = _loc2_ + 1; } if(!bqueuedMessage && !this.bAnimating && this.ShownMessageArray.length > 0) { this.bAnimating = true; this.ShownMessageArray[0].gotoAndPlay("FadeOut"); } } } i think this one but it loks like no size or position settings.
traison Posted November 11, 2025 Posted November 11, 2025 (edited) Have a look at hudmenu.swf -> sprites -> DefineSprite (HUDMovie) -> frame 1 -> PlaceObject2 (MessagesBlock) There's a transform button at the bottom that appears to allow it to be moved around and resized. Edit: Something to keep in mind about the top right corner is that minimaps and the SkyUI active magic effect icons (among other things) occupy that space. Mod makers will assume messages are in the top left, so expect to have to edit other mods in the future to move their widgets around. Edited November 11, 2025 by traison 1
drgn58 Posted November 12, 2025 Author Posted November 12, 2025 (edited) Ooo okay. I can tolerate moving notifications top left to top right but size is too big. Almost cover screen's left side. Solving this would be enough. Another question is can i use ostim and sexlab together? Nevermind i finished the modding i just move notifications. Edited November 12, 2025 by drgn58
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now