Jump to content

FUTA CONTENT THREAD - Futa News and More (1/26/17 Update)


Recommended Posts

Help please!  (Scripting question, but germane to this thread)

 

I'm trying to do something fairly simple in an (extensive) dialogue based overhaul of sex-slaves-for-vanilla-bandit-camps; you can read more about in this thread if interested (starts at post #125): 

http://www.loverslab.com/topic/36140-sex-slaves-for-vanilla-bandit-camps/page-7#entry1825376

All I'm looking for is a simple futa check for a dialogue and SexLab animation branch.  The most direct solution seems to be using Bool Function IsSchlonged(Actor akActor) along with a gender check to the game and/or SexLab.  Pretty standard stuff from what I've seen on the site threads.  When I tried using something like b3lisario's code to call functions from the SOS_API in a script as follows, it did not end well: 

 

 

 

Scriptname FutaCheck extends Quest 
SOS_API SOS
Function OnInit()
    SOS = SOS_API.Get()
EndFunction
Function Foo()
    SOS.SetSize(Game.GetPlayer(), 20)
EndFunction

 

 

 

 

The problem being that the compiler doesn't like it one bit and returns a huge error list when I try to build it.  It looks sort of like the errors of when called scripts aren't unpacked from BSAs, but worse.  All of the SOS_Config.psc / pex files are right where they should be in the scripts folder as far as I can tell.

 

 

 

Starting 1 compile threads for 1 files...
Compiling "FutaCheck"...
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(0,0): unable to locate script SKI_ConfigBase
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(100,68): variable currentVersion is undefined
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(137,2): LoadCustomContent is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(140,2): UnloadCustomContent is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(146,20): variable TOP_TO_BOTTOM is undefined
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(146,2): SetCursorFillMode is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(147,2): AddHeaderOption is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(148,22): AddSliderOption is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(148,2): type mismatch while assigning to a int (cast missing or types unrelated)
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(149,36): AddSliderOption is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(149,2): type mismatch while assigning to a int (cast missing or types unrelated)
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(150,22): AddMenuOption is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(150,2): type mismatch while assigning to a int (cast missing or types unrelated)
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(151,29): AddToggleOption is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(151,2): type mismatch while assigning to a int (cast missing or types unrelated)
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(152,22): AddToggleOption is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(152,2): type mismatch while assigning to a int (cast missing or types unrelated)
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(154,2): AddHeaderOption is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(155,37): AddSliderOption is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(155,2): type mismatch while assigning to a int (cast missing or types unrelated)
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(156,36): AddSliderOption is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(156,2): type mismatch while assigning to a int (cast missing or types unrelated)
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(158,2): SetCursorPosition is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(159,2): AddHeaderOption is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(160,17): AddKeyMapOption is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(160,2): type mismatch while assigning to a int (cast missing or types unrelated)
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(161,19): AddKeyMapOption is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(161,2): type mismatch while assigning to a int (cast missing or types unrelated)
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(162,29): AddKeyMapOption is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(162,2): type mismatch while assigning to a int (cast missing or types unrelated)
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(164,2): AddHeaderOption is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(165,28): AddToggleOption is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(165,2): type mismatch while assigning to a int (cast missing or types unrelated)
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(167,19): AddTextOption is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(167,2): type mismatch while assigning to a int (cast missing or types unrelated)
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(168,15): AddTextOption is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(168,2): type mismatch while assigning to a int (cast missing or types unrelated)
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(169,14): AddTextOption is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(169,2): type mismatch while assigning to a int (cast missing or types unrelated)
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(170,14): AddTextOption is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(170,2): type mismatch while assigning to a int (cast missing or types unrelated)
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(171,14): AddTextOption is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(171,2): type mismatch while assigning to a int (cast missing or types unrelated)
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(176,20): variable TOP_TO_BOTTOM is undefined
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(176,2): SetCursorFillMode is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(178,2): AddHeaderOption is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(181,2): SetCursorPosition is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(183,2): AddHeaderOption is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(189,20): variable TOP_TO_BOTTOM is undefined
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(189,2): SetCursorFillMode is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(192,26): AddSliderOption is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(192,20): type mismatch while assigning to a int (cast missing or types unrelated)
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(193,26): AddSliderOption is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(193,20): type mismatch while assigning to a int (cast missing or types unrelated)
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(194,26): AddTextOption is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(194,20): type mismatch while assigning to a int (cast missing or types unrelated)
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(195,26): AddTextOption is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(195,20): type mismatch while assigning to a int (cast missing or types unrelated)
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(196,26): AddEmptyOption is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(196,20): type mismatch while assigning to a int (cast missing or types unrelated)
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(201,13): variable OPTION_FLAG_NONE is undefined
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(201,6): type mismatch while assigning to a int (cast missing or types unrelated)
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(205,10): variable OPTION_FLAG_DISABLED is undefined
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(205,3): type mismatch while assigning to a int (cast missing or types unrelated)
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(207,2): SetCursorPosition is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(208,26): AddMenuOption is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(208,20): type mismatch while assigning to a int (cast missing or types unrelated)
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(218,12): variable OPTION_FLAG_NONE is undefined
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(218,4): type mismatch while assigning to a int (cast missing or types unrelated)
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(220,12): variable OPTION_FLAG_DISABLED is undefined
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(220,4): type mismatch while assigning to a int (cast missing or types unrelated)
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(225,3): SetCursorPosition is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(226,41): AddToggleOption is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(226,21): type mismatch while assigning to a int (cast missing or types unrelated)
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(227,45): AddSliderOption is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(227,21): type mismatch while assigning to a int (cast missing or types unrelated)
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(228,45): AddSliderOption is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(228,21): type mismatch while assigning to a int (cast missing or types unrelated)
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(229,45): AddEmptyOption is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(229,21): type mismatch while assigning to a int (cast missing or types unrelated)
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(240,1): AddEmptyOption is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(242,21): AddTextOption is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(242,2): type mismatch while assigning to a int (cast missing or types unrelated)
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(246,1): AddTextOption is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(247,1): AddEmptyOption is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(250,2): AddTextOption is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(256,13): variable OPTION_FLAG_DISABLED is undefined
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(256,5): type mismatch while assigning to a int (cast missing or types unrelated)
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(262,10): variable OPTION_FLAG_NONE is undefined
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(262,2): type mismatch while assigning to a int (cast missing or types unrelated)
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(266,21): AddMenuOption is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(266,2): type mismatch while assigning to a int (cast missing or types unrelated)
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(269,49): variable OPTION_FLAG_DISABLED is undefined
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(269,3): AddMenuOption is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(271,19): AddSliderOption is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(271,3): type mismatch while assigning to a int (cast missing or types unrelated)
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(274,18): AddMenuOption is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(274,2): type mismatch while assigning to a int (cast missing or types unrelated)
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(276,15): AddSliderOption is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(276,2): type mismatch while assigning to a int (cast missing or types unrelated)
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(279,1): AddEmptyOption is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(282,9): variable OPTION_FLAG_DISABLED is undefined
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(282,1): type mismatch while assigning to a int (cast missing or types unrelated)
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(298,11): variable OPTION_FLAG_NONE is undefined
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(298,3): type mismatch while assigning to a int (cast missing or types unrelated)
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(302,1): AddTextOption is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(305,28): AddToggleOption is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(305,2): type mismatch while assigning to a int (cast missing or types unrelated)
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(308,25): AddToggleOption is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(308,2): type mismatch while assigning to a int (cast missing or types unrelated)
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(311,1): AddEmptyOption is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(313,19): AddTextOption is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(313,2): type mismatch while assigning to a int (cast missing or types unrelated)
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(315,16): AddTextOption is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(315,2): type mismatch while assigning to a int (cast missing or types unrelated)
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(325,2): SetToggleOptionValue is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(327,18): ShowMessage is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(332,18): ShowMessage is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(335,3): ShowMessage is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_IO.psc(24,7): SendModEvent is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(340,3): ForcePageReset is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(341,3): ShowMessage is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(343,3): ShowMessage is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(348,3): ShowMessage is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(350,3): ShowMessage is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(354,2): SetToggleOptionValue is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(357,2): ShowMessage is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(360,2): SetToggleOptionValue is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(363,2): SetToggleOptionValue is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(366,2): SetToggleOptionValue is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(385,13): variable OPTION_FLAG_NONE is undefined
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(385,5): type mismatch while assigning to a int (cast missing or types unrelated)
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(388,13): variable OPTION_FLAG_DISABLED is undefined
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(388,5): type mismatch while assigning to a int (cast missing or types unrelated)
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(390,4): SetOptionFlags is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(391,4): SetOptionFlags is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(392,4): SetToggleOptionValue is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(395,19): ShowMessage is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(398,4): SendModEvent is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(399,4): ShowMessage is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(402,19): ShowMessage is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(408,4): SendModEvent is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(409,4): ShowMessage is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(421,2): SetSliderDialogStartValue is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(422,2): SetSliderDialogDefaultValue is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(423,2): SetSliderDialogRange is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(424,2): SetSliderDialogInterval is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(426,2): SetSliderDialogStartValue is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(427,2): SetSliderDialogDefaultValue is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(428,2): SetSliderDialogRange is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(429,2): SetSliderDialogInterval is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(431,2): SetSliderDialogStartValue is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(432,2): SetSliderDialogDefaultValue is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(433,2): SetSliderDialogRange is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(434,2): SetSliderDialogInterval is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(436,2): SetSliderDialogStartValue is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(437,2): SetSliderDialogDefaultValue is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(438,2): SetSliderDialogRange is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(439,2): SetSliderDialogInterval is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(441,2): SetSliderDialogStartValue is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(442,2): SetSliderDialogDefaultValue is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(443,2): SetSliderDialogRange is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(444,2): SetSliderDialogInterval is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(446,2): SetSliderDialogStartValue is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(447,2): SetSliderDialogDefaultValue is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(448,2): SetSliderDialogRange is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(449,2): SetSliderDialogInterval is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(455,3): SetSliderDialogStartValue is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(456,3): SetSliderDialogDefaultValue is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(457,3): SetSliderDialogRange is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(458,3): SetSliderDialogInterval is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(460,3): SetSliderDialogStartValue is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(461,3): SetSliderDialogDefaultValue is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(462,3): SetSliderDialogRange is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(463,3): SetSliderDialogInterval is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(466,4): SetSliderDialogStartValue is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(467,4): SetSliderDialogDefaultValue is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(468,4): SetSliderDialogRange is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(469,4): SetSliderDialogInterval is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(471,4): SetSliderDialogStartValue is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(472,4): SetSliderDialogDefaultValue is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(473,4): SetSliderDialogRange is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(474,4): SetSliderDialogInterval is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(485,2): ShowMessage is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(486,2): SendModEvent is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(487,2): SetSliderOptionValue is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(491,2): SetSliderOptionValue is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(495,2): SetSliderOptionValue is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(499,2): SetSliderOptionValue is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(503,2): SetSliderOptionValue is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(507,2): SetSliderOptionValue is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(519,4): SetSliderOptionValue is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(522,4): SetSliderOptionValue is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(536,21): ShowMessage is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(542,3): SetKeyMapOptionValue is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(545,3): SetKeyMapOptionValue is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(548,3): SetKeyMapOptionValue is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(569,2): SetToggleOptionValue is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(573,2): SendModEvent is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(574,2): SetSliderOptionValue is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(578,2): SetSliderOptionValue is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(582,2): SetToggleOptionValue is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(588,2): SetSliderOptionValue is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(594,2): SetSliderOptionValue is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(597,2): SetMenuOptionValue is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(601,2): SetSliderOptionValue is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(605,2): SetSliderOptionValue is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(608,2): SetKeyMapOptionValue is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(611,2): SetKeyMapOptionValue is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(614,2): SetKeyMapOptionValue is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(625,2): SetMenuDialogStartIndex is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(626,2): SetMenuDialogDefaultIndex is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(627,2): SetMenuDialogOptions is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(638,2): SetMenuDialogStartIndex is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(639,2): SetMenuDialogDefaultIndex is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(640,2): SetMenuDialogOptions is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(671,1): SetMenuDialogStartIndex is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(672,1): SetMenuDialogDefaultIndex is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(673,1): SetMenuDialogOptions is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(680,2): SetMenuOptionValue is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(694,2): SetMenuOptionValue is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(703,2): SetInfoText is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(705,2): SetInfoText is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(707,2): SetInfoText is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(709,2): SetInfoText is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(711,2): SetInfoText is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(713,2): SetInfoText is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(715,2): SetInfoText is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(717,2): SetInfoText is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(719,2): SetInfoText is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(721,2): SetInfoText is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(723,2): SetInfoText is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(725,2): SetInfoText is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(727,2): SetInfoText is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(729,2): SetInfoText is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(731,2): SetInfoText is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(733,2): SetInfoText is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(735,2): SetInfoText is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(737,2): SetInfoText is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(739,2): SetInfoText is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(741,2): SetInfoText is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(743,2): SetInfoText is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(745,2): SetInfoText is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(747,2): SetInfoText is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(750,3): SetInfoText is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(752,3): SetInfoText is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(754,3): SetInfoText is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(756,3): SetInfoText is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(761,4): SetInfoText is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(763,4): SetInfoText is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(765,4): SetInfoText is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(767,4): SetInfoText is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(781,1): variable pages is undefined
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(781,1): type mismatch while assigning to a none (cast missing or types unrelated)
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(782,1): variable pages is undefined
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(782,1): only arrays can be indexed
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(782,6): type mismatch while assigning to a none (cast missing or types unrelated)
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(783,1): variable pages is undefined
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(783,1): only arrays can be indexed
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(783,6): type mismatch while assigning to a none (cast missing or types unrelated)
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(789,3): variable pages is undefined
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(789,3): only arrays can be indexed
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(789,8): type mismatch while assigning to a none (cast missing or types unrelated)
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(791,3): variable pages is undefined
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(791,3): only arrays can be indexed
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(791,8): type mismatch while assigning to a none (cast missing or types unrelated)
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(839,3): SetSliderOptionValue is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(845,2): SetSliderOptionValue is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(858,3): SetSliderOptionValue is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(864,2): SetSliderOptionValue is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(940,25): variable OPTION_FLAG_DISABLED is undefined
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(940,2): SetOptionFlags is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(949,24): ShowMessage is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(951,26): variable OPTION_FLAG_NONE is undefined
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_Config.psc(951,3): SetOptionFlags is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SOS_SetupQuest_Script.psc(464,8): stop is not a function or does not exist
No output generated for FutaCheck, compilation failed.
Batch compile of 1 files finished. 0 succeeded, 1 failed.
Failed on FutaCheck

 

 

 

Any insight and assistance would be greatly appreciated!  I'm fairly new to Papyrus coding, but have had no problem calling functions in SexLabFramework once the property is set, so I was hoping this would be as simple.  So far, not so much . . .

Link to comment

 

SOS_Config.psc(0,0): unable to locate script SKI_ConfigBase

 

You are missing the source files for SkyUI. Unfortunately, the way Papyrus "compiling" works, you need to have the source of every script in your dependency graph.

 
You can find the SkyUI SDK here.

 

 

That makes sense.  I didn't realize Papyrus pulled through the compiled script to look for other dependent scripts too.  I'll pull those files down and continue to tinker -- hopefully that does the trick.  Tremendous appreciation for the help and the prompt reply!

 

[Edit]  This worked.  I was able to get a successful futa/not-futa test detection on a script attached to dialogue using the following Boolean logic: 

 

 

If (akSpeaker.GetActorBase().GetSex() == 1) && (sos.IsSchlonged(akSpeaker)) && (sos.GetSchlong(akSpeaker) != emptySchlong) ==True

debug.notification("Futa")

Else

debug.notification("Not Futa")

EndIf

 

 

 

Thanks again for the help!

Link to comment

 

 

 Your draenei girl is so amazing.Could you tell me how to get the hooves mod (which can use DIY textures/color)?  :P

 

Hi, all those characters are Normal races (imperial or nord)

The mods I use on that pic are

 

-Hoof meshes you can find here http://www.loverslab.com/files/file/1420-draenei-race-with-hoof-armors-by-trykz/

-TDN equipable horns http://www.nexusmods.com/skyrim/mods/57198/?

-HDT piercing sets http://www.loverslab.com/topic/54623-uunp-hdt-piercing-sets/

-Hoenheim Equipable horsecock http://www.loverslab.com/topic/41244-sos-equipable-horse-cocks/ 

(I did retextures on most of these pics)

-Equipable Tail http://www.loverslab.com/topic/41244-sos-equipable-horse-cocks/?p=1035471

 

Sadly I dont have a preset atm, they are on my old computer

 

Link to comment

So, the UNP futa page states that XP32 XPMS is installed, but on here it states the more advanced version of that skeleton should be instead? Should I run into an issue using the advanced version?

 

You probably won't. I am using XPMSE myself with SOS UNP (you are talking about this, right?) and I haven't run into any issues-though the installation and the mcm menu are a bit tricky...

 

Link to comment
I have a curious question to pose to everyone following this thread, as I've only seen snippets of discussion along these lines in older posts:
 
- From an immersion standpoint, either explicitly within your game or just in your head-canon, how did the "Futa-ness" of your character or Futa based NPCs happen?
 
  1. - The Gaga option (born this way)
  2. - Result of a spell (opens up options for Futa origin stories)
  3. ​- Enchanted item
  4. - Result of Aedric/Daedric influence
  5. - A being who can change form at will
  6. - An infection, similar to vampirism (mods based on this)
  7. - Something else?
 
The accompanying question: how common is a Futa-girl in your game world / in your head?
 
Even if you set your SOS settings to 10% for females, that's still quite a lot (mine are 0% BTW). Even with settings at 1%, I would still want to rationalize the occurrence. The flip side is a 90-100% setting where it becomes almost the norm and that opens up a completely different dynamic regarding character interaction. Particularly if you run mods which yield many more female NPCs in the game world than what you get with the Vanilla game like I do . (It makes for some interesting all girl bandit bands sometimes!) My short answer on that is do whatever you like, but in a dialogue based mod it makes a difference on intensity and nature of the reaction when your girl whips out her rhythm-stick.  Does the NPC respond with a bored, "Oh, look at that . . ." or a shocked/bewildered, "What the what?" Particularly if she's sporting an equine appendage -- I haven't figured out the rationale behind that option yet. It all comes down to the perception: freak vs. cherished rarity vs. commonplace, and writing dialogue to reflect it.
 
I write a bit of fiction recreationally, and I wrote a vignette a few months ago that includes the subject and I went the "result of a spell" route, but
fused it with the Daedric influence notion as the result of spell research (recently rediscovered by the Dragonborn in a crypt) from a long extinct
sect of the cult of Sanguine. As a result, Futa-ness is unheard of at the beginning of the story, but becomes a mage spell and eventually an item
enchantment. I'm not saying it's the only way to look at the idea (far from it!), so I'm inquiring about other perspectives that may become dogma for
dialogue to follow within a game world.
 
I'm interested in hearing the LL community's thoughts on the matter and not just wondering for the sake of wondering. As I continue to pound out
volumes of dialogue options in the mod-to-a-mod I'm working on (Bandit Slaves for Vanilla + MBC), the Futa based branches are an interesting offshoot that your ideas may help me navigate.  Firstly, I'm trying to cover possibilities with Futa Players, but eventually maybe Futa captives as well.  Either way, origin rationale helps frame a story, and that's basically what Skyrim is at heart: an interactive story.
Link to comment

Forewarning: Long post ahead!

 

[...] - From an immersion standpoint, either explicitly within your game or just in your head-canon, how did the "Futa-ness" of your character or Futa based NPCs happen?

  1. - The Gaga option (born this way)
  2. - Result of a spell (opens up options for Futa origin stories)
  3. ​- Enchanted item
  4. - Result of Aedric/Daedric influence
  5. - A being who can change form at will
  6. - An infection, similar to vampirism (mods based on this)
  7. - Something else?
The accompanying question: how common is a Futa-girl in your game world / in your head? [...]

 

This is indeed a very interesting question, and is something I've though about since I do care about immersion. The way something fits into the world and lore (even when talking about headcanon) and blends with the story is almost as important for me as the content itself, and this applies to futas as well.

 

First and foremost, I have to say my opinion is precisely mine, and it's also conditioned by the fact that I use two specifc mods: Yiffy Age of Skyrim and my very own Shark Race mod. Having said that, I have multiple characters that are futa and not all of them for the same reasons, so this is kind of a breakdown of the most important ones:

  • Any of the female shark race characters I have as futas (including the specific NPCs added in my Follower/NPC plugin for the mod) are due to option 1 aka being born like that. At first I just added futa support to the race for the sake of it, but eventually Kuroyami (one of the main contributors to the mod and its lore) helped develop a backstory for it that I think turned out pretty good, so it stayed. Basically, evolution/biology lead to part the females of the race developing functional male genitals, possibly as a means of ensuring reproduction and the persistance of the race.
  • Bretons in the game are turned to Kygarra (hyenas) by Yiffy Age, so it was natural for the females to end up as futas (do some research on hyenas if you don't know abut them and you'll see why). So I guess that would be option 1 as well. Even then, "real" hyena biology would only mean they would have pseudo-schlongs that are almost like the real thing, but it wouldn't be functional and they would still be females. Whenever I use pregnancy/inflation mods, I explain them being "functional" as either the result of some genetic thing that effectively turns them into herms (so option 1) or some kind of spell or magic (so option 2 or maybe 3) that turns their pseudo-schlongs into fully-functional for male reproduction or whatever other ends.
  • Dremoras are all futas too, but in their case it would be a mix of both option 1 and option 4: Daedric influence (mainly from Sanguine and perhaps from Molag Bal as well) being the original cause of them being born like that in the first place. I am aware many Daedric lords have their own "specifc" group of servants/Dremora (and there are also "free" Dremora as well), but I think it fits into the whole "demonic" theme they have going on, so non-Sanguine/Molag/Mehrunes servants are still like that in my headcanon.

Those are the main characters/races and the reasons for them. I do have my opinion on the specific reasons you listed, and they are as follows:

  • 1.- As evidenced by my explanations above, I mainly use the "Born that way" option. I think it's somewhat more "natural", and it also effectively handwaves the lack of reaction from the PC (or NPC) to the fact that they have a schlong as a "female". I am aware the PC is effectively a expressionless, motionless mime, but still, if she was to randomly grow a schlong during the game's events, you would expect there to be some kind of reaction, even if it's just some line of dialog that reads "OMG I just grew a schlong, what in Oblivion happened!?" to a mage or something like that. That kind of stuff, while maybe possible, would be really hard to implement ingame (moreso for the player than for NPCs, but sill). On the other hand, if the PC/NPC was born like that, it would be something natural, and thus you can ignore the lack of such "sudden awareness".
  • 2. and 3.- Given all the things that can be done with magic, this is not a bad option either IMO. It even allows for some variety: you can have an Alteration (or perhaps Restoration) spell that makes the character grow an actual "biological" schlong, but a Conjuration spells that summons a "bound schlong". Note that I included option 3 as well because an item enchantment is basically a spell applied to an object AFAIK.
  • 4.- This could be related with magic as well, but since it requires the intervention of an Aedra/Daedra to some extent, I think it's separate. I do think that Aedra are unlikely to have anything to do with this; the more carnal matters are usually related with Daedra (specifically Sanguine/Molag and the like). Maybe Dibella could be involved for the sake of sex itself, though, while Mara could do it with family (aka reproduction/offspring) in mind.
  • Not a big fan of shapeshifting beings just like that, so option 5 is not for me. Nothing against it, though.
  • 6.- Surely an interesting idea. I haven't thought about it yet, mainly because the few mods that try to implement it are not to my taste, but it does have some potential. It would also allow for some fun stuff, like something akin to what vampires/werewolves have. For example, the curse makes the character specially horny and requires then to use the schlong on someone/something from time to time, and if they don't, they may loose control like a crazed werewolf or a starving vampire would (though in this case the result would be way more naughty :P).

As for the last question, it may be infered from my previous paragraphs, but futas are not widespread but still not a very rare occurence either. All Breton females are futa, and female Dremora as well (though the latter only appear ingame due to mods; there aren't any female Dremora in the vanilla game). Also the sharks, but there are only like 2 or 3 NPCs so far.

 

End of long post.

 

Kinda off-topic, but I'm curious about that vignette you mentioned. Have you posted it somewhere? And if so, would you mind sharing the link? I would like to take a look at it, and I'm probably not the only one  :shy:.

Link to comment

My usual preference would be that it is natural. It makes sense for me to think it was there from the start, and the character has accepted it. 

 

post-62699-0-22267400-1488412978_thumb.pngpost-62699-0-33343600-1488412996_thumb.png

 

Also, since it probably fits, some Sharks. 

post-62699-0-82453000-1488413686_thumb.pngpost-62699-0-12269900-1488413707_thumb.pngpost-62699-0-84115300-1488413789_thumb.png

Last one is a test of Wet Function Redux with the Selachii. 

 

The only exception I can point to, technically still fits. Though only if you count the backstory, and not just the specific in-game visual. Anyway, the character is Mitha, a Dunmer Mercenary, who took a job to explore a Dwemer ruin, one that was very difficult to find. What she found inside was very strong automatons, which she could barely deal with. To the point that she was almost killed by them, and left for dead. 

 

The location's secret, though, was that it was a medical facility meant to repair just that sort of damage, even responding to it long after it last worked on patients. Though perhaps unlike how it once was, the process was now highly painful, causing her undue amounts of pain. The process replaced a lot, and while much of it is not visible, some things are. Her eyes were replaced, and perhaps fittingly, she still has her schlong. 

 

post-62699-0-77911500-1488413039_thumb.png

Link to comment

 

 

Forewarning: Long post ahead!

 

[...] - From an immersion standpoint, either explicitly within your game or just in your head-canon, how did the "Futa-ness" of your character or Futa based NPCs happen?

  1. - The Gaga option (born this way)
  2. - Result of a spell (opens up options for Futa origin stories)
  3. ​- Enchanted item
  4. - Result of Aedric/Daedric influence
  5. - A being who can change form at will
  6. - An infection, similar to vampirism (mods based on this)
  7. - Something else?
The accompanying question: how common is a Futa-girl in your game world / in your head? [...]

 

This is indeed a very interesting question, and is something I've though about since I do care about immersion. The way something fits into the world and lore (even when talking about headcanon) and blends with the story is almost as important for me as the content itself, and this applies to futas as well.

 

First and foremost, I have to say my opinion is precisely mine, and it's also conditioned by the fact that I use two specifc mods: Yiffy Age of Skyrim and my very own Shark Race mod. Having said that, I have multiple characters that are futa and not all of them for the same reasons, so this is kind of a breakdown of the most important ones:

  • Any of the female shark race characters I have as futas (including the specific NPCs added in my Follower/NPC plugin for the mod) are due to option 1 aka being born like that. At first I just added futa support to the race for the sake of it, but eventually Kuroyami (one of the main contributors to the mod and its lore) helped develop a backstory for it that I think turned out pretty good, so it stayed. Basically, evolution/biology lead to part the females of the race developing functional male genitals, possibly as a means of ensuring reproduction and the persistance of the race.
  • Bretons in the game are turned to Kygarra (hyenas) by Yiffy Age, so it was natural for the females to end up as futas (do some research on hyenas if you don't know abut them and you'll see why). So I guess that would be option 1 as well. Even then, "real" hyena biology would only mean they would have pseudo-schlongs that are almost like the real thing, but it wouldn't be functional and they would still be females. Whenever I use pregnancy/inflation mods, I explain them being "functional" as either the result of some genetic thing that effectively turns them into herms (so option 1) or some kind of spell or magic (so option 2 or maybe 3) that turns their pseudo-schlongs into fully-functional for male reproduction or whatever other ends.
  • Dremoras are all futas too, but in their case it would be a mix of both option 1 and option 4: Daedric influence (mainly from Sanguine and perhaps from Molag Bal as well) being the original cause of them being born like that in the first place. I am aware many Daedric lords have their own "specifc" group of servants/Dremora (and there are also "free" Dremora as well), but I think it fits into the whole "demonic" theme they have going on, so non-Sanguine/Molag/Mehrunes servants are still like that in my headcanon.

Those are the main characters/races and the reasons for them. I do have my opinion on the specific reasons you listed, and they are as follows:

  • 1.- As evidenced by my explanations above, I mainly use the "Born that way" option. I think it's somewhat more "natural", and it also effectively handwaves the lack of reaction from the PC (or NPC) to the fact that they have a schlong as a "female". I am aware the PC is effectively a expressionless, motionless mime, but still, if she was to randomly grow a schlong during the game's events, you would expect there to be some kind of reaction, even if it's just some line of dialog that reads "OMG I just grew a schlong, what in Oblivion happened!?" to a mage or something like that. That kind of stuff, while maybe possible, would be really hard to implement ingame (moreso for the player than for NPCs, but sill). On the other hand, if the PC/NPC was born like that, it would be something natural, and thus you can ignore the lack of such "sudden awareness".
  • 2. and 3.- Given all the things that can be done with magic, this is not a bad option either IMO. It even allows for some variety: you can have an Alteration (or perhaps Restoration) spell that makes the character grow an actual "biological" schlong, but a Conjuration spells that summons a "bound schlong". Note that I included option 3 as well because an item enchantment is basically a spell applied to an object AFAIK.
  • 4.- This could be related with magic as well, but since it requires the intervention of an Aedra/Daedra to some extent, I think it's separate. I do think that Aedra are unlikely to have anything to do with this; the more carnal matters are usually related with Daedra (specifically Sanguine/Molag and the like). Maybe Dibella could be involved for the sake of sex itself, though, while Mara could do it with family (aka reproduction/offspring) in mind.
  • Not a big fan of shapeshifting beings just like that, so option 5 is not for me. Nothing against it, though.
  • 6.- Surely an interesting idea. I haven't thought about it yet, mainly because the few mods that try to implement it are not to my taste, but it does have some potential. It would also allow for some fun stuff, like something akin to what vampires/werewolves have. For example, the curse makes the character specially horny and requires then to use the schlong on someone/something from time to time, and if they don't, they may loose control like a crazed werewolf or a starving vampire would (though in this case the result would be way more naughty :P).

As for the last question, it may be infered from my previous paragraphs, but futas are not widespread but still not a very rare occurence either. All Breton females are futa, and female Dremora as well (though the latter only appear ingame due to mods; there aren't any female Dremora in the vanilla game). Also the sharks, but there are only like 2 or 3 NPCs so far.

 

End of long post. 

 

Kinda off-topic, but I'm curious about that vignette you mentioned. Have you posted it somewhere? And if so, would you mind sharing the link? I would like to take a look at it, and I'm probably not the only one  :shy:.

 

 

Wow.  Thanks Blaze69 for the thoughtful response!  If others respond with a fraction of the reasoning you did, I'll be quite satisfied.  That was way more feedback than I expected anyone to write and it was all very valuable to me and absolutely appreciated.  I'll pile it all into my mental feedback filter and see where my dialogue branches take me while trying to not write PC choices and NPC responses that pigeon-hole any origin solution at the sake of all others.

 

Side note: On a humorous point, I'm also writing one-line NPC comments with conditions in the mod, and one that came to mind today was, "Hey, don't point that thing at me!" in response to a naked or exposed Futa character, but would apply to regular males as well.  I could probably code it to only trigger if aroused/erect as well as exposed.  Revealing armor (especially custom armor) might be a challenge to code my way around the detections.  Someone else was already doing something similar and identified the pitfalls:  ck-help-check-for-clothednaked-pc/

 

As to the vignette, I hesitated to mention it at all, but had a "what-the-hell" moment.  It's not posted anywhere, and beyond that not a single soul has ever read it.  My writing is deeply personal and done exclusively for my own expressive outlet.  I have, however, given serious thought to posting it to Literotica.com someday, or share it here on LL if there is interest.  So, in short, I'm not saying no, just that I'm not there yet.  I tend to go back and re-edit things I've written (sometimes months or years later) and so I have difficulty declaring something "done" or sharing a WIP.  Loose story ends sometimes have a mind of their own, and my perfectionist streak works overtime sometimes.  Your interest in the vignette does nudge me in the positive direction.  It's probably grown a bit beyond just a vignette at this point too, and currently looks more like a couple of chapters with the first being a lesbian focus, then the Futa aspect coming in the second.  (Homophonic puns being just a happy accident. ;))

Link to comment

Interesting point you raise there.

 

I often change between my various characters, and in extension, my mod profiles. This often results in massive changes to the game world, and the "backstory" tends to change with it. I guess I like to be flexible about it.

 

 

 

Some examples:

 

For instance, one of my characters, a hardy nord berserker, is the only futa in her otherwise male/female world, but born that way. This results in "surprises" for other characters. So option 1.

 

Then we have my breton vampire/succubus spellcaster, who became so due to her transformation. There are others in her world, but they are rare, and all magical in nature. So she'd naturally be regarded with suspicion. So option 2, 4 or 6, depending on how you see it.

 

My wood elf archer on the other hand lives in a world where roughly 50% of all females are natural-born futas, so nobody bats an eye. Option 1.

 

Then there's my redguard warrior, who lives in a world (almost) exclusively populated by futas, and therefore is nothing out of the ordinary. Option 1 again.

 

And the newest addition is my "dwemer" cyborg/mechromancer, who became that way surgically (cybernectically), and "spreads" it to (i.e. physically modifies) others of her choice. She's the one whom I made the dwemer cyborg schlong for, incidentally. Option 7, or maybe 3, I guess?

Link to comment

 

I have a curious question to pose to everyone following this thread, as I've only seen snippets of discussion along these lines in older posts:
 
- From an immersion standpoint, either explicitly within your game or just in your head-canon, how did the "Futa-ness" of your character or Futa based NPCs happen?
 
  1. - The Gaga option (born this way)
  2. - Result of a spell (opens up options for Futa origin stories)
  3. ​- Enchanted item
  4. - Result of Aedric/Daedric influence
  5. - A being who can change form at will
  6. - An infection, similar to vampirism (mods based on this)
  7. - Something else?
 
The accompanying question: how common is a Futa-girl in your game world / in your head?
 
Even if you set your SOS settings to 10% for females, that's still quite a lot (mine are 0% BTW). Even with settings at 1%, I would still want to rationalize the occurrence. The flip side is a 90-100% setting where it becomes almost the norm and that opens up a completely different dynamic regarding character interaction. Particularly if you run mods which yield many more female NPCs in the game world than what you get with the Vanilla game like I do . (It makes for some interesting all girl bandit bands sometimes!) My short answer on that is do whatever you like, but in a dialogue based mod it makes a difference on intensity and nature of the reaction when your girl whips out her rhythm-stick.  Does the NPC respond with a bored, "Oh, look at that . . ." or a shocked/bewildered, "What the what?" Particularly if she's sporting an equine appendage -- I haven't figured out the rationale behind that option yet. It all comes down to the perception: freak vs. cherished rarity vs. commonplace, and writing dialogue to reflect it.
 
I write a bit of fiction recreationally, and I wrote a vignette a few months ago that includes the subject and I went the "result of a spell" route, but

fused it with the Daedric influence notion as the result of spell research (recently rediscovered by the Dragonborn in a crypt) from a long extinct

sect of the cult of Sanguine. As a result, Futa-ness is unheard of at the beginning of the story, but becomes a mage spell and eventually an item

enchantment. I'm not saying it's the only way to look at the idea (far from it!), so I'm inquiring about other perspectives that may become dogma for

dialogue to follow within a game world.

 
I'm interested in hearing the LL community's thoughts on the matter and not just wondering for the sake of wondering. As I continue to pound out

volumes of dialogue options in the mod-to-a-mod I'm working on (Bandit Slaves for Vanilla + MBC), the Futa based branches are an interesting offshoot that your ideas may help me navigate.  Firstly, I'm trying to cover possibilities with Futa Players, but eventually maybe Futa captives as well.  Either way, origin rationale helps frame a story, and that's basically what Skyrim is at heart: an interactive story.

 

Unless I'm using the special potion provided by Milk Mod Economy for given NPCs, I go with option #1. If the Dragon Break/The Warp in the West is possible in Tamriel then someone or something causing all Mer and Beast Races to become as intersexed as Boethia her/himself (Elder Scroll tampering?)isn't out of the question.

Link to comment

 

 

I have a curious question to pose to everyone following this thread, as I've only seen snippets of discussion along these lines in older posts:
 
- From an immersion standpoint, either explicitly within your game or just in your head-canon, how did the "Futa-ness" of your character or Futa based NPCs happen?

  1. - The Gaga option (born this way)
  2. - Result of a spell (opens up options for Futa origin stories)
  3. ​- Enchanted item
  4. - Result of Aedric/Daedric influence
  5. - A being who can change form at will
  6. - An infection, similar to vampirism (mods based on this)
  7. - Something else?

​​

The accompanying question: how common is a Futa-girl in your game world / in your head?

Unless I'm using the special potion provided by Milk Mod Economy for given NPCs, I go with option #1. If the Dragon Break/The Warp in the West is possible in Tamriel then someone or something causing all Mer and Beast Races to become as intersexed as Boethia her/himself (Elder Scroll tampering?)isn't out of the question.

 

 

​Great feedback so far!  Thanks all, and keep the comments coming.  There has to be more opinions out there, as the diversity of the responses so far have shown me.  Holy crap, I'd have never thought of a Dwemer cybernetic medical option! 

 

"Under the Hood" dialogue logic ramble here:

 

 

Interestingly, so far the leading early contender seems to be the #1 "born this way" option, which from a dialogue coding standpoint sidesteps a problem I'd already decided how to solve but hadn't written yet.  Namely, return conversations (already written) but the Futa state with each event.  It's easy to do a re-detect upon re-initiation of dialogue to enable or disable the Futa branches (i.e., PC leaves then returns to NPC, which is likely given the dialogue branch structure), but if the PC was Futa during interaction #1, and not in interaction #2 (or vice-versa), then the dialogue around such gets a bit tricky.  Option #1 almost requires the Futa state (presence or absence) to be permanent, whatever it is.  All of the other options are free from this assumption and the branch logic becomes much more complicated.  This idea steers me towards writing around option #1 as the default priority, and put the other possibilities on the shelf for now while tackling more fruitful aspects of the dialogue interaction.

 

 

 

What I'm loving about the way the dialogue structure is evolving so far is the same question posed to different NPCs (captives) will, more than likely, produce different dialogue responses based on their sect faction (i.e., background) and race, and even the same question repeated to the same NPC may yield a differently worded response, even if the overall meaning is the same.  This carries huge weight in the immersion aspect of the game world for me since it makes the NPCs seem more like people and less like input/output calculators, even though that's exactly what they are.

Link to comment

 

Made these as a request, a lowly demon vs my Draenei, if anybody is interested ^^

 

 

 

01.jpg

 

02.jpg

 

03.jpg

 

04.jpg

 

05.jpg

 

06.jpg

 

07.jpg

 

08.jpg

 

09.jpg

 

 

Love your futas, can we maybe get some futa on futa ?  heart.gif

 

Thanks ^^ I will see what I can do tongue.png

Link to comment

 

I have a curious question to pose to everyone following this thread, as I've only seen snippets of discussion along these lines in older posts:
 
- From an immersion standpoint, either explicitly within your game or just in your head-canon, how did the "Futa-ness" of your character or Futa based NPCs happen?
 
  1. - The Gaga option (born this way)
  2. - Result of a spell (opens up options for Futa origin stories)
  3. ​- Enchanted item
  4. - Result of Aedric/Daedric influence
  5. - A being who can change form at will
  6. - An infection, similar to vampirism (mods based on this)
  7. - Something else?
 
The accompanying question: how common is a Futa-girl in your game world / in your head?
 
Even if you set your SOS settings to 10% for females, that's still quite a lot (mine are 0% BTW). Even with settings at 1%, I would still want to rationalize the occurrence. The flip side is a 90-100% setting where it becomes almost the norm and that opens up a completely different dynamic regarding character interaction. Particularly if you run mods which yield many more female NPCs in the game world than what you get with the Vanilla game like I do . (It makes for some interesting all girl bandit bands sometimes!) My short answer on that is do whatever you like, but in a dialogue based mod it makes a difference on intensity and nature of the reaction when your girl whips out her rhythm-stick.  Does the NPC respond with a bored, "Oh, look at that . . ." or a shocked/bewildered, "What the what?" Particularly if she's sporting an equine appendage -- I haven't figured out the rationale behind that option yet. It all comes down to the perception: freak vs. cherished rarity vs. commonplace, and writing dialogue to reflect it.
 
I write a bit of fiction recreationally, and I wrote a vignette a few months ago that includes the subject and I went the "result of a spell" route, but

fused it with the Daedric influence notion as the result of spell research (recently rediscovered by the Dragonborn in a crypt) from a long extinct

sect of the cult of Sanguine. As a result, Futa-ness is unheard of at the beginning of the story, but becomes a mage spell and eventually an item

enchantment. I'm not saying it's the only way to look at the idea (far from it!), so I'm inquiring about other perspectives that may become dogma for

dialogue to follow within a game world.

 
I'm interested in hearing the LL community's thoughts on the matter and not just wondering for the sake of wondering. As I continue to pound out

volumes of dialogue options in the mod-to-a-mod I'm working on (Bandit Slaves for Vanilla + MBC), the Futa based branches are an interesting offshoot that your ideas may help me navigate.  Firstly, I'm trying to cover possibilities with Futa Players, but eventually maybe Futa captives as well.  Either way, origin rationale helps frame a story, and that's basically what Skyrim is at heart: an interactive story.

 

 

I usually prefer the Aedric or Daedric origin and sometimes the parasite thing, however I think that all of the choices and combinations are quite possible and interesting.

I did my research on futanari a while ago and I found a connection between the origin of the word and what the ancient Japanese thought as Gods, so from my point of view the divine aspect of futification -a gift from gods or demons- was the most meaningful one.

 

 

Link to comment
  1. - The Gaga option (born this way)
  2. - Result of a spell (opens up options for Futa origin stories)
  3. ​- Enchanted item
  4. - Result of Aedric/Daedric influence
  5. - A being who can change form at will
  6. - An infection, similar to vampirism (mods based on this)
  7. - Something else?

 

I place importance on the purity of my player character and their follower(s) so the answer to this will always be #1, though since this is a fantasy world I am open to #5, such as in the case of Evil's succubus follower.  Edit: I'll also add, just for the record, that I am no fan of the type of futanari that has both a schlong and a clitoris.  In real-world examples, these two are mutually exclusive; one has one or the other, not both.

 

 

The accompanying question: how common is a Futa-girl in your game world / in your head?

 

Literally the only futanari in my game are my player character and the follower Eola, both of whom I had painstakingly designed prior to starting the game (as Bretons using Manga body - and yes the population treats the player character as Breton) so that I wouldn't have to tweak anything after the game was already in progress, thus preserving the sense that both characters were born that way.*  This serves the dual purpose of maintaining a special status for those two characters while also underscoring the specific femininity of the rest of the female population.  I'll add that no males in my game ever get schlongified either, as it is impossible to fully strip them, even accidentally.

 

*The lone exception was the necessity to define Eola's schlong dimensions through EFF's "tattoos" dialogue, as this is, to the best of my knowledge, the only way of accomplishing such edits.

Link to comment

Love your futas, can we maybe get some futa on futa ?  heart.gif

 

Well here you go ^^ enjoy.

 

A01.jpg

 

 

 

A02.jpg

 

A03.jpg

 

A04.jpg

 

A05.jpg

 

A06.jpg

 

A07.jpg

 

B01.jpg

 

B02.jpg

 

B03.jpg

 

B04.jpg

 

B05.jpg

 

 

 

And a bonus ^^

 

 

C01.jpg

 

Somebody is hungry.

C02.jpg

 

C03.jpg

 

C04.jpg

 

 

 

Didn't make gifs but made some webms here "Red vs Purple".

Link to comment

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
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. For more information, see our Privacy Policy & Terms of Use