HTML Completed The Time of Cherries [Build 17] [obsessionau]

3.60 star(s) 17 Votes

Darklord786

New Member
Aug 8, 2022
7
1
post your .lsm
It goes like this. I have kept it as different file instead of adding it in the main file


window.getLSMData = function () { return {
"ModDescription":"The minimum needed files.",

"ModelBios":{
"KleioValentine" : {
name : "Kleio",
namefull : "Valentine",
age : "33",
nationality : "American",
hair : ["long", "blonde"],
eyes : "green",
height : "170",
weight : "60",
bust : "94",
waist : "66",
hips : "91",
cup : "D",
tattoos : "Yes"
},
}}};
 
Nov 19, 2023
19
0
What I used to do when I wanted to see an image full-sized was right-click and select "open image in new tab." Not sure if that's browser dependent, but I'm pretty sure there isn't any built-in way within the game.
is there a solution in android? i play the game through Joiplay and cant seem to open these images.
 
Mar 16, 2022
36
50
It goes like this. I have kept it as different file instead of adding it in the main file


window.getLSMData = function () { return {
"ModDescription":"The minimum needed files.",

"ModelBios":{
"KleioValentine" : {
name : "Kleio",
namefull : "Valentine",
age : "33",
nationality : "American",
hair : ["long", "blonde"],
eyes : "green",
height : "170",
weight : "60",
bust : "94",
waist : "66",
hips : "91",
cup : "D",
tattoos : "Yes"
},
}}};
The last model in your .lsm (or the only one, in your case) shouldn't have a comma at the end of the bracket. Otherwise it all looks correct as far as I can tell.

1725894327385.png
 
  • Like
Reactions: Darklord786

obsessionau

Member
Game Developer
Sep 27, 2018
276
419
Darklord786
If you want to test a model, go to the office and enable debug mode with "foxystag". You will then have a option to add any model so that you can test her.

necredussenpai
The only way I put in game to see the full size images was in the models profile "cards collected" section.
 

obsessionau

Member
Game Developer
Sep 27, 2018
276
419
If this game used .jpegs, it would easily baloon to multiple gigabytes.
Optimized .webps are awesome.
They are both custom compression formats and when testing I found the file size between the two very similar at the same compression ratio. The thing is at higher compressions, the quality is better with .webp as you don't have the artefact issues around edges that .jpegs do meaning you can make the compression higher resulting in the smaller file size for the same quality result.

Other reasons for .webps:
* Support transparency, .jpeg does not. (don't need to use .png)
* Support animation. (don't need to use .gif)
* Can be lossless (don't need .tiff)
* Better fine edge details are kept at higher compressions
 

King3435

Newbie
Dec 28, 2023
53
17
Damn bro liked this game so much
need more games like this it would be better if they expand this game more with more different functions
 

LangliSor

New Member
May 26, 2023
2
0
I was trying to get into modding, I was able to add models, but if I could trigger events based on certain people that would be awesome
 

obsessionau

Member
Game Developer
Sep 27, 2018
276
419
I was trying to get into modding, I was able to add models, but if I could trigger events based on certain people that would be awesome
When you say based on certain people do you mean more than one model? FYI The chance of two specific models being present when there could be 1000 models in the game is very low and not worth the time.

events are set up in a similar way to characters but a bit more difficult to get right:

"Event Name" : {
relationship : 11,
flag : "AlinaLi,ArianaMarie,EmilyWillis,GabrielleKlein,LottieMagne,OliviaGrace",
pgender : "male",
eventcontent : [ ... ]
},

This event will fire for the flagged characters and only when their relationship hits 11. So for example if you wanted to add a threesome event with Emily Willis and another character, you can put EmilyWillis in the flag but it won't test for the other character.
If it was a threesome with Emily Willis and Ariana Marie and you added both their names to the flags, the event would fire twice once for each character.
 

LangliSor

New Member
May 26, 2023
2
0
When you say based on certain people do you mean more than one model? FYI The chance of two specific models being present when there could be 1000 models in the game is very low and not worth the time.

events are set up in a similar way to characters but a bit more difficult to get right:

"Event Name" : {
relationship : 11,
flag : "AlinaLi,ArianaMarie,EmilyWillis,GabrielleKlein,LottieMagne,OliviaGrace",
pgender : "male",
eventcontent : [ ... ]
},

This event will fire for the flagged characters and only when their relationship hits 11. So for example if you wanted to add a threesome event with Emily Willis and another character, you can put EmilyWillis in the flag but it won't test for the other character.
If it was a threesome with Emily Willis and Ariana Marie and you added both their names to the flags, the event would fire twice once for each character.
I tried the flag, it didn't seem to work. I was trying to make a default friendship event that only trigged on select models. That may be the issue, and I could probably do a non default one
 
3.60 star(s) 17 Votes