CyrianWarlord666 Posted September 30, 2017 Share Posted September 30, 2017 (edited) I created a follower mod for new vegas who has the option to sleep with if you're both in the lucky 38, the only problem is i have no idea how to add the screen fading to black, or the post sex dialog. Edited September 30, 2017 by CyrianWarlord666 Link to comment Share on other sites More sharing options...
dubiousintent Posted September 30, 2017 Share Posted September 30, 2017 The "fade to black" is called an "ApplyImageSpaceModifier" or "IMOD" (Imagespace Modifier). The command is (in the GameMode block) a simple: imod FadeToBlackPermanentand later (often in another script waiting for a condition to be set) followed by a similar: imod <IMODEffectName>where <IMODEffectName> is the name of either an existing "FadeIn" effect from the GECK (such as "FadeInFromBlack4sISFX") or one you create. The "FadeIn" has a duration that determines how slowly it fades from black to normal lighting. Modifiers are created in the editor using the Imagespace Modifier form found in the "World" menu, or from "Special Effects -> Imagespace Modifiers" in the "Object Window". Because "imods" have a duration, you can just put the "post sex dialog" line in your script after the "Fade in", or set up a timer conditional to delay it further. -Dubious- Link to comment Share on other sites More sharing options...
Recommended Posts