Can someone competent enough to write down the correct code for the 2 packs of mods do it here?
At least someone who can understand what the modder is talking about.
I've never seen such bad "how to" for a mod just to change a simple code for the portraits.
The actual file code is:
-------------------------
female: {
asian: setup.range(1, 10),
black: setup.range(1, 5),
white: setup.range(1, 20),
latina: setup.range(1, 5)
},
This guy's recommended replacement is:
----------------------------------------------
asian: {
black: setup.range(1, 21)
},
black: {
black: setup.range(1, 14)
},
white:{
black: setup.range(1, 18),
blonde: setup.range(1, 15),
brun: setup.range(1, 41),
red: setup.range(1, 11)
},
latina:{
black: setup.range(1, 32),
blonde: setup.range(1, 14),
brun: setup.range(1, 20),
red: setup.range(1, 5)
}
Is this guy drunk or what? And no, copy past obviously doesn't work because that's too many values and the game doesn't see any of the portraits. His excuse for making the howto for people who "only want certain girls" is less than stupid given that he can't even make folders with the same name as those ingame to replace files exactly. This should be a drag and drop mod yet he managed to screw even that up.
no i wasn't drunk at the time , if you think of it , the 2 first mod were launch over a year ago and thus the game and the code evolved since back when i writed the "how to" the code for the hair was
white:{
black: setup.range(1, 18),
blonde: setup.range(1, 15),
brun: setup.range(1, 41),
red: setup.range(1, 11)
},....
but the dev changed the code since, into :
female: {
asian: setup.range(1, 10),
black: setup.range(1, 5),
white: setup.range(1, 20),
latina: setup.range(1, 5)
},
so now you only have to put the exact number of portrait for each race , instead of have to put the exact number for each color of hair , example:
so instead of :
(old code) white:{
black: setup.range(1, 18),
blonde: setup.range(1, 15),
brun: setup.range(1, 41),
red: setup.range(1, 11)
}, ...
which make 85 portraits in total ( if you choosed all),
(new code) it's:
female: {
white: setup.range(1, 85),...
that's why the copy and past don't work anymore , even if the principal stay the same