smokrader

Member
Dec 25, 2017
283
177
bonjour j essais de mettre des images pour les portrait sa marche pouvez vous me dire comment faire pas a pas .
Merci

Bonjour, j'essaye de mettre des images pour les portraits, ça marche, pouvez-vous me dire comment faire étape par étape.

Merci
je t'envoie cela par message privé dans quelque minutes.
 

OpenFire

New Member
Dec 18, 2023
7
2
je t'envoie cela par message privé dans quelque minutes.
Hello

Please, i'd also like to have as well a detailled how-to install the model if possible
I can follow the step 1 and 2 but at step 3 and next it's become messy for me :/

Here some questions for me to understand better (maybe it will help other) :

- I don't have a preferance for model, so my plan was to put all the model in the game folder. If i do that, do we even need to edit the code after that with the range ?

-Even if we put all the packs (the model) in the game folder do we need to do the custom model instruction as well ?

-Some model already have shared number do we have to overwrite it ? And for the model that we have to rename, do we need to follow the numbers orders ?

-No need to download all the model pack, the part 2 if enough and include the part 1 if i read correctly ?

EDIT : Thanks for the guide :)
 
Last edited:

smokrader

Member
Dec 25, 2017
283
177
Hello

Please, i'd also like to have as well a detailled how-to install the model if possible
I can follow the step 1 and 2 but at step 3 and next it's become messy for me :/

Here some questions for me to understand better (maybe it will help other) :

- I don't have a preferance for model, so my plan was to put all the model in the game folder. If i do that, do we even need to edit the code after that with the range ?

-Even if we put all the packs (the model) in the game folder do we need to do the custom model instruction as well ?

-Some model already have shared number do we have to overwrite it ? And for the model that we have to rename, do we need to follow the numbers orders ?

-No need to download all the model pack, the part 2 if enough and include the part 1 if i read correctly ?
yep sorry i didn't took time to upload the new guide, it's my fault here is it
 

OpenFire

New Member
Dec 18, 2023
7
2
yep sorry i didn't took time to upload the new guide, it's my fault here is it
Okay it's a little better with the guide, however it is not working for me sadly. I did some troubleshooting and i've noticed that YOUR female custom portrait folder (mod part 1) contain folders related with the hair color of women and i think that the issue.

1740756252610.png

The same folder in the base game do not contain hair color folders, same in the html file i don't find hair color values

1740756191917.png

Your guide is probably outdated because the last part when you need to setup the range in the html file do not include the hair color (i've noticed that because the range were already correct).

I tried to add your code piece (found inside the instructions.txt of the mod folder) but i got error when trying to change the portraits with the correct name of the slave.

4) open the html files of the Main game with notepad++ or other program, search for this part of the code:


asian: {
black: setup.range(1, 5)
},
white:{
black: setup.range(1, 5),
blonde: setup.range(1, 5),
brun: setup.range(1, 5),
red: setup.range(1, 5)
},
latina:{
black: setup.range(1, 5),
blonde: setup.range(1, 5),
brun: setup.range(1, 5),
red: setup.range(1, 5)
}

and replace it by this :

asian: {
black: setup.range(1, 12)
},
black: {
black: setup.range(1, 8)
},
white:{
black: setup.range(1, 9),
blonde: setup.range(1, 8),
brun: setup.range(1, 25),
red: setup.range(1, 11)
},
latina:{
black: setup.range(1, 15),
blonde: setup.range(1, 8),
brun: setup.range(1, 10),
red: setup.range(1, 5)
}
I don't know what to do here, i don't know how to change the value related to the hairs color
 

smokrader

Member
Dec 25, 2017
283
177
Okay it's a little better with the guide, however it is not working for me sadly. I did some troubleshooting and i've noticed that YOUR female custom portrait folder (mod part 1) contain folders related with the hair color of women and i think that the issue.

View attachment 4596583

The same folder in the base game do not contain hair color folders, same in the html file i don't find hair color values

View attachment 4596582

Your guide is probably outdated because the last part when you need to setup the range in the html file do not include the hair color (i've noticed that because the range were already correct).

I tried to add your code piece (found inside the instructions.txt of the mod folder) but i got error when trying to change the portraits with the correct name of the slave.



I don't know what to do here, i don't know how to change the value related to the hairs color
actually yes and no , my guide (v2) is not outdated , but since the dev updated his code ( about hair) now , it doesn't divide the hair and race by color

while it's true that the instruction inside the mod part 1 is outdated,

before, when i did the mod part 1 a year ago , you had to place them like it was indicated in the mod

but now, instead of having a "race" folder and inside it a hair color folder ( red black blonde)

it's only a race color , which mean you only have to take all the portrait inside of black-hair, red hair, blonde hair into the correct race

one example; if before you had let's say for the race "latina" , 15 blondehair portrait 0 redhair portrait and 25 blackhair portrait;

you had (with the old code, like put in the old instruction)

female:
latina:{
black: setup.range(1, 25),
blonde: setup.range(1, 15),
red: setup.range(1, 0)
}, and ...

but now since you put all the portrait ( no matter the color inside the same ( correct race of the model) folder, with the "new code"

now, (taking the example i just made into account) it's put like this : ( like say in the guide V2)

female: {

latina: setup.range(1, 40),
and ...

why ? because 25+15 = 40


in short follow the guide V2 instead of the instruction inside the mod part 1
 

OpenFire

New Member
Dec 18, 2023
7
2
actually yes and no , my guide (v2) is not outdated , but since the dev updated his code ( about hair) now , it doesn't divide the hair and race by color

while it's true that the instruction inside the mod part 1 is outdated,

before, when i did the mod part 1 a year ago , you had to place them like it was indicated in the mod

but now, instead of having a "race" folder and inside it a hair color folder ( red black blonde)

it's only a race color , which mean you only have to take all the portrait inside of black-hair, red hair, blonde hair into the correct race

one example; if before you had let's say for the race "latina" , 15 blondehair portrait 0 redhair portrait and 25 blackhair portrait;

you had (with the old code, like put in the old instruction)

female:
latina:{
black: setup.range(1, 25),
blonde: setup.range(1, 15),
red: setup.range(1, 0)
}, and ...

but now since you put all the portrait ( no matter the color inside the same ( correct race of the model) folder, with the "new code"

now, (taking the example i just made into account) it's put like this : ( like say in the guide V2)

female: {

latina: setup.range(1, 40),
and ...

why ? because 25+15 = 40


in short follow the guide V2 instead of the instruction inside the mod part 1
Thanks, i see the game removed the hair color criteria. So all the pictures in the right "race' folder
Okay, i did take a couple minute but i had to rename all file of the custom portraits, then i've add it to the "race" folder.

And then i've set the range. Regarding the pictures, it's working now great.

But i am wondering about the actions ? I did some test but i've see only one action with the correct thumbnail for the actress. I did change the name as well before but i don't know if every actress have "all the action" such as kissing ect... ?

Also additional question, in-game when customize the slave, is it useful to go at "Custom Portrait" tab and tick the right name as well ? Or only the name change is enough ?
 

smokrader

Member
Dec 25, 2017
283
177
Thanks, i see the game removed the hair color criteria. So all the pictures in the right "race' folder
Okay, i did take a couple minute but i had to rename all file of the custom portraits, then i've add it to the "race" folder.

And then i've set the range. Regarding the pictures, it's working now great.

But i am wondering about the actions ? I did some test but i've see only one action with the correct thumbnail for the actress. I did change the name as well before but i don't know if every actress have "all the action" such as kissing ect... ?

Also additional question, in-game when customize the slave, is it useful to go at "Custom Portrait" tab and tick the right name as well ? Or only the name change is enough ?
to answer your question about the actions , all the girls have the majority of them (if i recall correctly i did an update to include kissing 69 and other a few month ago) there is however two things to know ,

1) when i could not find the action/scene with the pornstar like footjob for example; i puted a generic file

2) there is one action that i will not include in my mod , and that's the fisting part , for two reason: 1, rare are the actress who do it
2, since the actions itself is a fist in the ass or pussy, except that you will never the face of the model

so i don't bother doing it

as for you other question about slave ; no , you can personalyze a slave with a portrait of a pornstar and a name but it will not launch the video like it does in the default settings ( guest)

if i recall correctly it worked at the begining but since then the dev changed his code and it's not working anymore

same as a nurse: don't expect the mod to show you the same video as the default setting

why? because the dev created them ( the settings for default, slave, nurse ) works differently from each other

i'm however creating the part 3 and 4 that will include for some pornstar a personalysed video if they take a shower or are nurse and ...

it depend on the scene that the pornstar did or did not,

remember that, it doesn't mean that all pornstar will have nurse scene or shower scene and ..., What i mean is that 1 pornstar will have a Shower scene and not a nurse scene, another pornstar will have a nurse scene and not a shower scene and ...

but for now i'm focusing on the completion of the new pornstar model for part 3

while part 4 will be the part where i will add those dixit scenes
 

Vaars

Member
May 6, 2021
266
83
How did you get the teacher in the library? I have 2 teachers, the library built, books for the MC and kids to teach but I can't get them together. All I can assign either of them to is forest or scavenging for the guy and those plus the streets for the woman.
O think by assigning them the Teacher Job in the Guest House, like you would do with any other Job. but unlike scavengers or maids, they're simply gone now....
 

Shafty

Member
Aug 5, 2016
142
73
Anyone can help me with this error? I'm using Smokrader mods and all is working perfectly aside this. No idea where is coming from....thanks in advance.



Immagine 2025-03-01 043510.png
 

Papa Ernie

Squirrel!?
Uploader
Donor
Dec 4, 2016
12,336
48,375
Bugfix v0.53a (HTML only):
- - - -
 
Last edited:

smokrader

Member
Dec 25, 2017
283
177

Smokrader's mod News

Hy everyone,

download.png

Sorry for being M.I.A for month , but since my last mod news , a friend offer me the opportunity to be an active participant to this year "carnaval" and since it's kind of a big thing here, i've said "yes"

which meant that i had less time for the mod to prepare for the carnaval

but fear not i still continue it ,


so , now , like you can imagine this past month , the mod advanced less compare to before but i still have done major steps

either way here how the mod advanced:

Capture d’écran 2025-03-02 à 09.55.13.png

as you can see all the portrait are ready and 10 of the 66 (scheduled) are done a 95% (the 5% left being their coding part)

lastly , two quick things

1) i just quickly check if the new .53 versions and my mod worked (with the new latina change) and apparently it does so it should not be troublesome

2) just below you will find a Step by Step guide for the installation of the mod , i post it here in case "new player" don't have it already


have a good week
 
  • Like
Reactions: @LonelyWolf

Rolliman

Newbie
Dec 20, 2023
30
18
maybe it could be a good idea to give hints whats new in the newest version. otherwise itf could be a deadd game for many players. for example, the quarry is such a long time a lost place, so i would not search there without any hints that its become active.
whats the new keyword for version 0.54?
 

Papazoglo1

Newbie
Aug 8, 2019
50
57
maybe it could be a good idea to give hints whats new in the newest version. otherwise itf could be a deadd game for many players. for example, the quarry is such a long time a lost place, so i would not search there without any hints that its become active.
whats the new keyword for version 0.54?
Open the online version of the game, click the "Changelog" button and read it.
 

@LonelyWolf

Newbie
Donor
Mar 19, 2024
37
315
whats the new keyword for version 0.54?
You don't have permission to view the spoiler content. Log in or register now.


Any one have the code for 0.54 ?
You don't have permission to view the spoiler content. Log in or register now.


have a good week
THX, and likewise to you smokrader.

Anyway, be well aware that your hard work on this game with your great mod is appreciated! (y)
 
Last edited:
3.70 star(s) 45 Votes