Jump to content

[WIP] Long Life Milk Mod (Expired Milk Edition!)


SneakyMau5

Recommended Posts

Posted

if you added something new in milk economy script OnInit then it wont be visible till OnInit triggers next time, and it triggers only when quest starts. Not MCM quest but ECO quest.

 

That part I'm aware of so I'm holding back on release until I'm absolutely sure everything I want initialized is initialized.

 

No, I needed a reference to MilkECON in MCM so I can display variables held within.  If I apply the update, even when I set the property in Creation Kit, the property will exist, but not be initialized.  So it won't complain when I use MilkE in MCM, but MilkE will always be None instead of a ticking quest.

 

Anyways, when I'm done you guys can test it out and verify.  If a simple replace works, then I'm happy anyways (less work for me).

 

I'm reducing the number of GlobalVariables I'm using in my script drastically to reduce the number of form items that need to be replicated in an .esp

Posted

If you changed the chairs to something else (like a press E to activate pillory or something) it shouldn't be too hard to reattach the MilkPump script right?

 

Just because I'm at the stage with my modifications where I would like to set up additional stations across skyrim to better test markets.  I think I'm a couple of days away from releasing a stable version with race milk and skyrim wide economy functioning.

 

And I would like to just slap the same styled chairs in those specific spots.

 

Posted

Yeah replaced thrones with previous "activator" pillar. I think it was still there untouched in last version of .esp

 

Currently it works like normal activator, that triggers custom idles. Nothing better can be done currently.

Posted

zax: separated all economy related tasks into MilkECON.  Hopefully it's decently organized and you can follow your way through it.  Hopefully it's easily integratable with whatever you are working on right now.

 

* Skyrim wide milk economy.  If there were more than just milk pumps at Whiterun (there isn't, I didn't add more pumps), you could travel around skyrim and sell your milk to different people!

 

* MCM displays details on what the current state of the market is like, along with special requests.

 

* Race milk remains

 

* Fresh save is required (see readme in zip for details)

 

* You will lose boob levels.

 

* Milk Cuirass is based on Manga.  If you already have one that fits your body type of choice, do not overwrite the existing ones.

 

zax, if it is relatively straightforward for you to add in your work and re-release, feel free.  I am excited to see what you have done.

 

* This is everything (and should be standalone) - do not use this in conjunction with my previous releases.

Milk Mod Economy 2013-04-19.rar

Posted

he means they are so big, they are getting in the way, and making it more difficult to do things.

 

( U know, like playing beach volley ball, or sneaking about in a dungeon " Clunk!" - ( shit, my massive left tit just brushed against that trap mechanis.....Ufrrgh!")

Posted

Irysius, nice! will take  some time to understand every detail of someones code, but could you describe the basic structure at least? Why there is million of different potions and why you start giving different ones at certain milk cnt values?

 

 

what do you mean with "debilitatingly"

 

Its from "debilitating", not sure if its typo or not. And its sumaka's text.

 

 

 


 

Posted

Hey zax,

 

Most of the decisions I've made with regards to number will tend towards the conservative side (ie I am semi-against getting like 10000000 gold from milking super easily)

 

Quick rundown:

 

Fuller breasts (higher milkcnt) == better quality milk.  I thought it was kind of bland to just get "milk" but in greater quantities.

 

Increasing Potion Form ID number == Better Milk (Potion03 is better than Potion00).

 

GetMilkType(int milkCnt, Race race)

I wanted race milk to be different.  To save myself some time (I got lazy), the milk only branches at quality 04.  At this point the race check needs to be made.  If I didn't do that, I would have to create race milk at lower qualities as well, further increasing the number of new Potion Forms.

 

GetMilkQty(int milkCnt)

I wanted to increase the number of bottles you get as well, but not as drastically, hence the extra method to slow down bottle gains at higher milkcnt.

 

----------------------------

 

Market: split into "geographical locations" - I could not justify making Morthal its own region, so I lumped it with Solitude.

 

** Caveat: currently only the Whiterun pumps exist.  Everything I'm going to say below only works when more pumps are installed around Skyrim, but you mentioned you had a different "furniture" that acts as a pump, so I'm deferring the addition of more pumps to you.

 

For a quick run down on the terrible algorithm I use to determine which locations belong to which regional markets, search 

GetMarketIndexFromLocation and observe that I simply compare string names.  (I could not justify the effort of attaching Location Properties for every possible location a milk pump could be in).

 

I've used arrays extensively to reduce the number of code I have to write  (So I can use a bunch of WHILES).  This mostly applies to markets:

0: Caravan (this is the catch all)

1: Dawnstar

2: Falkreath

3: Markarth

4: Orc (if you wanted to set up pumps at orcish strongholds)

5: Riften

6: Solitude

7: Whiterun

8: Windhelm

9: Morrowind (basically Solstheim; again, the benefit of comparing strings is I don't have to require Dragonborn dlc to check if the milk pump is in that location)

 

Properties: int Property MilkEcoXXX

These are the market index.  You can view these values in MCM.  You can consider this the "demand" level.

Range is -500 to 1000.  This number determines how heavily you are taxed when you sell your milk (higher == less tax).

-500 (no demand) is like 80% tax and 700+ (high demand) is like 0% tax if I remember correctly.

 

Properties: int Property MilkDemandXXX

This represents what racial milk each region is craving.  Again, these values are surfaced in MCM.

Whiterun might have a craze for Nord Milk, for example.  If you took a Nord milk maid and milked her at Whiterun region milk pumps, you would get a bonus when selling the maid's milk (currently set at 3x normal price).

 

I had intended this to incentivise people for running around and visiting different places to get their breasts pumped, and recruiting maids of different races.

 

the int in MilkDemand is an enumeration

0: No demand

1: wants Altmer (High Elf) milk

2: Argonian

3: Bosmer (wood elf)

4: Breton

5: Dunmer
6: Imperial

7: Khajiit

8: Nord

9: Orc

10: Redguard

11: Exotic (if the player uses custom race, this is the catch all)

 

MilkDemandCDs == Milk Demand Count Down -> after certain number of ticks, a region would cease to crave a specific race milk.  So Whiterun can lose interest in wanting Nord milk if you wait too long.

 

 

Saturation Penalites - I want to prevent the market from being stagnant.  (imagine, you afk at your computer, everything is at max because you wait so long).  This randomly kills demand if too many markets are at cap simultaneously.

 

--------------------------------------------------------------------------

 

Basically, most important methods (entry points):

MilkEcoCycle(): Manages the market, on an 8 hour GameTime tick.

InitiateTrade(int milkCount, Actor milkMaid): Method you call when you are ready to sell or keep milk (after a pump).

 

For some of the more "calculationy" things, I might have named variables obscurely, but they shouldn't interfere much with the big picture way of how things operate.

 

Ask away if you have more questions though.

 

 

 

 

Posted

Hello, a few things I noticed when using the newest mod. First the filling of breasts seems to stop at 7, but when milked output was only 6. I am using  a cbbe tbbp body mesh and set starting breast size reduction so they were not reduced (liked original body settings). I am happy to report that it supported growth into the super heavy sizes (which makes sense) glad that worked.

I have a request for the milking armor in a cbbe base with slide compatability. If I am not mistaken the cb++ sliders have a manga slide if that is what people prefer.

Posted

Hello, a few things I noticed when using the newest mod. First the filling of breasts seems to stop at 7, but when milked output was only 6. I am using  a cbbe tbbp body mesh and set starting breast size reduction so they were not reduced (liked original body settings). I am happy to report that it supported growth into the super heavy sizes (which makes sense) glad that worked.

I have a request for the milking armor in a cbbe base with slide compatability. If I am not mistaken the cb++ sliders have a manga slide if that is what people prefer.

 

Hi,

 

Did you move out of the chair before the milking sounds are all done?  This was one of the things some of us were discussing.  Currently there remains the possibility for you to leave the chair before all your capacity is milked.  I had put in some messages that would indicate what stage you are at, but removed them from this version because it cluttered the notifications.

 

I think zax had wanted a fixed animation, so everything would be drained regardless down the line (because you can't quit out of the animation).

 

I will also note that if your milk poll time is fast (30 seconds) there's a good chance it will grow during milking, giving you potentially more than what you listed cap is.

 

IF you can find a modeler that can create the milking cuirass with CB++, that'd be great, the meshes are definitely there for any one to tinker with.

Posted

So are the only milking stations in Whiterun?

 

Cos i'm running around all over Skyrim doing quests and what not, quick travel is disabled because i'm a badass, and i don't wanna be running back to Whiterun just because my character is Milk Maid Addict.

And if there aren't any Milking Stations in any other towns, wouldn't it make the milk market pointless at the moment? Becuase i REALLY need gold and the milk market idea is such an excellent idea.

 

EDIT: Just read a few posts above that the stations are planned. Not to worry then.

Posted

irysius, can you enable forum messages? I cant send you pm's, woot.

 

I'm assuming that's checking off the personal messages option?  If so, it is now set to receive.

Posted

Hi,

I think, in the file MilkMCM.psc is a mistake, becauce I can`t compile this file in the CreationKit.

 

 

Here is the error-code:

 

 

Starting 1 compile threads for 1 files...
Compiling "MilkMCM"...
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(0,0): unable to locate script SKI_ConfigBase
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(70,1): variable Pages is undefined
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(70,1): type mismatch while assigning to a none (cast missing or types unrelated)
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(71,1): variable Pages is undefined
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(71,1): only arrays can be indexed
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(71,6): type mismatch while assigning to a none (cast missing or types unrelated)
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(72,1): variable Pages is undefined
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(72,1): only arrays can be indexed
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(72,6): type mismatch while assigning to a none (cast missing or types unrelated)
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(73,1): variable Pages is undefined
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(73,1): only arrays can be indexed
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(73,6): type mismatch while assigning to a none (cast missing or types unrelated)
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(97,2): LoadCustomContent is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(100,2): UnloadCustomContent is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(116,19): variable TOP_TO_BOTTOM is undefined
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(116,1): SetCursorFillMode is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(118,1): AddHeaderOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(119,22): AddTextOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(119,1): type mismatch while assigning to a int (cast missing or types unrelated)
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(121,28): AddTextOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(121,1): type mismatch while assigning to a int (cast missing or types unrelated)
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(123,28): AddTextOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(123,1): type mismatch while assigning to a int (cast missing or types unrelated)
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(126,27): AddTextOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(126,2): type mismatch while assigning to a int (cast missing or types unrelated)
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(128,27): AddTextOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(128,2): type mismatch while assigning to a int (cast missing or types unrelated)
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(130,1): AddEmptyOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(131,1): AddEmptyOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(132,1): AddHeaderOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(133,101): variable OPTION_FLAG_DISABLED is undefined
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(133,26): AddTextOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(133,1): type mismatch while assigning to a int (cast missing or types unrelated)
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(134,104): variable OPTION_FLAG_DISABLED is undefined
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(134,26): AddTextOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(134,1): type mismatch while assigning to a int (cast missing or types unrelated)
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(135,76): variable OPTION_FLAG_DISABLED is undefined
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(135,25): AddTextOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(135,1): type mismatch while assigning to a int (cast missing or types unrelated)
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(137,1): SetCursorPosition is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(139,1): AddHeaderOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(143,29): AddTextOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(143,23): type mismatch while assigning to a int (cast missing or types unrelated)
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(144,32): AddTextOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(144,26): type mismatch while assigning to a int (cast missing or types unrelated)
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(146,31): AddTextOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(146,25): type mismatch while assigning to a int (cast missing or types unrelated)
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(148,31): AddTextOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(148,25): type mismatch while assigning to a int (cast missing or types unrelated)
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(150,31): AddTextOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(150,25): type mismatch while assigning to a int (cast missing or types unrelated)
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(152,31): AddTextOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(152,25): type mismatch while assigning to a int (cast missing or types unrelated)
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(161,19): variable TOP_TO_BOTTOM is undefined
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(161,1): SetCursorFillMode is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(163,1): AddHeaderOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(166,25): AddTextOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(166,3): type mismatch while assigning to a int (cast missing or types unrelated)
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(168,25): AddTextOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(168,3): type mismatch while assigning to a int (cast missing or types unrelated)
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(171,1): AddEmptyOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(172,1): AddEmptyOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(173,1): AddEmptyOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(174,1): AddEmptyOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(176,1): AddHeaderOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(177,33): AddMenuOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(177,1): type mismatch while assigning to a int (cast missing or types unrelated)
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(179,106): variable OPTION_FLAG_DISABLED is undefined
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(179,26): AddTextOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(179,1): type mismatch while assigning to a int (cast missing or types unrelated)
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(180,106): variable OPTION_FLAG_DISABLED is undefined
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(180,26): AddTextOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(180,1): type mismatch while assigning to a int (cast missing or types unrelated)
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(181,106): variable OPTION_FLAG_DISABLED is undefined
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(181,26): AddTextOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(181,1): type mismatch while assigning to a int (cast missing or types unrelated)
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(182,106): variable OPTION_FLAG_DISABLED is undefined
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(182,26): AddTextOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(182,1): type mismatch while assigning to a int (cast missing or types unrelated)
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(184,1): SetCursorPosition is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(185,1): AddHeaderOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(187,23): AddSliderOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(187,2): type mismatch while assigning to a int (cast missing or types unrelated)
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(189,25): AddSliderOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(189,2): type mismatch while assigning to a int (cast missing or types unrelated)
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(191,23): AddSliderOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(191,2): type mismatch while assigning to a int (cast missing or types unrelated)
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(193,23): AddSliderOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(193,2): type mismatch while assigning to a int (cast missing or types unrelated)
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(194,48): variable OPTION_FLAG_DISABLED is undefined
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(194,26): AddTextOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(194,2): type mismatch while assigning to a int (cast missing or types unrelated)
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(196,1): AddEmptyOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(197,1): AddHeaderOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(200,27): AddToggleOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(200,2): type mismatch while assigning to a int (cast missing or types unrelated)
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(202,27): AddToggleOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(202,2): type mismatch while assigning to a int (cast missing or types unrelated)
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(206,24): AddToggleOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(206,2): type mismatch while assigning to a int (cast missing or types unrelated)
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(208,24): AddToggleOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(208,2): type mismatch while assigning to a int (cast missing or types unrelated)
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(211,1): AddEmptyOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(214,70): variable OPTION_FLAG_DISABLED is undefined
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(214,25): AddTextOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(214,2): type mismatch while assigning to a int (cast missing or types unrelated)
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(216,25): AddTextOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(216,2): type mismatch while assigning to a int (cast missing or types unrelated)
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(222,19): variable TOP_TO_BOTTOM is undefined
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(222,1): SetCursorFillMode is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(224,59): variable OPTION_FLAG_DISABLED is undefined
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(224,1): AddTextOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(225,72): variable OPTION_FLAG_DISABLED is undefined
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(225,1): AddTextOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(227,1): AddEmptyOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(229,59): variable OPTION_FLAG_DISABLED is undefined
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(229,1): AddTextOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(230,72): variable OPTION_FLAG_DISABLED is undefined
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(230,1): AddTextOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(232,1): AddEmptyOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(234,59): variable OPTION_FLAG_DISABLED is undefined
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(234,1): AddTextOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(235,72): variable OPTION_FLAG_DISABLED is undefined
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(235,1): AddTextOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(237,1): AddEmptyOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(239,59): variable OPTION_FLAG_DISABLED is undefined
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(239,1): AddTextOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(240,72): variable OPTION_FLAG_DISABLED is undefined
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(240,1): AddTextOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(242,1): AddEmptyOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(244,59): variable OPTION_FLAG_DISABLED is undefined
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(244,1): AddTextOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(245,72): variable OPTION_FLAG_DISABLED is undefined
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(245,1): AddTextOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(247,1): SetCursorPosition is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(249,55): variable OPTION_FLAG_DISABLED is undefined
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(249,1): AddTextOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(250,68): variable OPTION_FLAG_DISABLED is undefined
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(250,1): AddTextOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(252,1): AddEmptyOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(254,61): variable OPTION_FLAG_DISABLED is undefined
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(254,1): AddTextOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(255,74): variable OPTION_FLAG_DISABLED is undefined
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(255,1): AddTextOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(257,1): AddEmptyOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(259,52): variable OPTION_FLAG_DISABLED is undefined
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(259,1): AddTextOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(260,65): variable OPTION_FLAG_DISABLED is undefined
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(260,1): AddTextOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(262,1): AddEmptyOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(264,57): variable OPTION_FLAG_DISABLED is undefined
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(264,1): AddTextOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(265,70): variable OPTION_FLAG_DISABLED is undefined
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(265,1): AddTextOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(267,1): AddEmptyOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(269,61): variable OPTION_FLAG_DISABLED is undefined
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(269,1): AddTextOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(270,74): variable OPTION_FLAG_DISABLED is undefined
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(270,1): AddTextOption is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(281,2): SetInfoText is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(283,2): SetInfoText is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(285,2): SetInfoText is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(287,2): SetInfoText is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(289,2): SetInfoText is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(301,3): SetTextOptionValue is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(306,3): SetTextOptionValue is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(311,3): SetToggleOptionValue is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(314,3): SetToggleOptionValue is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(319,3): SetToggleOptionValue is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(322,3): SetToggleOptionValue is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(326,3): SetTextOptionValue is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(329,51): variable OPTION_FLAG_DISABLED is undefined
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(329,3): SetTextOptionValue is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(342,2): SetSliderDialogStartValue is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(343,2): SetSliderDialogDefaultValue is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(344,2): SetSliderDialogRange is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(345,2): SetSliderDialogInterval is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(347,2): SetSliderDialogStartValue is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(348,2): SetSliderDialogDefaultValue is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(349,2): SetSliderDialogRange is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(350,2): SetSliderDialogInterval is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(352,2): SetSliderDialogStartValue is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(353,2): SetSliderDialogDefaultValue is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(354,2): SetSliderDialogRange is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(355,2): SetSliderDialogInterval is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(357,2): SetSliderDialogStartValue is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(358,2): SetSliderDialogDefaultValue is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(359,2): SetSliderDialogRange is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(360,2): SetSliderDialogInterval is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(367,2): SetSliderOptionValue is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(368,2): SetTextOptionValue is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(371,2): SetSliderOptionValue is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(374,2): SetSliderOptionValue is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(377,2): SetSliderOptionValue is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(383,2): SetMenuDialogOptions is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(384,2): SetMenuDialogStartIndex is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(385,2): SetMenuDialogDefaultIndex is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(401,2): SetTextOptionValue is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(402,2): SetTextOptionValue is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(403,2): SetTextOptionValue is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(404,2): SetTextOptionValue is not a function or does not exist
c:\program files (x86)\steam\steamapps\common\skyrim\Data\Scripts\Source\MilkMCM.psc(405,2): SetMenuOptionValue is not a function or does not exist
No output generated for MilkMCM.psc, compilation failed.
 
Batch compile of 1 files finished. 0 succeeded, 1 failed.
Failed on MilkMCM.psc

Posted

LOL, I ran in to this problem earlier (read: 20 posts ago when I thought I got the MCM shit down).

 

The release version of MCM works off of release scripts.  If you want to be able to work with MCM stuff in Creation Kit, you will need to download their SDK.

 

These are basically .pex files for CK to find.  I'll dig em up if I can find them, but you should be able to locate em on their site.

 

Posted

what programm are you using?

I will translate this Mod and only this overlay is in english.

 

You mean the psc-files,or?

They are in the folder Source.

Posted

what programm are you using?

I will translate this Mod and only this overlay is in english.

 

https://github.com/schlangster/skyui/wiki

 

Go there, download SkyUI SDK 3.1 (I think that's the version my and zax are using), or 3.4 (I haven't upgraded to that myself).

 

You will have the script files and you will be able to compile MilkMCM when those scripts are in the right folders.

 

When you first place them in, open up CK and make sure it compiles first before doing your translation work.

 

** use the latest version, ignore everything i'm saying about 3.1

Posted

anyone remember what page has the required files on it... I've been playing around with a load of new mods this week and now I can't seem to get this working without either crashing when my girls sit down at the milker, having the larger breasts only show up when sitting at the milker...

 

or not even loading an old save before crashing.

 

Just trying to pin down which of the new things is causing the issue.

Posted

If you havent "disabled" before uninstalling then re-installed on same save, two instances of same script might be running thus causing this behavior. Old script thinks that boobs are big, but new one that small. Milker decreases the old scripts big size (and shows it for a while) then new one owerwites it with the new "small size" again.

 

Uninstall mod then play some time without it to cancel all unused onupdate calls. It could help eventually.

Posted

 

Incr. per tick

size increasement per tick

 

 

Let me add to that given the questions you asked.  Curly brackets usually indicate replacement; the number within indicates order.

 

So something like "{0} loves {1}" would be looking for 2 things, one for the first {} and one for the second {}, those are place holders for variables.  Usually the script replaces these with numbers, but I'm not sure if Papyrus does string (text) replacement as well.

 

You can safely ignore these for translation purposes since they are usually always replaced with numbers, and I doubt you need to translate those.

Archived

This topic is now archived and is closed to further replies.

  • Recently Browsing   0 members

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