Jump to content

What are you doing right now in Skyrim (Screenshot required)


Recommended Posts

Posted
3 hours ago, donttouchmethere said:

Since when do small creatures get resized? Had OsmelMC something to do with it?

check in xedit, if scale has not been overwritten.

should be 1.

Spoiler

Bard1.thumb.jpg.dc9fa0fde13df66b6506db46376daf5e.jpg

interviewing the new bard.

Posted

Whoring herself out to Ahtar by order of her Mistress Jenassa, who watches from the door.

Spoiler

Skyrim2.thumb.PNG.6d0c8b902c86bf4b1730412b6cb782a5.PNG

 

Being ass-trained by Mistress Jenassa

Spoiler

Skyrim3.thumb.PNG.f711b2d74d46927d932a5f4ad36f973a.PNG

 

Posted

Script made for Discord User Request:

Spoiler

 

 

Spoiler

Scriptname QLG_SimpleScript_CloseTheDoor_trig extends ObjectReference  
{ Simple Script to control Auto Open/Close Door for Skyrim } 
;===- Base Info. -===;
 ;Created: 2020-11-12
 ;Update: 2020-11-12
 ;Author: TobiPL
 ;Unit: M.PC<1>
;===- Var. setup -==================================================;
	;===- Main -===;
	ObjectReference Property QMyDoor Auto
	{ Reference to door }
	;===- Trigger Settings -===;
		Bool Property AutoOpen Auto
		Bool Property AutoClose Auto
		Bool Property LockProtected Auto
	;===- AutoClose -===;
		Bool Property CloseAfterTime Auto
		Int Property CloseDelay Auto
		{ delay to close Door in seconds }
;===============================================;
;===- Main Script -=============================;
;***********************************************;
Event OnTriggerEnter( ObjectReference QRef )
	If( AutoOpen )
		If( LockProtected )
			If( QMyDoor.IsLocked() )
				Return ; protected by lock, can't be open
			EndIf
		EndIf
	;-------------------------------------------;
		If( QMyDoor.GetOpenState() >= 3 )
			QMyDoor.Activate( self )
			If( CloseAfterTime )
				RegisterForSingleUpdate( CloseDelay )
			EndIf
		EndIf
	EndIf
EndEvent 
;***********************************************;
Event OnTriggerLeave( ObjectReference QRef )
	If( AutoClose )
		If( QMyDoor.GetOpenState() <= 2 )
			QMyDoor.Activate( self )
		EndIf
	EndIf
EndEvent
;***********************************************;
Event OnUpdate()
	If( QMyDoor.GetOpenState() <= 2 )
		QMyDoor.Activate( self )
	EndIf
EndEvent
; TheEnd

 

Spoiler

Scriptname QLG_SimpleScript_CloseTheDoor_Key extends ObjectReference  
{ Simple script to control Doors with Lock key and auto close :o... } 
;===- Base Info. -===;
 ;Created: 2020-11-12
 ;Update: 2020-11-12
 ;Author: TobiPL
 ;Unit: M.PC<1>
;===- Var. setup -==================================================;
	;===- Main -===;
	ObjectReference Property QMyDoor Auto
	;===- Lock -===;
	Key Property MyKey Auto
	Bool Property MyKeyReq Auto
	Bool Property OnlyPLayer Auto
	Int Property LockLevel Auto
;===============================================;
;===- Main Script -=============================;
;***********************************************;
Event OnActivate( ObjectReference QRef )
	If( OnlyPlayer )
		If( QRef != Game.GetPlayer() )
			Return
		EndIf
	EndIf
	;===========================================;
	If( MyKeyReq )
		If( Game.GetPlayer().GetItemCount( MyKey ) >= 1 )
			If( QMyDoor.GetOpenState() <= 2 )
				Debug.Notification("You have to close door first!...")
				Return
			EndIf
	;===========================================;
			If( QMyDoor.IsLocked() )
				QMyDoor.Lock( false , true )
				QMyDoor.SetLockLevel( 0 )
				Debug.Notification("You have unlocked that Door!...")
					Else
				Debug.Notification("You have locked that Door!...")
				QMyDoor.Lock( true , true )
				QMyDoor.SetLockLevel( LockLevel )
			EndIf
			Else
				Debug.Notification("You don't have Key for that Door...")
		EndIf
	EndIf
EndEvent
; TheEnd

 

 

Posted

Thanking the Headless Horseman for his help in one of the craziest fun battles I've ever fought in Skyrim. Hamvir's Rest around midnight, it starts pouring down rain as I approach with three followers, I hear all hell break loose with shouts, exploding fire balls, and dragon fire. I find that the Headless Horseman and Farkas are fighting a fucking army of draman master skeleton lords and an undead dragon with spells and arrows flying every direction. Heavy lightning from the storm overhead strikes intermittently sometimes hitting me, I lose two of my followers to the dragon fire, but fight on and finally win. I would have taken pics, but my game tends to crash when I tfc 1 during that much action. Besides it looks better in game for some reason. That was awesome! I saved right before so I can do it over and over again.

 

Spoiler

1879494922_enb2020_11_1201_12_03_62.png.767eb780c58b91369d656382fac4b37c.png918346168_enb2020_11_1201_14_15_11.png.75820eae1145cd48366b31298bee9759.png

 

Posted
On 11/12/2020 at 12:12 AM, T-lam said:

check in xedit, if scale has not been overwritten.

should be 1.

Wait what?

Small creatures getting resized during sexy times is a good thing! (they return to normal (small) size after sex). This should show up in xedit at all, because it's a sexlab resize thing?

Maybe I understood you wrong?

Posted

Been collecting some leftover uniques. Well, mostly Billyro's swords. Completely forgot the time and ended up in Shalidor's maze - at night.

Spoiler

Skyrim4841.png.6a8c1cd05485196092efbdc21fe113a5.png

At least, I actually refilled my lantern for once. Would've been quite a nightmare otherwise.

 

Posted

Wait what

 

In a post madmansgun explained how he is doing it.

How I understood, he scales all creatures to 1 to solve missmatches.

I forwarded this scaling if a mod has changed it and I didn't want to fiddle with loadorder and break my bash.

Sumup, I have no problems with missmatched anims, everything works, however, not sure if this is the reason :)

I don't like red cells in xedit overwriting MNC creatures.

 

Posted
2 hours ago, T-lam said:

I don't like red cells in xedit overwriting MNC creatures.

?

I just started to check for those extensively. Maybe I did something accidentally right by letting MNC win all conflicts in Tes5edit ?

Posted

Never really pay much attention to the quest journal or what i have done. I know I did not do this

Spoiler

20201112170438_1.jpg.88d27471872c293ff38c17751048d431.jpgit would have happened sooner or later but not by me this time? If he dies by any means are you to blame?

.

Posted

Some ppl were talking about Eyes ( on different forum ) so i wanted to try to make my own eyes...

They said that multicolored eyes looks cool... so first thing i wanted to try to make multicolored eyes...

 

lol its pretty easy... :o...

 

but then there was little problem for me...

 i NEVER before was doing eyes...

 

so here is my first time making eyes ^_^ ofc. MAYBE one day i will upload it but atm. i care only about to make at least one RLY good usable eye

so i have to make everything...

 - eye lens

 - eyelashes

 - eye corner

 - eye "background"

 

and ofc. everything have to be 4k... at least 4k ^_^ i was thinking about 8k... but then i realise that even 4k is little too much...

for example Eyes of Aber are using 1k, Skyrim Vanila eyes use mix of 512x512 and 1024x1024

 

there is some eyes in 2k... but non ( at least i dont know any ) eyes in 4k :o

 - but tbh i 'm using only Naruto eyes and Eyes of Aber xDDDDDDDDDDDDDDDDDDD

 

naruto eyes are 2048x2048 :)... because of Sharringan ( it have to be little more detailed )

 

 

 

anywa... i made little lens that i can apply to any effect and any color i want, here is preview:

Spoiler

s12.png.5fb4f6dabaaa5cd77e8c4d95b0ad067c.png

 

Here are two test eyes i made:

Spoiler

s13.png.a7cb326c46c3dacac2b86e4df358f4d3.png

Spoiler

s14.png.b0120c2b9f28aba0e92988c36394cb19.png

 

They are just little different so i can see if multicolored eyes actualy works in game :x...

 

anywa... here is how i made this lens: ( i just took SS every few minutes )

Stage 1:

Spoiler

s7.png.55a27b7d9a57589b9ecd269b1f71b829.png

 

Stage 2:

Spoiler

s8.png.8f6b5717eecd7dc6c33b326b666af644.png

 

Stage 3:

Spoiler

s9.png.10174b57409e808aaa964322c42cbd41.png

 

Stage WTF:

Spoiler

 - naa i actualy deleted that pic. xD

 

Posted
36 minutes ago, MadMansGun said:

watching dragons do funny dances

I feel like he's twerking. Is he twerking? Can a dragon twerk? I think the flailing tail would be quite the nuisance.

Posted
1 hour ago, Mr.Otaku said:

Is he twerking?

no.

1 hour ago, Mr.Otaku said:

Can a dragon twerk?

yes, the dead ones do it all the time.

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

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