sell 2 goblins, move them to cart next to slaves u can buyView attachment 2713409
im stuck at this quest pls tell me what i need to do
u need sell then during a specific day, When it Red around the box means the right day.View attachment 2713409
im stuck at this quest pls tell me what i need to do
what're the requirements to get these? Are there more like this? All i found was pixie
View attachment 1940655Thread Updated: 2023-05-09
Overview:
Player accepts a secret proposal from 'Amilia', a senior member of the continent's highest crime syndicate.
She gives the player a territory,
where she will test the player by having him run a monster farm and brothel using monsters and slaves.
She offered a period of 50 days.
If the player ran the territory and made a profit during the 50-day time period,
she would accept the player into the organisation to which Amilia belonged.
Release Date: 2023-02-11
Developer: Team-Apple PieYou must be registered to see the links-You must be registered to see the links-You must be registered to see the links-You must be registered to see the links-You must be registered to see the links-You must be registered to see the links
Censored: Partially (Some DLC content still censored)
Version: 2.0.16.0 + DLC + v2.0.14.0 Uncensored Patch
OS: Windows
Language: English
Genre:
You don't have permission to view the spoiler content. Log in or register now.
Installation:
You don't have permission to view the spoiler content. Log in or register now.
Changelog:
You don't have permission to view the spoiler content. Log in or register now.
Developer Notes:
You don't have permission to view the spoiler content. Log in or register now.
Old saves pre-v2.0.0.0 will not work properly. Start a new game.
DOWNLOAD
DLC & Uncensored Patch already applied to v2.0.16.0
Win:You must be registered to see the links-You must be registered to see the links- PIXELDRAIN - WORKUPLOAD -You must be registered to see the links
Extras: Cheat Mod - Guide - Mod Pack - English - Spanish - Russian Translation
woklto thanks for the link
*This unofficial port/version is not released by developer, download at your own risk.
View attachment 1940681 View attachment 1940703 View attachment 1940704 View attachment 1940706 View attachment 1940723 View attachment 1940724 View attachment 1940844 View attachment 1940699 View attachment 2253232 View attachment 2253233 View attachment 2253231
You need to create it with the green dragon loli NPC using geneticsI need help, I don't know how to get the Minotaur and I'm stuck always losing the game when it comes time to have to sell 1 of them.
Minotaur my old friend. I thought I'll never see you again.I need help, I don't know how to get the Minotaur and I'm stuck always losing the game when it comes time to have to sell 1 of them.
You just need to put the mouse on the name of the race so it will show you that it can cave another better tier of evolution or notwhat're the requirements to get these? Are there more like this? All i found was pixie
I totally understand why some people don't like this visual effect. Like missing outlines - now I kinda got used to it and don't want to restore it. Although UABEA mipmaps are still broken, so it's not really my fault hereKrong is there any chance of a version of the mod without the cumflation? It's a cool feature but because it always happens immediately after any kind of sex and it doesn't go away on its own I find everyone's just inflated all the time immediately which isn't as fun.
Very nice, ThanksMemacile: I added CBforDummies to the modpack. It was pretty straightforward, so I didn't need any reserved time for this.
Check out Surgys modpack as an easy way to install them: https://f95zone.to/threads/monster-black-market-v2-0-16-0-dlc-team-apple-pie.124772/post-9488041Okey So i got the mods but i have no idea how to install them. Help
I'll gladly do itI totally understand why some people don't like this visual effect. Like missing outlines - now I kinda got used to it and don't want to restore it. Although UABEA mipmaps are still broken, so it's not really my fault here
As for cutting of cumflation, it's possible without complete mod rebuild, but the method I used just now to make a "smaller cut" patch is bit of a mess. Some visuals will be bugged, because it's deeply integrated. But see for yourself, maybe that will work perfectly for you (patch is attached to this post).
Memacile
I recall you said we can dig a bit deeper in the code to see if it's possible to "tie" belly size to the fetus count? I'd like to explore it further, because current inflation tied to SemenInside type proved to be a "meh" feature as I see from comments.
Although, mind you, I'd still like to keep that effect for future releases, just a base. Only two poses are affected after all and if we'll find a way to connect it to fetus count - it will work as originally intended.
Sure man, thanks.I'll gladly do it
If I remember correctly there is a fetus list somewhere, so if you can use "fetusList.Count" that should give you the number of fetuses. But I know dnspy can be difficult. Let me check again to remember where the things are. Give me some minutes...
Okay, I think I somewhat understand. Bottom line is there is a chance that even if something is available it might not work correctly.Sure man, thanks.
The problem is most graphics are controlled by SpineData-resources from data.unity3d. I'm saying "most of graphics" because some of it comes from packed sprites in bundle assets (which UABEA can't handle and that's why I can't fix black portraits yet) and CGs are controlled in Assembly's code.
So, in SpineData controller file that's how I'm currently using Cumflation "trigger":
"cumflation:cumflation_{SemenInsideType}",
Where first "cumflation" is slot in spine, second one is an image and _{SemenInsideType} is a value set as individual meshes numbered 1, 2 and 3.
Now, all commands I tried to use instead of {SemenInsideType} didn't do anything so far. I mean, all of them can be found in Assembly, but only some of them work with spine controlled text file.
public int SemenInsideType
{
get
{
SeqDataBinding.Instance.RegisterFlag(this, "SemenInsideType");
return this.m_SemenInsideType;
}
public int FetusCount
{
get
{
return this.FetusUnitIdList.Count;
}
}