Jump to content

Recommended Posts

Posted

 

 

 

Ed86,

 

My dialogue checking for milk maid faction wasn't working so I went into console and tried to find the faction. 

In the latest version (2015-01-21) is that faction missing? 

 

It showed up in CK when I was adding it as a condition, but I can't find the faction in-game.

 

Thanks

i guess its bcuz it has no name

 

 

THen how are you adding them to it when you add them to MilkMaidFaction in MilkQUEST.psc?

 

And .... how can I actually USE it now that you have so kindly MADE it? :)

 

its done through MilkQUEST script ; Function AssignSlot(Actor akActor) ;make Actor a MILKmaid

faction is only used to show actor is milkmaid, nothing else

 

you can make hard dependency to script or me make mod event

 

 

 

OK we're getting too far ahead based on my earlier question about making a milkmaid through dialogue.

Forget about that for a second :)

 

All I'm trying to do is determine if the NPC I'm talking to is a milkmaid. So that I can create some custom dialogue that only happens when talking to a milkmaid.

 

EXAMPLE:

For my Female PC

 

check GetIsSex female for my PC and also for the NPC

then I check for playableCharacter and ActorTypeNPC

 

What I'm TRYING to do is check GetInFaction MME_MilkMaidFaction (that's how it shows up in the list) so that this piece of dialogue only shows up is the NPC is a milkmaid.

 

 

BECAUSE I'm just learning this stuff, I don't know why I see "MME_MilkMaidFaction" in the list, yet I only see you adding milkmaids to "MilkMaidFaction" in MikQUEST. 

 

AND... I don't know why my check isn't working. I'm thinking I need to declare milkmod somewhere or something... or would this work:

Faction Property MilkMaidFaction Auto

 

But that would mean I'd need to have a script fragment for every piece of dialogue where I check this faction. Does that sound right? I don't know why it shows up in the list, but after I save and compile everything, if I open it up, that faction that used to say "MME_MilkMaidFaction" changes to "INVALID"

 

So... I must be leaving out something important :)

 

 

And I really appreciate your help with this. A simple faction check is ideal for what I'm doing right now IF I can get it to work

Posted

 

 

 

 

Ed86,

 

My dialogue checking for milk maid faction wasn't working so I went into console and tried to find the faction. 

In the latest version (2015-01-21) is that faction missing? 

 

It showed up in CK when I was adding it as a condition, but I can't find the faction in-game.

 

Thanks

i guess its bcuz it has no name

 

 

THen how are you adding them to it when you add them to MilkMaidFaction in MilkQUEST.psc?

 

And .... how can I actually USE it now that you have so kindly MADE it? :)

 

its done through MilkQUEST script ; Function AssignSlot(Actor akActor) ;make Actor a MILKmaid

faction is only used to show actor is milkmaid, nothing else

 

you can make hard dependency to script or me make mod event

 

 

 

OK we're getting too far ahead based on my earlier question about making a milkmaid through dialogue.

Forget about that for a second :)

 

All I'm trying to do is determine if the NPC I'm talking to is a milkmaid. So that I can create some custom dialogue that only happens when talking to a milkmaid.

 

EXAMPLE:

For my Female PC

 

check GetIsSex female for my PC and also for the NPC

then I check for playableCharacter and ActorTypeNPC

 

What I'm TRYING to do is check GetInFaction MME_MilkMaidFaction (that's how it shows up in the list) so that this piece of dialogue only shows up is the NPC is a milkmaid.

 

 

BECAUSE I'm just learning this stuff, I don't know why I see "MME_MilkMaidFaction" in the list, yet I only see you adding milkmaids to "MilkMaidFaction" in MikQUEST. 

 

AND... I don't know why my check isn't working. I'm thinking I need to declare milkmod somewhere or something... or would this work:

Faction Property MilkMaidFaction Auto

 

But that would mean I'd need to have a script fragment for every piece of dialogue where I check this faction. Does that sound right? I don't know why it shows up in the list, but after I save and compile everything, if I open it up, that faction that used to say "MME_MilkMaidFaction" changes to "INVALID"

 

So... I must be leaving out something important :)

 

 

And I really appreciate your help with this. A simple faction check is ideal for what I'm doing right now IF I can get it to work

 

i think you need hard dependency(MilkModNEW.esp as master) for that to work

or do somethings close to 

	if Game.GetModbyName("Schlongs of Skyrim - Core.esm") != 255
		FormList SOS_Factions = Game.GetFormFromFile(0x00000d62, "Schlongs of Skyrim - Core.esm") as FormList	;SOS_Faction
		int i = 0
		while i <= SOS_Factions.GetSize() && hasSchlong == False
			if akActor.IsInFaction(SOS_Factions.GetAt(i) as faction) == true
				hasSchlong = True
			endif
			i +=1
		endwhile
	endif

script way to check faction

Posted

I mighta got it.... but now I don't have time to dick around with it... hehehe.... maybe I can test tomorrow.

 

 

Bah... tested it and even with MME as a hard dependency, it's not working and I don't know why. That faction not showing up in game might be an issue. I've never heard of an invisible faction before :)

 

I think for now I'm going to convert the dialogues I had set aside for milkmaids, so they work with female followers instead. Meanwhile I can keep looking into this. And maybe YOU can have a look and see if you've created that faction correctly.... not that I'm any kind of expert or critic... but.... I think it should be findable by name so we can check its ID and see if it's being applied to milkmaids 

 

Edit again...

I think the faction check fails because it's not named. When I save my mod and reopen it, that check for faction gets tagged as INVALID and when I look into it a bit more it appears the property is returning a Null Form error. 

 

 

Posted

I mighta got it.... but now I don't have time to dick around with it... hehehe.... maybe I can test tomorrow.

 

 

Bah... tested it and even with MME as a hard dependency, it's not working and I don't know why. That faction not showing up in game might be an issue. I've never heard of an invisible faction before :)

 

I think for now I'm going to convert the dialogues I had set aside for milkmaids, so they work with female followers instead. Meanwhile I can keep looking into this. And maybe YOU can have a look and see if you've created that faction correctly.... not that I'm any kind of expert or critic... but.... I think it should be findable by name so we can check its ID and see if it's being applied to milkmaids 

 

Edit again...

I think the faction check fails because it's not named. When I save my mod and reopen it, that check for faction gets tagged as INVALID and when I look into it a bit more it appears the property is returning a Null Form error. 

 

Milk Mod Economy 2015-01-24.rar

Posted

Bah.... I just came in to tell you I think I figured out MY problem.... which isn't YOUR problem... that's why it's called "my problem". :)

 

Bug in CK... or maybe intended. *shrug*

CK strips any esp files from the master list when you save a mod. So I'd select MilkModNew.esp when loading CK and everything would be okie dokie until I saved. 

I did everything I needed to do in CK, saved, then ran TES5Edit and added MilkModNEW.esp as a Master File again. 

 

Everything started working... the faction check works.

 

I just have to remember to re-add MME as a hard master dependency every time I edit the mod in CK.

 

Sux to be me.... but it works

 

So.... my apologies for having you run around in your mod.... but ... it really shoulda had a name anyways :)

 

And now I can have dialogue that only shows up for Milk Maids. This is fucking awesome! :)

Posted

GotMilk v2.2FAC attached to THIS post for testing in case anyone's interested...

 

I've tested it with Milk Mod 2015-1-21 and 2015-1-24. PLease don't post comments here on Ed's thread about it, but use the GotMilk thread. 

 

Thanks.

 

Ed86,

Milk Mod just keeps getting better and better! :)

THANKS!

Posted

GotMilk v2.2FAC attached to THIS post for testing in case anyone's interested...

 

I've tested it with Milk Mod 2015-1-21 and 2015-1-24. PLease don't post comments here on Ed's thread about it, but use the GotMilk thread. 

 

Thanks.

 

Ed86,

Milk Mod just keeps getting better and better! :)

THANKS!

well actually i dont know what else to do, i guess mod have reached v1

Posted

Hi everyone.

 

I know this has cropped up alot in this thread. But I have been searching and reading for days with no positive result. This is the ONLY mod that refuses to show up in MCM. I have everything working. Even the dialogues and stories, animations, pumps EVerything seems to work. But milk production is not enabled. I get the notification to enable it in MCM but no matter what i try. consols setstage command, cleaners. saves, new games reloading, utility mods. Nothing will bring this menu up.

 

Im running on current skyrim. SKyUI 4.1 SKSE 1.7.1 Milk mod economy 24-01-15 with all dependancies in place. I just dont understand why it wont show up. Are there any manual console commands to just get the production running? all other modes and menu tweaks i'll just have to live without. Nothing i try will force the mod to show in MCM. I have lots of mods and have tried various combinations to pick out conflicts and i have cleaned out scripts and savegames but with no luck what so ever. the ingame items work and respond. but milking does nothing.

 

I really would love to play with this mod but currently it serves no purpose but looks right now and it's dissapointing that im so close but so far. please if someone knows the reason for this slap me in the face with it >.< Cheers all :3

Posted

SKSE is up to 1.7.2 now, not sure if that will help. Have you tried the console command :-

 

setstage ski_configmanagerinstance 1

 

It forces MCM to relook for all mods with MCM options

Posted

SKSE is up to 1.7.2 now, not sure if that will help. Have you tried the console command :-

 

setstage ski_configmanagerinstance 1

 

It forces MCM to relook for all mods with MCM options

 

Ah ok I'll update to 1.7.2 and give it a go. yeah the setstage command only reloads all the other mods every time it's weird. Thanks though I'll give this update a shot!

Posted

First let me say that this is my favorite Mod in Skyrim right now. Period. Yes, above even the lightsabers. I can't wait to see more growth (pun intended) and development for this.

 

Four quick. questions.

 

First of all...how many times do you need to milk the farm 'cows' to turn in the quest "A Very Special Cheese?" (Which I assume is daily and your own doesn't count)

 

Second of all, I'm starting to see errors in my error logs about the program and was wondering if it could be contributing to a series of random CTDs I suddenly started having (I doubt it, since I've had this from the beginning).

 

[01/27/2015 - 09:02:06PM] error: Array index 10 is out of range (0-9)
stack:
[MME_MilkEcon (2C01D4E2)].milkecon.MilkEcoSaturationEvent() - "MilkECON.psc" Line 668
[MME_MilkEcon (2C01D4E2)].milkecon.MilkEcoCycle() - "MilkECON.psc" Line 192
[MME_MilkEcon (2C01D4E2)].milkecon.OnUpdateGameTime() - "MilkECON.psc" Line 182
[01/27/2015 - 09:02:06PM] error: Array index 10 is out of range (0-9)
stack:
[MME_MilkEcon (2C01D4E2)].milkecon.MilkEcoSaturationEvent() - "MilkECON.psc" Line 668
[MME_MilkEcon (2C01D4E2)].milkecon.MilkEcoCycle() - "MilkECON.psc" Line 192
[MME_MilkEcon (2C01D4E2)].milkecon.OnUpdateGameTime() - "MilkECON.psc" Line 182
 

Third (and I may have just missed this), at what point can you start to "infect" your followers and transform them into Milk Maids?
 
Finally, I see options for "Sex Curse" and "Bimbo" when it comes to milk effects. Are those planned features, other mods or something else entirely? The Succubus one is enabled as I do have PSQ installed.
 
Thank you!
 
-Honey
Posted

Is there a reason why the milk pumps are 100% blue?

 

Zaz Animations has three files in its dowload section, you need all three.

I'm guessing you never downloaded/installled the textures file

Posted

Is there a reason that the milk pumps are not where they are spored to be. 

yes, there is a reason, you did something wrong during install, maybe some city replacement mod

 

 

First let me say that this is my favorite Mod in Skyrim right now. Period. Yes, above even the lightsabers. I can't wait to see more growth (pun intended) and development for this.

 

Four quick. questions.

 

First of all...how many times do you need to milk the farm 'cows' to turn in the quest "A Very Special Cheese?" (Which I assume is daily and your own doesn't count)

 

Second of all, I'm starting to see errors in my error logs about the program and was wondering if it could be contributing to a series of random CTDs I suddenly started having (I doubt it, since I've had this from the beginning).

 

[01/27/2015 - 09:02:06PM] error: Array index 10 is out of range (0-9)
stack:
[MME_MilkEcon (2C01D4E2)].milkecon.MilkEcoSaturationEvent() - "MilkECON.psc" Line 668
[MME_MilkEcon (2C01D4E2)].milkecon.MilkEcoCycle() - "MilkECON.psc" Line 192
[MME_MilkEcon (2C01D4E2)].milkecon.OnUpdateGameTime() - "MilkECON.psc" Line 182
[01/27/2015 - 09:02:06PM] error: Array index 10 is out of range (0-9)
stack:
[MME_MilkEcon (2C01D4E2)].milkecon.MilkEcoSaturationEvent() - "MilkECON.psc" Line 668
[MME_MilkEcon (2C01D4E2)].milkecon.MilkEcoCycle() - "MilkECON.psc" Line 192
[MME_MilkEcon (2C01D4E2)].milkecon.OnUpdateGameTime() - "MilkECON.psc" Line 182
 

Third (and I may have just missed this), at what point can you start to "infect" your followers and transform them into Milk Maids?
 
Finally, I see options for "Sex Curse" and "Bimbo" when it comes to milk effects. Are those planned features, other mods or something else entirely? The Succubus one is enabled as I do have PSQ installed.
 
Thank you!
 
-Honey

 

well i'm mostly satisfied with it, so im not sure sure there will be much growth, unless something changes

1.1) i think its repeatable quest, so it'll never end

1.2) this quest is not from this mod

2.0) who knows... you obviously haven't done reset when it was required, therefore you have outdated data that can cause CTDs

3.0) at any point

Finally) these are sexlabhormones options, those are planned features form other mod, The Succubus one is leveling you skills(cheat) therefore i don't use it

Posted

Ed86-

 

If I want to make someone I'm talking to in dialogue, into a milkmaid, I'm thinking I need to send something like this:

 

SendModEvent(eventName="MME_AddMilkMaid", strArg="<YOUR_ARGUMENTS>", numArg=<NUMBER_OF_ARGUMENTS>)

 

What am I supposed to be using for arguments?

 

in dialogue... the Actor I want to transform into a milkmaid, is referred to as akSpeaker.

Is that going to work when sending the event?

 

 

Posted

Ed86-

 

If I want to make someone I'm talking to in dialogue, into a milkmaid, I'm thinking I need to send something like this:

 

SendModEvent(eventName="MME_AddMilkMaid", strArg="<YOUR_ARGUMENTS>", numArg=<NUMBER_OF_ARGUMENTS>)

 

What am I supposed to be using for arguments?

 

in dialogue... the Actor I want to transform into a milkmaid, is referred to as akSpeaker.

Is that going to work when sending the event?

hm... i think you should send something like

 

int MME_AddMilkMaid = ModEvent.Create("MME_AddMilkMaid") ; Int Does not have to be named "MME_AddMilkMaid" any name would do

ModEvent.PushForm(MME_AddMilkMaid, MILKmaid) ; Form The animation target

ModEvent.Send(MME_AddMilkMaid)

Posted

Found the pumps but when I get on I get a message then when I close it the game crashes, what might I have misted this time.

Did you make sure to reset your SexLab animation registry?

Posted

 

Found the pumps but when I get on I get a message then when I close it the game crashes, what might I have misted this time.

Did you make sure to reset your SexLab animation registry?

 

considering I do not know how to do that no.

Posted

It's been a half an hour and MCM refuses to load milk mod. The milk machines, cuirass, etc are all functioning but mme won't show up in MCM. Not sure what could be the cause of this :(

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

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