Frostfire281

Member
Jan 18, 2019
126
212
I gave it a try, since I love open-source software. Trying to convert one test file, it tells me it can only convert 1/3 of the file on the trial version, and offered to upgrade. Uninstalled. Thanks anyway.
I've done probably 100+ conversions fully, with no issues, and no prompts to upgrade, from video files. No mention of being a trial version either.
 

Frostfire281

Member
Jan 18, 2019
126
212
Hi! Just a quick question.
Do the gif/video are related to every girls? Or are they just random?
As a baseline, it's random gif/videos, though I believe some of the vanilla girls have some specific videos of them (it's been a long time since I used the vanilla ones, so I haven't looked in a while). Some people upload their own packs of girls, with some of those packs having videos and some not having videos.
 

5mithers

Newbie
Aug 3, 2019
78
68
Just wanted to comment here that the coding of this game is very good. With everything being lists of arrays, it makes it easy to iterate and test when a new release comes out.

Basic code to "cheat" and quickly see what has changed:


Code:
for girl in girls:
  girl.corruption=100;girl.naturism=100;girl.fear=100;girl.affection=100;girl.intellect=25;girl.discipline=100;girl.mother.fear=100;girl.mother.affection=100;girl.mother.discipline=100;girl.mother.corruption=100
 
Sep 17, 2023
129
69
I've done probably 100+ conversions fully, with no issues, and no prompts to upgrade, from video files. No mention of being a trial version either.
I'm not sure what it was that I had installed, long story... I did get Handbrake installed, it works fine...

I am having an issue with an event I'm working on... I'm trying to go from a .webm to a .webp, but it's not working.
The scene in question starts with a still image, there is a couple of lines you click thru, then a successful switch to a video. There is supposed to be two more lines to click thru, then a switch to a still image again. That switch doesn't happen. The text continues to cycle as you click, but ignores the image commands. Then, after six or seven clicks, the video it's playing fills the game screen, and you can no longer do anything. Except quit the game. There are no error codes, but if I click a few times on the video in full-screen, it brings up the eventConfig.rpy file. I've never touched that, it's a handler, and I try not to play with them. I have no clue what the issue is...
 
Sep 17, 2023
129
69
not very familiar with renpy is there a way to edit?/change?Text during interactions.
Go to the game/scripts folder, that's where everything with text is. Inside the .rpy files, you'll see lines like this:
Code:
    $ timeManager.skipTime(0,15) <--- time an action takes
    hide phone <--- code for the phone
    player "Hello Ms. [selectedGirl.mother.surname] ?" <--- everything inside quotes is text in the game.
    show phone <--- code for the phone
    # rdm sentence <--- the pound symbol is a note
    $ _str = renpy.random.choice(["Hello. Yes, that would be me.","Hello, who is calling?", "Hello, who is this?"]) <--- everything in the double quotes is text that can be changed
I added notes in the code box about what different lines do... keep back-ups of things before tinkering with them...
 
  • Like
Reactions: showmeporngames
Aug 7, 2020
144
150
Go to the game/scripts folder, that's where everything with text is. Inside the .rpy files, you'll see lines like this:
Code:
    $ timeManager.skipTime(0,15) <--- time an action takes
    hide phone <--- code for the phone
    player "Hello Ms. [selectedGirl.mother.surname] ?" <--- everything inside quotes is text in the game.
    show phone <--- code for the phone
    # rdm sentence <--- the pound symbol is a note
    $ _str = renpy.random.choice(["Hello. Yes, that would be me.","Hello, who is calling?", "Hello, who is this?"]) <--- everything in the double quotes is text that can be changed
I added notes in the code box about what different lines do... keep back-ups of things before tinkering with them...
Thank You!!
 
Sep 17, 2023
129
69
Does anybody know how, or if, the girl's cash can be modified? I'm working on events in I'd like to be able to give a girl some extra cash. Nothing is working. I've been trying to do it on a single line, with stuff like this...
Code:
$ selectedGirl.mother.cash(200)

$ selectedGirl.modify.cash(200)
but I get attribute errors... I also tried 'wealth', I think I got a different error, but I don't remember what it was now. Is there a way to change the girls money-supply? It's easy to do the player's...
 

Frostfire281

Member
Jan 18, 2019
126
212
I know you can tag girls as wealthy in their files, that would increase their starting money, but once in game I'm not aware of a console command that does it.
 
Sep 17, 2023
129
69
I know you can tag girls as wealthy in their files, that would increase their starting money, but once in game I'm not aware of a console command that does it.
I just stumbled over the solution... it's the same as modifying other traits... $ selectedGirl.modify("cash", ###)... I sometimes trip over the answer that I'm looking for...
 
  • Like
Reactions: 5mithers
Sep 17, 2023
129
69
My latest creation, Bella Spark (aka Emma White)... I only had two photosets, a hardcore video and a softcore video to work with, plus a google search to get a handful of other useful images and a visit to PornHub for some additional video.
Bella has two photoshoots, four events, some of her own vids, and a fullbody folder. She is an 'S'-tier model, with a rating of 101. The unzipped file size is fairly light 64.97Mb... the .7z file is 63.4Mb...
What you see with my new model, counting absolutely everything, from image and video capture/conversion to writing & debugging, and final testing and modification, represents about 50 hours. So I hope you like her, I have worked really hard on it. If there are any issues you find, please let me know so I can try to address them.
Cdn_sausage_Bella_Spark.7z ------->
The events are really out there. Each was written on the fly, as I went. Each started with a single line as a "plot", and went from there....

You don't have permission to view the spoiler content. Log in or register now.

A quick additional note about the script used for the call-girl/prostitution events... to make it deduct the correct amount of money from the player, I had to halve the amount it's checking for. For some reason, in the 'if' argument to create the variable, it is deducting money, and again when you go to pay the girl. So I cut the amount in half, to make sure you're not being double-billed... just make sure you have the right amount for whatever you're doing... I don't know how the game will handle negative balances in your cash, I didn't test that...
 

Smegmut

Newbie
Oct 30, 2020
49
21
Could someone help me with a bit of syntax please?

I'm putting together a heap of vids for the vids folder, and want to delineate between her stripping her bottoms with a top on or with a top off, and stripping her top with her bottoms on or with her bottoms off.

Would I name the files "strip_bottoms_top","strip_bottoms_topoff", "strip_top_bottoms", and "strip_top_bottomsoff"? Or perhaps "striptop_bottoms", "striptop_bottomsoff", "stripbottoms_top", and "stripbottoms_topoff"?

Or should it be something else all together?
 

Yoshitomo

New Member
Dec 7, 2019
14
27
inside the folder, game/vids, of the game you have two text files, at the beginning with the names that you can use, for example remove_top_panty or remove_jeans_top
 

mangasm

Newbie
May 29, 2017
77
88
My latest creation, Bella Spark (aka Emma White)... I only had two photosets, a hardcore video and a softcore video to work with, plus a google search to get a handful of other useful images and a visit to PornHub for some additional video.
Bella has two photoshoots, four events, some of her own vids, and a fullbody folder. She is an 'S'-tier model, with a rating of 101. The unzipped file size is fairly light 64.97Mb... the .7z file is 63.4Mb...
What you see with my new model, counting absolutely everything, from image and video capture/conversion to writing & debugging, and final testing and modification, represents about 50 hours. So I hope you like her, I have worked really hard on it. If there are any issues you find, please let me know so I can try to address them.
Cdn_sausage_Bella_Spark.7z -------> Pixeldrain
The events are really out there. Each was written on the fly, as I went. Each started with a single line as a "plot", and went from there....

You don't have permission to view the spoiler content. Log in or register now.

A quick additional note about the script used for the call-girl/prostitution events... to make it deduct the correct amount of money from the player, I had to halve the amount it's checking for. For some reason, in the 'if' argument to create the variable, it is deducting money, and again when you go to pay the girl. So I cut the amount in half, to make sure you're not being double-billed... just make sure you have the right amount for whatever you're doing... I don't know how the game will handle negative balances in your cash, I didn't test that...
Think you can put your Mods and Girl Packs on the google doc? I feel like a lot more people will be checking there.
 
  • Like
Reactions: Canadian_sausage
Sep 17, 2023
129
69
Think you can put your Mods and Girl Packs on the google doc? I feel like a lot more people will be checking there.
I hadn't thought about... I'll see if I can... I am thinking of a more centralized way of offering them... like gofile offers multiple files to host/dl on one page... Pixeldrain probably does too, I just likely overlooked it or misinterpreted how something was worded or something.

Edit: I sent a request for edit access on the google doc... I guess I'll have to check in now and then to see if I can do anything there....

Second edit: that didn't take long at all... figured it out quick enough too... the Google docs now includes my mods, and the new gofile like for them for the time being. is where you can find them centralized...
 
Last edited:
  • Yay, new update!
Reactions: mangasm
Sep 17, 2023
129
69
ezgif.com is where I go. It's very good, I think, and you can convert several gifs at once by opening several tabs.
Go check out - Anything open-source is free, it offers a wide range of options for encoding to .webm, .mp4 or one other I don't pay attention to... can't think of it now. It outputs really small files, I like the compression, and you can do dozens of files in a single run. I've done forty in one shot, just added the folder, set the queue and let it go.
 
  • Like
Reactions: Smegmut
4.10 star(s) 19 Votes