Unitedbmx69
Newbie
- Aug 30, 2019
- 30
- 11
can i somehow delete groups on higher lvls ? when characters 8-10lvl+ the game becomes unplayable for me because of the huge amount of different groups with different lvls
I don't know if it's because of my English or my lack of understanding about programming but I don't know what this is XD. What I understand is that you have done something very useful, is that what I mentioned about putting in profile, characters from the single interview? if so, what should I do to add it to the game? I apologize for my absolute ignorance hahaAgree, 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 =)
I would suggest this can be solved by modders (I'm not that smart) in such a way:
When the new girl arrives, profile [current profile] rating file is automatically created (and placed somewhere, saying, with guest_last_... .json). Then [new] profile is created based on [current]. All the profile features I've marked important (all those features should be stated in some separate file, one set for each of 10 groups) are copied from the [game] profile (created in-game normally and set in-game as a autorating profile). All the minor features are being coping from [current] profile. Then [new] profile should be loaded and applyed in-game.
For inspiration, here is the python code for reading the profile.png options (not perfect =):
You can read the marks (interpretations) in-game with monkey custom mods json (stored in \SMA 0.9.8c\BepInEx\config\Monkey\Mods\myCustom_doityourself.json) like this (dont forget to color and bold the caption for tits size!):Python:# -*- 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)
(read monkey's manual for details)JSON:{ "Name": "<color='#FFFAF0'>Face</color> <color='red'>Anger</color> Gain", "Type": "Enum", "Level": 3, "Path": [ "<MainFemaleCharacter>/Infos/Interpretaciones", "InterpretadorDeFemales", "interpretacion/interpretacionDeFacialSkin/difficulty/anoyanceGain" ] }
Well, it seems to work similar to BH alternative genes, but not touching the girls directly - only the autoratings, which, I belive, can help a lot in testing strategies and speed up the process, almost without cheating =)
Me really want at least profile-dump feature for the current model, please point me in case it is already realized and I've missed it =)
Thank you, that's great advice...I'm using your method and the results are great...There's a lot to be gained from rarely using a 10 rating...that little bit of randomness is great. Evaluating behavior is more difficult... here I rely on auto rate... When I rate myself, the results are strange.For me works next:
1. on the first iteration try to not decline everything. Really ugly things rate as 0-2,
2. something bad but no absolutely ugly rate as 3-4
3. things that are pretty ok but still not good I rate as 4-6
4. really nice parts i rate as 7-8
5. beautiful parts i rate as 9 and only sometimes 10 ( more often9, i think it makes better variations in future ) PS: such parts appear for me only at lvl 2-3
6. yes, you need to rate everything for better results
7. try to pay your attention not only to the separate parts ( mouth, nose, etc ) but also face and head form - it is very important
8. the first level girls are mostly ugly and it needed nearly 15-20 min to rate than all
9. 2nd lvl girls will be much better, try to correct their parts and except some bad things
10. on lvl 3-4 you will receive pretty good results
11. on lvl 2-3 i also trying to correct not only face and main body, but also breasts, butt, pus ( needed more time to undress her and rate it )
here is one of the lvl 3 girl's face, i belive it not bad results
Monkey is currently in support mode, and I don't plan to add new features short term.... I would suggest this can be solved by modders (I'm not that smart) in such a way: ...
I noticed the one touching herself and thought it would be nice to see them slam themselves to orgasm by request lolHave Fun
Install dir: C:\Users\*****\Documents\TValle Games\Some Modeling Agency
Shift + Pgood sirs, i have more questions, how can i remove the shirt of the male character? i have also seen others here taking pictures in which their male character was not fat, is it possible to do it without cheats? and another thing, i have been playing for a while and i am still not out of level 1, the level up is by the amount of money you earn or did i do something wrong? i don't have cheats activated
thanks, and you know something about the fatness of the male character and leveling?Shift + P
Is this from game?and we need more hair style to make things like this
View attachment 2625598 View attachment 2625600 View attachment 2625602 View attachment 2625603
Good part, I'm making new thing: photo-rating. Drop few character portraits to auto-rating profile, and it will use them to auto-rate appearance and assist in character generation, so game wont run too far away from profile.
I don't know anything about coding, but from reading your post and also post from the Monkey dev, it sounds like parts of the code in this game, is propper nightmare fuel.This is not an update. This build has capabilities to ruin save games. Preview only.
You don't have permission to view the spoiler content. Log in or register now.You don't have permission to view the spoiler content. Log in or register now.You don't have permission to view the spoiler content. Log in or register now.
1. Just score them low and move on or try to fast raise green bar with right answers to the point, when anger bar won't fill up;Hello everyone, I have two curious questions and I hope someone will answer on them for me, because I could not find the answers manually.
1. Why do some models that come, they immediately start to fill up the "red scale of anger", I did not even start talk to them, did nothing absolutely, they just become angry for no reason and leave me, lol !?
2. Is it possible to somehow make "auto sex" so that the model continues to move if I stand afk?
Almost gotcha!1. Just score them low and move on or try to fast raise green bar with right answers to the point, when anger bar won't fill up;
2. Already implemented, try with different girls.