Tyrgalon Posted October 12, 2017 Posted October 12, 2017    Okay so I changed Function MaidReset() debug.Trace("MilkModEconomy maid reset cycle") int i = 0 while ( i < MilkMaid.Length ) debug.Trace("MilkModEconomy maid array reset " + i + " of " + MilkMaid.Length) MaidRemove(MilkMaid[i]) i += 1 endWhile >>> MilkMaid = new Actor[20] StorageUtil.FormListClear(none,"MME.MilkMaid.List") EndFunction to MilkMaid = new Actor[100] I must say, compiling this is an art in itself.  Anyway, I created a new safe file, reset the maid count (just to be sure), pushed my level to 40 via debug, spawned 30 people, made them milkmaids and at the 21st it said "no more slots". I double checked it and even went the opposite way: making it 2 max (MilkMaid = new Actor[2]). That sort of worked. With the array having only two elements, I repeated the process and this time I could make one milk maid (at lvl 40).  So something is working, but there seems to be another part of the code that checks the limit of the maids. Would you, by chance, know where to find that?  now you need to change max MME.Progression.Level in mcmscript or Milklvl0fix() or add you self lots of progression milkings so mod raises your level above 40 and you get more slots  Ahh thank you, I was just about to reverse engineer the whole thing. I've made some small changes to the Milklvl0fix() function and it works like a charm (until my computer catches fire)   What things have you actually changed, because I was wondering about increasing the limits/levels earlier, but haven´t had time to look into it?
Guest Posted October 12, 2017 Posted October 12, 2017    Okay so I changed Function MaidReset() debug.Trace("MilkModEconomy maid reset cycle") int i = 0 while ( i < MilkMaid.Length ) debug.Trace("MilkModEconomy maid array reset " + i + " of " + MilkMaid.Length) MaidRemove(MilkMaid[i]) i += 1 endWhile >>> MilkMaid = new Actor[20] StorageUtil.FormListClear(none,"MME.MilkMaid.List") EndFunction to MilkMaid = new Actor[100] I must say, compiling this is an art in itself.  Anyway, I created a new safe file, reset the maid count (just to be sure), pushed my level to 40 via debug, spawned 30 people, made them milkmaids and at the 21st it said "no more slots". I double checked it and even went the opposite way: making it 2 max (MilkMaid = new Actor[2]). That sort of worked. With the array having only two elements, I repeated the process and this time I could make one milk maid (at lvl 40).  So something is working, but there seems to be another part of the code that checks the limit of the maids. Would you, by chance, know where to find that?  now you need to change max MME.Progression.Level in mcmscript or Milklvl0fix() or add you self lots of progression milkings so mod raises your level above 40 and you get more slots  Ahh thank you, I was just about to reverse engineer the whole thing. I've made some small changes to the Milklvl0fix() function and it works like a charm (until my computer catches fire)   Don't suppose this might work its way into the "production" version of MME?
Ed86 Posted October 12, 2017 Author Posted October 12, 2017     Okay so I changed Function MaidReset() debug.Trace("MilkModEconomy maid reset cycle") int i = 0 while ( i < MilkMaid.Length ) debug.Trace("MilkModEconomy maid array reset " + i + " of " + MilkMaid.Length) MaidRemove(MilkMaid[i]) i += 1 endWhile >>> MilkMaid = new Actor[20] StorageUtil.FormListClear(none,"MME.MilkMaid.List") EndFunction to MilkMaid = new Actor[100] I must say, compiling this is an art in itself.  Anyway, I created a new safe file, reset the maid count (just to be sure), pushed my level to 40 via debug, spawned 30 people, made them milkmaids and at the 21st it said "no more slots". I double checked it and even went the opposite way: making it 2 max (MilkMaid = new Actor[2]). That sort of worked. With the array having only two elements, I repeated the process and this time I could make one milk maid (at lvl 40).  So something is working, but there seems to be another part of the code that checks the limit of the maids. Would you, by chance, know where to find that?  now you need to change max MME.Progression.Level in mcmscript or Milklvl0fix() or add you self lots of progression milkings so mod raises your level above 40 and you get more slots  Ahh thank you, I was just about to reverse engineer the whole thing. I've made some small changes to the Milklvl0fix() function and it works like a charm (until my computer catches fire)   Don't suppose this might work its way into the "production" version of MME?  unlikely
tookachinchilla Posted October 12, 2017 Posted October 12, 2017  No, you can only buy it/ find on random NPCs loot Must have been a bug then, but I had a follower use a milk pump, with feeding active, and she started producing lactacid, causing her belly to keep growing.
chajapa Posted October 13, 2017 Posted October 13, 2017   No, you can only buy it/ find on random NPCs loot Must have been a bug then, but I had a follower use a milk pump, with feeding active, and she started producing lactacid, causing her belly to keep growing.   Milk pumps feed lactacid. I think in Debug of the MCM is a checkbox for free lactacid. That will feed them no matter what. If you have it in your pocket though and that box is not checked, it will use YOUR lactacid to feed them. Pretty sure that's how it works if I am remembering right.
LinksSword Posted October 15, 2017 Posted October 15, 2017 Is it safe to activate more then one milkpump esp? mainly because npc's seem to have a hard time using the bound ones for some reason.
Ed86 Posted October 15, 2017 Author Posted October 15, 2017 Is it safe to activate more then one milkpump esp? mainly because npc's seem to have a hard time using the bound ones for some reason.You can use fancy and non fancy esp together
g0ring Posted October 15, 2017 Posted October 15, 2017 What things have you actually changed, because I was wondering about increasing the limits/levels earlier, but haven´t had time to look into it?  So here's the function: int Function Milklvl0fix() int milklvl = ((StorageUtil.GetFloatValue(none,"MME.Progression.Level") + 1) / 2) as int ;Debug.notification(milklvl) ;0.5 => int 0 If milklvl < 1 return 1 Else return milklvl EndIf EndFunction It either returns 1 or milklvl. milklvl is our maid limit, so we want it to be as high as the amount of maids we want.  This part will calculate the value of milklvl int milklvl = ((StorageUtil.GetFloatValue(none,"MME.Progression.Level") + 1) / 2) as int StorageUtil.GetFloatValue(none,"MME.Progression.Level"), as you might have guessed already, is our progression level. Say you are at level 40 (MCM menu max), the calculation would be (40 + 1 ) / 2 = a maximum of 20 maids.  But hey, that would equal 20.5 and you normally round .5 to the next bigger number, right? No! Since it's defined as an integer, everything after the decimal point gets truncated.  Now you can do a little thinking yourself and alter the function (while not breaking it) to return a higher number. Since you apparently know how to compile all this when you're done, this shouldn't be a problem for you.  If you really can't get it to work, you can use CheatEngine to get the MCM value higher than 40. That should also work.
Ed86 Posted October 15, 2017 Author Posted October 15, 2017 But hey, that would equal 20.5 and you normally round .5 to the next bigger number, right? No! Since it's defined as an integer, everything after the decimal point gets truncated.  Now you can do a little thinking yourself and alter the function (while not breaking it) to return a higher number. Since you apparently know how to compile all this when you're done, this shouldn't be a problem for you.  If you really can't get it to work, you can use CheatEngine to get the MCM value higher than 40. That should also work. actually i think it would round to 21 and cause error, but i havent tested  by adding 20 maids so w/e =) Â
g0ring Posted October 15, 2017 Posted October 15, 2017  actually i think it would round to 21 and cause error, but i havent tested  by adding 20 maids so w/e =) It behaves like other c-like languages and truncates the rest, no matter if it's a number or even a string. Source: https://www.creationkit.com/index.php?title=Cast_Reference#Cast_to_Int
LinksSword Posted October 15, 2017 Posted October 15, 2017  Is it safe to activate more then one milkpump esp? mainly because npc's seem to have a hard time using the bound ones for some reason.You can use fancy and non fancy esp together So i can use the basic bound and fancy not bound without issue?
Justfornow Posted October 17, 2017 Posted October 17, 2017 My milkmaid is having a weird issue. When engorged, her breasts grow, but don't spread, so they're overlapping/clipping into each other. Trying to use the racemenu to edit them crashes the game. Is there any way I can fix this?
Ed86 Posted October 17, 2017 Author Posted October 17, 2017 20171016192641_1.jpg My milkmaid is having a weird issue. When engorged, her breasts grow, but don't spread, so they're overlapping/clipping into each other. Trying to use the racemenu to edit them crashes the game. Is there any way I can fix this? Reinstall hdt/body/skeleton
Ildon Posted October 17, 2017 Posted October 17, 2017 Going to echo the problem with getting NMM to install this one. I searched through the topic and found several others having the same issue but no solutions other than the one guy who sounds to have gotten it working after redownloading. Â I've tried redownloading and I've tried both the latest beta and the 5-31 upload. Every single time NMM gets to 50% through unpacking at the start of the install process before abruptly stopping and saying that the mod was not installed. I can manually unpack it just fine but I really don't want to go dumping files on top of my installation before I've had a chance to see what the mod offers. Â EDIT: Got someone to send me their confirmed working archive and it did indeed install this time. I even got the initialization message regarding the activation and 1-hour intervals, as well as being able to find mod-related milk items via a quick help search via console, so I assume everything is working. However the MCM refuses to load no matter how many days pass or how many saves/reloads I do. setstage ski_configmanagerinstance 1 isn't working and I'm honestly out of ideas here.
ppp Posted October 18, 2017 Posted October 18, 2017 Make sure you have selected the correct add-on options. Check your script folder to confirm you have a script for each add-on (a script should be installed regardless of whether you chose true or false, your choice determines which script). Missing scripts can block the MCM from registering.
Ed86 Posted October 18, 2017 Author Posted October 18, 2017 Going to echo the problem with getting NMM to install this one. I searched through the topic and found several others having the same issue but no solutions other than the one guy who sounds to have gotten it working after redownloading. Â I've tried redownloading and I've tried both the latest beta and the 5-31 upload. Every single time NMM gets to 50% through unpacking at the start of the install process before abruptly stopping and saying that the mod was not installed. I can manually unpack it just fine but I really don't want to go dumping files on top of my installation before I've had a chance to see what the mod offers. Â EDIT: Got someone to send me their confirmed working archive and it did indeed install this time. I even got the initialization message regarding the activation and 1-hour intervals, as well as being able to find mod-related milk items via a quick help search via console, so I assume everything is working. However the MCM refuses to load no matter how many days pass or how many saves/reloads I do. setstage ski_configmanagerinstance 1 isn't working and I'm honestly out of ideas here. Update your 7zipLook at nmm folders maybe there is something stuck that prevents install Maybe wait some time, I've had same problems with nmm installing SSE & F4 mods
mrghost1480 Posted October 18, 2017 Posted October 18, 2017 Hello, With the option on visual breast augmentation, the following problem arises: the chest does not increase. I do not understand what's wrong ... I changed the assembly, I replaced the mods, only the body was replaced (it was UNP, it became - CBBE). But in fact everything worked before! How can I solve This problem? Special load on the computer was not observed. I tried to put another mod, which changes the chest, everything worked there. What should I do? Orderlist:  0 0 Skyrim.esm  1 1 Update.esm  2 2 Unofficial Skyrim Patch.esp  3 3 Dawnguard.esm  4 4 Unofficial Dawnguard Patch.esp  5 5 HearthFires.esm  6 6 Unofficial Hearthfire Patch.esp  7 7 Dragonborn.esm  8 8 Unofficial Dragonborn Patch.esp  9 9 Falskaar.esm  10 a Havok Breast Physic.esm  11 b SexLab.esm  12 c hdtHighHeel.esm  13 d CreatureFramework.esm  14 e SexLabAroused.esm  15 f Heels Sound.esm  16 10 Devious Devices - Assets.esm  17 11 fox_shop.esm  18 12 ZaZAnimationPack.esm     SexLab - Sexual Fame [sLSF].esm  19 13 Heretical Resources.esm  20 14 Devious Devices - Integration.esm  21 15 Devious Devices - Expansion.esm  22 16 notice board.esp  23 17 TaraUltimateFurniturePack.esm  24 18 UndergroundBathhouse.esm  25 19 daymoyl.esm  26 1a ZazExtensionPack.esm  27 1b ApachiiHairFemales.esm  28 1c WM Flora Fixes.esp  29 1d SGHairPackBase.esm  30 1e Schlongs of Skyrim - Core.esm  31 1f ApachiiHair.esm  32 20 OSA.esm  33 21 HighResTexturePack01.esp  34 22 HighResTexturePack02.esp  35 23 HighResTexturePack03.esp  36 24 dD - Realistic Ragdoll Force - Realistic.esp  37 25 SkyUI.esp  38 26 RaceMenu.esp  39 27 Havok Breast Physic.esp  40 28 RaceMenuMorphsCBBE.esp  41 29 Havok Breast Physic Dawnguard.esp  42 2a zzEstrus.esp  43 2b RaceMenuPlugin.esp  44 2c RaceMenuOverlays.esp  45 2d Havok Breast Physic Dragonborn.esp  46 2e MoreNastyCritters.esp  47 2f UIExtensions.esp  48 30 SlaveTats.esp  49 31 KJ Tattoos 4K.esp  50 32 TheCoenaculiCBBE.esp  51 33 AddItemMenu2.esp  52 34 SexLabDefeat.esp  53 35 DeviousDevice - More Devious Quest.esp  54 36 Devious Devices - Equip.esp  55 37 SexLabWorkingGirl.esp  56 38 mslDeviousCaptures.esp  57 39 DeviousTraining.esp     DD - Interactions.esp  58 3a Complete Alchemy & Cooking Overhaul.esp  59 3b SexLabGuild.esp  60 3c Skyrim Immersive Creatures.esp  61 3d Shout Like a Virgin.esp  62 3e OBIS.esp  63 3f FtM_3 - OBIS.esp  64 40 hydra_slavegirls.esp  65 41 Wintermyst - Enchantments of Skyrim.esp  66 42 Elemental Destruction.esp  67 43 Skyrim Immersive Creatures - DLC2.esp  68 44 Captured Dreams.esp  69 45 SexLabNudeCreatures.esp  70 46 SexLabNudeCreaturesDB.esp  71 47 SexLabNudeCreaturesDG.esp  72 48 HentaiCreatures.esp  73 49 OBISDB.esp  74 4a SexLab Submit.esp  75 4b ub_cell_darkarea.esp  76 4c ub_cell_teleportroom.esp  77 4d SkyrimsUniqueTreasures.esp  78 4e SexLabSkoomaWhore.esp  79 4f Cloaks.esp  80 50 DeadlyMutilation.esp  81 51 Schlongs of Skyrim.esp  82 52 Being A Guard.esp  83 53 UFO - Ultimate Follower Overhaul.esp  84 54 Weapons_v1.esp  85 55 ChaosDragons.esp  86 56 Deviously Cursed Loot.esp  87 57 SimpleSlavery.esp  88 58 Remodeled Armor - Vanilla Replacer.esp  89 59 TheAmazingWorldOfBikiniArmor.esp  90 5a xazPrisonOverhaul.esp  91 5b BrandingDeviceOfDoom.esp  92 5c ScopedBows.esp  93 5d Slaverun_Reloaded.esp  94 5e Runes_Skulls.esp  95 5f EstrusChaurus.esp  96 60 Devious Deviants.esp  97 61 MilkModNEW.esp  98 62 MilkMod_MilkPumpsBasicB.esp  99 63 WheelsOfLull.esp 100 64 S_L_U_T_S.esp 101 65 Arcania Arsenal.esp 102 66 SOS - Shop.esp 103 67 Blue Fire Magic - Frost.esp 104 68 Armor_v1.esp 105 69 Sweet&Sexy Lingerie.esp 106 6a JRC's Longsword Pack.esp 107 6b Ghosu - Project Flintlock.esp 108 6c TropicalIsland.esp 109 6d FoxMerged.esp 110 6e PaladinArtifactsAndArmor.esp 111 6f Sulfuras The Reclaimed Hand - Johnskyrim.esp 112 70 LoversComfort.esp 113 71 Naughty Books.esp 114 72 notice board - dragonborn patch.esp 115 73 PowerGreatswords.esp 116 74 chfshImbuedSword.esp 117 75 Apocalypse - The Spell Package.esp 118 76 LB Lady Bat.esp 119 77 ApachiiHelmetWigs.esp 120 78 LindsHumanEyes.esp 121 79 Aradia Devious Expansion.esp 122 7a yps-ImmersivePiercing.esp 123 7b KS Hairdos - HDT.esp 124 7c Blush When Aroused.esp 125 7d Perk Points at Skill Levels 50-75-100.esp 126 7e Cloaks - Dawnguard.esp 127 7f ChrisRichardz Anime Eyes.esp 128 80 Apocalypse - More Apocalypse.esp 129 81 UltimateDragons.esp 130 82 DeadlyHeadshots_v200.esp 131 83 Dr_Bandolier.esp 132 84 Dr_BandolierDG.esp 133 85 SGHairPackAIO.esp 134 86 Infinite Gold For Merchants.esp 135 87 Dual Wield Parrying_SKSE.esp 136 88 craftablelockpicks.esp 137 89 Lost Art of the Blacksmith.esp 138 8a ub_tapestry.esp 139 8b ub_invite_any_npc.esp 140 8c Convenient Horses.esp 141 8d Purewaters.esp 142 8e skyrimespawn7.esp 143 8f TheAncientHeroes.esp 144 90 SimplyKnock.esp 145 91 EquipableStockings.esp 146 92 LostGrimoire.esp 147 93 SOS - Smurf Average Addon.esp 148 94 SOS Equipable Schlong.esp 149 95 SOSRaceMenu.esp 150 96 VivisCockcage.esp 151 97 UFO - Dragonborn AddOn.esp 152 98 Better Stealth AI for Followers.esp 153 99 Angeli Devious Expansion.esp 154 9a angeliRubber.esp 155 9b Daedric Reaper Armor.esp 156 9c Ordinator - Perks of Skyrim.esp 157 9d Apocalypse - Ordinator Compatibility Patch.esp 158 9e Ordinatored-CACO.esp 159 9f SLAnimLoader.esp 160 a0 NibblesAnimObjects.esp 161 a1 XXHeihuHH.esp 162 a2 [NINI]BlessMD3001.esp 163 a3 ts_slickarmour.esp 164 a4 XXheitianzhaoHHsystem.esp 165 a5 [Dint] BDO Dark_Knight (Female).esp 166 a6 SUNMagicArmor.esp 167 a7 Mage Robes.esp 168 a8 PriestWarriorArmor.esp 169 a9 ElysiumClothes.esp 170 aa HDT Maid Outfit.esp 171 ab XXZhumoyiHH.esp 172 ac YoungTrap.esp 173 ad Gatti12Jewelry.esp 174 ae XXHuayangnianhuaHH.esp 175 af BridalSet.esp 176 b0 XXZhenhungeHH.esp 177 b1 Celes Nightingale Armor.esp 178 b2 NewmillerDarkVampKnight.esp 179 b3 LingerieSetCBBE3_2ByNausicaa.esp 180 b4 Sotteta Necromancer Outfit.esp 181 b5 Luxury Collection.esp 182 b6 Broken Angel Armor.esp 183 b7 ub_apachii_hair.esp 184 b8 AradiaBikini.esp 185 b9 Jojjos Warglaives.esp 186 ba TERA Weapons.esp 187 bb ScopedBows_ArrowTweaks.esp 188 bc DawnBreaker_RF.esp 189 bd LoshRifle.esp 190 be Magicka Sabers.esp 191 bf Dwarven Blasters.esp 192 c0 Ghosu - Project Flintlock - Ammo Addon.esp 193 c1 Companion_Ria.esp 194 c2 MW_ShieldsPack.esp 195 c3 Erika.esp 196 c4 Astrid.esp 197 c5 Hikari.esp 198 c6 FNIS.esp 199 c7 FNISSexyMove.esp 200 c8 SexLab Cumshot.esp 201 c9 FadeTattoos.esp 202 ca RapeTattoos.esp 203 cb XPMSE.esp 204 cc DeviouslyHelpless.esp 205 cd KS Hairdo's.esp 206 ce SGEyebrows.esp 207 cf 12FemaleBrows.esp 208 d0 2B_Follower.esp 209 d1 A2_Follower.esp 210 d2 A2_Follower - Unique Moveset Addon.esp 211 d3 Remodeled Armor - Vanilla Replacer - Dawnguard.esp 212 d4 Remodeled Armor - Vanilla Replacer - Dragonborn.esp 213 d5 DwarvenMech.esp 214 d6 LADL - No Starting Spells.esp 215 d7 MultiThruShot.esp 216 d8 Tempest.esp 217 d9 Elemental Destruction - Ordinator Patch.esp 218 da UniqueRabbitLoot.esp 219 db Electron.esp 220 dc SexLabMassMatchMaker.esp     HAnimations.esp 221 dd nazonootokoAnimSLAL.esp 222 de SLAL_AnimationsByLeito.esp 223 df HDTSextoys.esp 224 e0 KomAnimObjects.esp 225 e1 MilkModNEW HF.esp 226 e2 MilkModNEW Sanbox.esp 227 e3 MilkModNEW ZaZ.esp 228 e4 Schwertleite Set.esp 229 e5 Latex Armor.esp 230 e6 Strap.esp 231 e7 aradia_latex.esp 232 e8 CityBondage.esp 233 e9 FNISspells.esp 234 ea Dark Leere Armor.esp 235 eb Alternate Start - Live Another Life.esp 236 ec Alternate Start - Live A Deviant Life.esp 237 ed Deviously Cursed Loot LAL AddOn.esp     Bashed Patch, 0.esp Â
Ildon Posted October 18, 2017 Posted October 18, 2017 Make sure you have selected the correct add-on options. Check your script folder to confirm you have a script for each add-on (a script should be installed regardless of whether you chose true or false, your choice determines which script). Missing scripts can block the MCM from registering.  I have spent a good 7 or 8 hours fighting with the mod at this point, trying every combination of mods and options I could think of. Being that I have now sunk more time into trying to get the MCM to appear than I have with any other mod in the past I am just giving up. It seems like an interesting concept but I am at the point now where there is nothing else I can do.  If any of the others who had this problem in the past can offer an actual solution I would appreciate it.
Ildon Posted October 19, 2017 Posted October 19, 2017 As an addendum, I came across that Being A Cow mod which extends off of this one. The MCM for that shows that MME is installed and ready to go, and MME itself seems to be working okay if I go through the tedious task of manually adding spells and conditions for testing purposes. It's just the MCM registration which seems to be acting up.
IGotBored Posted October 19, 2017 Posted October 19, 2017 Extremely stupid question but are the breasts supposed to get bigger as milk is generated or do the breasts just go to the max visual scale regardless of milk? Even if she just got milked dry her breasts are still at the max scale. Just want to know if somethings messed up on my end.
Ildon Posted October 19, 2017 Posted October 19, 2017 It seems that PlayerSuccubusQuest was causing the problem. When I install MME with the PSQ patch, no good. When I install MME without the PSQ patch, no good. When I remove PSQ and install MME without the patch the MCM finally appears as expected. Â And now that I can finally see the thing I have to ask: how exactly does one trigger the extra rows of breasts? I saw an option in the menu for "$AddBreastRowChance" but this does not seem to do anything regardless of what I set the number to (tried 10, 50, and 100). I'm also unsure if the option just above it, "Disable Skooma effect", has anything to do with this -- I have it disabled.
Cock Sucker Posted October 19, 2017 Posted October 19, 2017 Extremely stupid question but are the breasts supposed to get bigger as milk is generated or do the breasts just go to the max visual scale regardless of milk? Even if she just got milked dry her breasts are still at the max scale. Just want to know if somethings messed up on my end. Â they get bigger you enable the option if you don't they stay the same Â
Ed86 Posted October 19, 2017 Author Posted October 19, 2017 Extremely stupid question but are the breasts supposed to get bigger as milk is generated or do the breasts just go to the max visual scale regardless of milk? Even if she just got milked dry her breasts are still at the max scale. Just want to know if somethings messed up on my end. yes, they grow bigger with milk and slightly bigger with milkmaid level It seems that PlayerSuccubusQuest was causing the problem. When I install MME with the PSQ patch, no good. When I install MME without the PSQ patch, no good. When I remove PSQ and install MME without the patch the MCM finally appears as expected.  And now that I can finally see the thing I have to ask: how exactly does one trigger the extra rows of breasts? I saw an option in the menu for "$AddBreastRowChance" but this does not seem to do anything regardless of what I set the number to (tried 10, 50, and 100). I'm also unsure if the option just above it, "Disable Skooma effect", has anything to do with this -- I have it disabled. you buy, drink breast enlargement potion for next 10 hours you have $AddBreastRowChance chance to get event to increase breastrows, if it procs you get msg, debuff, and need to sleep for magic to happen
IGotBored Posted October 19, 2017 Posted October 19, 2017 Alright another stupid question. They're supposed to start regular size then get bigger right? Because mine don't.
Code Serpent Posted October 20, 2017 Posted October 20, 2017 For some reason, ring gags from Devious Devices aren't being recognized when using milk pumps. Any idea as to how to fix this?
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now