Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

Homatoz

12
Posts
A member registered May 11, 2018

Recent community posts

Hello everyone!

I have created another version of my mod, and I have good and bad news.

Bad news - old saves are no longer compatible with the mod. I have changed so much during this time that it is easier to forbid them from loading than to try to make them work correctly.

Good news - the mod now has an advanced skipper that allows you to start reading from any chapter that was previously read. You will only need to make a small, but general choice, and you will start from the selected chapter, receiving all the required stats.

  • Path
    • Path of depravity - all characters will automatically choose the option for maximum sexual activity.
    • Path of innocence - main character will avoid sexual activity, other characters will be given a choice.
  • Lesbian mode
    • If the lesbian mode is enabled, scenes with girls will be selected, even if there is no sexual content.
    • If the lesbian mode is disabled, then preference will be given to heterosexual scenes, even if scenes with girls are more sexual.

Of course, this is not the same as making your own choices on every event, but it is an ideal approximation for players who go to extremes.

(Mod link)

If you want, add this link: https://github.com/Homatoz/Casual-Desires-Mod

I updated the project on GitHub and opened public access.

(1 edit)

Hi!

Little fix for my mod before big works.

Fixed: If we meet Mia for the first time in Chapter 10, we talk like an old friend. Yes, I can not only fix bugs, but also generate them. :-)

Changed: Luna can't choose a boys' club in Lesbian mode. Let's save the lesbians from Jacob's dick!

(Mod link)

If this does not interfere with your plans for the development of the game, then I will be only glad if you use my mod. And if you already have content for version 0.20, then I am ready to help with converting it to the new code.

I also have a question. I plan to add two features to the mod. And the question is whether you want to add this to the main game, or it will only be possible to get it with the installation of the mod.

1) Advanced skipper. This will not just be "Skip to act X", but two options for each act - innocence or lust, with the calculation of the corresponding stats. There will also be an interactive option, with the ability to make a choice in each scene or start the game from this scene.

2) Realistic calculation of stats. What do I mean here? If Rita sucks, licks or is licked - this is a sexual partner, even if she has not lost her virginity. And she will lose her virginity in one case - during penetration, and not like, for example, in Chapter 9, because she thought so.

I made a guide for myself. I can upload it and give a link. But it's not in English.

About the licker in the locker room. Only if Rita decided to have sex in chapter 9, she starts remembering this scene and decides for herself whether she is a virgin or not. Yes, losing virginity is the work of the brain. :-)

(1 edit)

Hello, ionDivvy!

Looking forward to continuing and also adding functionality to my mod. Now this is a gallery of all sex scenes. Plus fixed the laundry room scene (Thanks, EveKat!)

Pros:

- It's still 100% compatible with the original script flow and all calculations.

- It's still free for you if you want to implement all the code into the game.

Cons:

- Now not so compatible with old saves. Something around 50-60%.

- To unlock scenes, you will need to start the game again. But I plan to add scanning of loading saves with opening already viewed scenes in the near future.

UPD: The "permanent" file is now checked to open seen scenes in the gallery.

(Mod link(Mod link)

P.S. Anyone who wants to test the mod needs to unpack the archive into the game folder and replace the files.

I found a solution for section 33. A few conditions and copying the text from chapter 13 and...

(I hope the code formatting works the way I think it should. Let's try...)

33) Replace 27245-27267 with the following code:

    if c13femalebeach:
        pov "Yeah, that looks just like them."
        pov "I should go and say hello!"
    else:
        if lesonly:
            pov "I think I recognize one of them, but the other..."
        pov "I should go and introduce myself."
    show c14 beachnude 7f
    with dissolve
    pov "Hello!"
    pov "Sorry if I'm bothering you two."
    show c14 beachnude 8f
    with dissolvelong
    if lesonly:
        wom1 "Oh? It's the lovely lady from before."
        wom1 "Last week, I think?"
    if c13femalebeach:
        wom2 "Happy to see you came again."
        wom1 "Yes. We were wondering if we'd see you again."
        pov "Haha. I figured it was too hot to be dressed today!"
    else:
        if lesonly:
            wom2 "And this is...?"
            wom1 "Ah, just a cute face I invited here before."
            wom1 "I'm glad you showed up this time."
            pov "Sure. Nice to meet you."
        else:
            wom1 "Hello! Nice to meet you."
            wom1 "I haven't seen you around before. Is this your first time?"
            pov "Yeah. I guess you could say I was curious..."
(3 edits)

Hello again!

I don't know if my proposal will interest you, but I'll write everything as it is, and then see for yourself.

It is quite difficult not to notice that with each new chapter the conditions become longer and longer and they are not always correct. I reworked your code and made, so to speak, an unofficial mod. Its main feature now is its partner management system. No more checking to see if there was already a first partner and no more complicated checks to decide how many partners to add. We simply call the first_partner and add_partner functions, and write in them, respectively, the first partner and all participants, and the system itself will figure out whether anything needs to be changed or added. You will also no longer have to write long conditions to check whether Rita had a partner. It is enough to call the check_partner function.

Since I really don't want you to abandon the development of the game or go crazy because of complex checks, you can download this mod from here - (Link) (Link). In fact, this is a full-fledged version 0.19b, and you, if you wish, can use it instead of the original without changing anything in it. But there are pros and cons.

Pros:

1) The scenario flow, parameter counting, etc. have not been changed. All this is completely consistent with the original version.

2) Existing saves are 95% compatible with the mod. The updater performs all necessary actions to ensure the functioning of the new system.

Cons:

1) Changes have been made to the mod that are incompatible with the original code:

- Actually, the partner management system itself.

- Variable names have been changed for better readability.

- Variables with values "Yes"/"No" and 0/1 are converted to boolean.

So if you are interested in this, then there are two options for implementing this into the game:

1) Take just the partner management system (the sp_control.rpy file, the part of the updater.rpy file associated with the "sexp" variable), add it to the original code and then go through the entire code, changing those parts that are associated with partners. The mod archive contains a readme.docx file with examples of changes.

2) Take the mod as a new basis, and correct the code for version 0.20 according to it.

You can argue which option is better, but I doubt that anyone can convince me that if vir=="Yes": is better than if virgin: :-)

P.S. Hail Google Translator! :-)

UPD: Sorry, I found a few more checks that I missed. Updated the link.

UPD2: In addition - if you are interested, chose the second option and agree that you need to fix everything on the list in the previous comment - then here is a (link) (link) to the mod plus fixes for version 0.19b, except sections: 32,37,38,40 - these are graphical issue; 29,33,36 - my english is not very good; 35,39 - as I wrote before, I did not change the calculations.

(6 edits)

Hi! It's me again and my big bag of bugs.

Line number correct for v0.19b

Bugs

1) Line 630 must be if fp=="Boyfriend":

2) Line 15846 must be if vir=="No":

3) Line 18669 must be man "Your first time?!"

4) Remove line 23476. Innocence point already increases in line 23464.

5) Line 26834 must be show c14 beachnorm 6

6) Line 29700 must be show c15 afterwork tease 7

7) Line 31011 must be if not lesonly==True and les<=2:

8) Line 33428 must be show c16 hotsprings 9m

9) After line 33662 must be $c16mixedvag = True

10) After line 33796 must be $c16mixedanal = True

11) Line 33829 must be $c16mixedbjonly = True

12) Lines 34685-34695 will never be executed. Remove or place before menu.

13) Line 36577 must be show c17 poker violet 14

14) After line 38900 must be show c18 stripclub 15m

15) Line 41359 must be $c19viorefuse = True

Not bugs, just KISS

16) Line 7554 can be if not c4viosharing:, condition vioc<=1 always True.

17) Lines 28236-28258. Excessive code. I doubt that someone will turn on lesbian mode in the middle of the scene. But then choice of CJ already disabled in lines 28039-28066.

18) Lines 35273, 35277-35290, 35371-35374. The same as before.

Logical inconsistencies

19) After line 1364 insert pov "Hmm... maybe I should go clothes shopping soon.", otherwise, the phrase about advice will look strange.

20) Lines 3962-3967 must be wrapped in if not lesonly==True:. This text clearly not for lesbian mod, and it's little wrong to give innocence point for lifestyle.

21) Line 6145 must be under if not fp=="Classmate":

22) Line 6746 must be under if not fp=="Classmate":

23) Lines 8228-8229 must be wrapped in if not lesonly==True:. In lesbian mod Rita don't think about photos.

24) Line 8237 must be under if not lesonly==True: or place above label c5boysskip:. In lesbian mod it's not Rita's choice.

25) I still find it strange that if in the first scene in the pool Rita calls the police, then in the second scene she says that she got rid of the pervert and he won’t bother her, in the third and fourth she thinks of him as an old acquaintance and has fun with him , and the fifth scene is simply excluded because the police were called a long time ago. I see two solutions:

First, hard - we completely exclude third and fourth scenes in the pool by changing the lines 8910 and 10439 to if lesonly==True or c2pervertpolice:

Second, soft - give a chance to pervert

25a) After line 8939 insert if c2pervertpolice:, and add something like pov "He's still afraid of the police blah-blah-blah" and under else: add current lines 8940-8941.

25b) Line 8950 place under if not c2pervertpolice:

25с) Line 9155 place under if not c2pervertpolice:

25d) Remove lines 17291-17296.

26) Lines 13169-13465. It's not so fair that in normal variant Rita have chance not order pizza and get innocence point, but in lesbian mode she can't.

27) Line 13594. Rita sit back? For what?

28) Line 13622. "I'm curious to see what your room looks like." looks like Rita has never seen Haruka's room, but further text disproves this.

29) In lines 18588-18633 still need some if c5outside:

30) After line 22127 insert if c9connorfirst or c9joshfirst:, then add something about good dicks and under else: add current lines 22128-22132. Text in this lines only suitable for first sex with CJ.

31) I think line 24007 must be c "W-Well... I guess I understand." It's looks like phrase of Connor, not Rita.

32) A small vibrating problem that is not clear how to solve. In chapter 13 in lines 25927-25928, Rita says that she never bought or used a dildo, but in chapter 9 in 16111-16209 she used a similar thing when having sex with Luna. Or another color not count? :-)

33) Lines 27249-27263. If this is normal game and Rita has never been on nudist beach, then she has never seen these girls.

34) Violet's first group sex is difficult to fit into lesbian mode, but for everyone else there are options - sex with Sophia, sex with two girls, sex with a girl from the club. Maybe it makes sense to add checks?

35) Lines 28656, 35995 - Rita get filled both holes, and creampiecount+=2. Lines 33736-33752 - Rita get cum in the ass and no one point. Clear injustice.

36) Lines 34652-34662 Has the administration changed at the massage parlor? Always asked at the entrance - "Man or woman", but now need yell from room, "Oh, I forgot! I want a (wo)man, a (wo)man!" :-)

37) Lines 35742-..., 36623-... Loser and completely naked Rita looks overdressed. She is a cheater!

38) Line 36355 - "The winner of the night, [vio]", but 36376 - Luna sits in clothes.

39) Line 36152. Looks like here must be $creampiecount+=1

40) "c18 lucy garden *" - Rita walks with Lucy in one clothes, but returns after meeting in another - "c18 bus *"

41) I think, after line 39103 must be $inn+=1. At last in part with the girls this is present (line 38787).

42) Lines 41141-41166. Shouldn't there be $c19viorefuse = True, since Rita refused Violetta?

UPD:

43) You didn't count partners when was poker only with girls.

44) Lines 10198, 10352, 10912. Rita jerks off the delivery guy (c5handjob), then sits in the pool, not paying attention to the pervert, goes to the cinema with CJ to watch a movie, then goes home with the guys to watch TV, and... "I don't remember any delivery guy dicks, this is my first dick that I hold in hand."

45) There are many checks c9*sex that Rita wanted to have sex with someone, but all of them without checking and c9hadsex that she actually had sex.

46) Lines 38895, 39211, 41353. Need to remove and not c17pokermixedvio and not c17pokersexvio. In mixed poker with Violet there was only one partner - Nick. After correcting section 43, add and c17pokersexgirls.

47) Line 170 must be default c15hotspringsmixed = False

48) Lines 16628, 17167, 17185, 18960, 29176, 38894, 39210, 41351. Violet is editable name. Need to use vioname variable.

49) Lines 16925, 18971, 23848, 27994, 36473. The same for Haruka. Need to use frname variable.

50) Line 31379 must be $fp="Luna & " + frname

And some more

9) Another "mistake or plan" question. Some code blocks (21550-21589, 23447-23460, 23797-23810) have two "$inn+=1". It's ok?

10) Line 22242 - I think here need "pov", not "wom".

11) Lines 23771-23772 makes sense only in "Lesbian Mode". In vanilla game need other words because women not invite Rita on nudist beach.

12) Line 25199 - must be "$c13lunakissonly = True".

13) Lines 25325 and 25489 - "Could you please lay on your back?". Hmm... Rita, of course, is nervous, but not so nervous that she forgets where her back - "c13 spa 15.jpg".

Another pack bugs, questions and advices.

1) Line 18019 - "if not c6parkgirl or c8mia:". It still work, but correct condition is "if not c6parkgirl and not c8mia:" or just "else:".

2) Line 13267 - IOError: Couldn't find file 'audio/effects/lewd/suck1.wav'.

3) Line 15573 and 15830 - must be "if vir=="No":".

4) Rita's Stats don't show FJ and TJ.

5) Rita don't increase $les after meeting with Mia, if first partner was Luna. Is this a mistake or a plan? Blocks 17923-17935 and 18001-18012.

6) Line 17944 - must be "show c10 mia 20".

7) I think, here (18570-18784) need some "if c5outside:" conditions. In chapter 5 we can choose "Go swimming at the local pool." and not meet this guy.

8) Of course, this is not a bug, and is more consistent with the concept of jumping for "Lesbian Mode". But ""Josh & Connor." if not lesonly:" in line 14548 looks more clear than two menus. The same for line 17282 - ""Spend some time in my pool." if not c2pervertpolice:".

(4 edits)

Hi!

I found little old bug. In v0.18c in line 6376 you set one variable - "$c5downtown = True". But in line 6454 you check another - "if c5outside:".

UPD: And one question. If Rita called police in chapter 2, how can she 'help' her neighbor in chapter 6 (and 7 too)? And if it's ok, and he just decided to be brave or stupid, then why he can't appear in сhapter 10?

UPD2: I think code in line 11059 must be "$c7poolinnocent = True". It's not used anywhere, but...

UPD3: Line 11711 - "show c7 vio mmf 20". Strange image for situation when Nick already join.