Kingdom 84
Newbie
- Aug 1, 2021
- 42
- 11
How can we get more than one females in a room? If it's F7 I don't understand how to get the 2nd females after that.
Is this bad?Gotta be careful with nines or tens on buttocks when you haven't had anal. You could accidentally make everybody fart like doggie squeak toys.
Only if you want the option for anal and yer joint is bigger than yer pinky.Is this bad?
Game actually isn't as bad if you use the Better Experience improvements, altho that mod has been buggy for me and the new controls always end up breaking, but it kind of plays like Surgeon Simulator, in the sense that its pretty confusing until you get the hang of it, with the default controls I will never understand how to rotate the hand to fapif the game werent so big on the interaction system thats too clunky to use with mouse & keyboard. maybe as a VR game, but not this.
When you open the rating screen, set everything to 5. That does what you think zero does. Five means you don't have an opinion. Then tic the sliders up or down, a little or a lot, depending on what you can observe.Any pros here have a quick idea on how to rate okay. I don't know what I am doing wrong but in my second generation I often get girls that doesn't look good.
I try to vote something I like at 10 for every category in the first week but somehow the girls still spawn ugly.
Is it needed to rate every girl in everything?
I hoped it was possible to just rate what you liked on each girl at 10 and just leave the rest at 0.
I'm wondering that too. Can we have more than one woman in the room?How can we get more than one females in a room? If it's F7 I don't understand how to get the 2nd females after that.
just edit the character or clothing on monkey and save it with your phone or camera depending on what you want. i always use it that wayguys, is it possible to use the monkey editor to make a profile or can you pass a saved character to turn it into a profile or load or load a single interview character with a monkey in game, to be able to score it and have more of them come out? with the monkey editor you can exaggerate even more certain characteristics like the size of the breasts, hips, etc. I would like to create a profile with those exaggerated measures, so that the game starts to create characters related to those measures that are not as an option in the common editor to create profiles.
actually that's what I do, but I would like that little by little the game starts to generate those characters and not that I have to make them manually, it's much more pleasant with the surprise factor.just edit the character or clothing on monkey and save it with your phone or camera depending on what you want. i always use it that way
What I did was Editting them using monkey editor then start Rating them based by what I did from the monkey generator and the more higher the rate is the better model you will get after. I've been getting less and less model with a weird ass make up and nylon hair XDactually that's what I do, but I would like that little by little the game starts to generate those characters and not that I have to make them manually, it's much more pleasant with the surprise factor.
Agree, it seems to be very usefull feature right now. The example of it can be the purpose of creating high-rated model, where I do need several specific options (like legs and arms thickness, tallness etc), and I want the autorating profile to help me with them namely: I dont care about hands/feet size, any will do, but those values will affect the rating. And so, when I meet the girl I like, I would like to update my current autorating profile with all the values from her. It can be done manually, by creating the monkey custom json with all the ratings, screening/papering it somewhere and creating the new profile manually ingame, but it seems quite boring =)guys, is it possible to use the monkey editor to make a profile or can you pass a saved character to turn it into a profile or load or load a single interview character with a monkey in game, to be able to score it and have more of them come out? with the monkey editor you can exaggerate even more certain characteristics like the size of the breasts, hips, etc. I would like to create a profile with those exaggerated measures, so that the game starts to create characters related to those measures that are not as an option in the common editor to create profiles.
# -*- coding: utf-8 -*-
"""
Created on Fri Apr 28 12:15:48 2023
@author: V
"""
# import os
import pprint
game_save_folder = 'C:\\Users\\V\\Documents\\TValle Games\\Some Modeling Agency\\' #check this path and insert yours!
game_chars_folder = game_save_folder+ 'Characters\\v08\\'
game_profile_folder = game_save_folder+ 'Profiles\\v08\\'
#filename = game_chars_folder+ 'Antoinette Cody.png' #check this path and insert yours!
filename = game_profile_folder+ 'SlimBusty_MedEasy.png' #check this path and insert yours!
# chunk generator
def chunk_iter(data):
total_length = len(data)
end = 4
while(end + 8 < total_length):
length = int.from_bytes(data[end + 4: end + 8], 'big')
begin_chunk_type = end + 8
begin_chunk_data = begin_chunk_type + 4
end = begin_chunk_data + length
yield (data[begin_chunk_type: begin_chunk_data],
data[begin_chunk_data: end])
with open(filename, 'rb') as fobj:
data = fobj.read()
# check signature
assert data[:8] == b'\x89\x50\x4E\x47\x0D\x0A\x1A\x0A'
print("-" * 80, "chunks of: %s" % filename, "-"*80, sep='\n')
for chunk_type, chunk_data in chunk_iter(data):
print("chunk type: %s" % chunk_type.decode())
if chunk_type == b'le.C': #for character data
charChunkData = chunk_data.decode()
# charChunkData = charChunkData[:100]
# print("--chunk data:", chunk_data.decode())
if chunk_type == b'lePo': #for profile
profileChunkData = chunk_data.decode()
# print("--chunk data:", chunk_data.decode())
if chunk_type == b'iTXt':
print("--chunk data:", chunk_data.decode())
elif chunk_type == b'tEXt':
print("--chunk data:", *chunk_data.decode('iso-8859-1').split('\0'))
prof = profileChunkData[len("rtraitData"):] #Me was lazy ;P
import json
prof_d = json.loads(prof)
pprint.pp(prof_d)
{
"Name": "<color='#FFFAF0'>Face</color> <color='red'>Anger</color> Gain",
"Type": "Enum",
"Level": 3,
"Path": [
"<MainFemaleCharacter>/Infos/Interpretaciones",
"InterpretadorDeFemales",
"interpretacion/interpretacionDeFacialSkin/difficulty/anoyanceGain"
]
}