Theme editor

  • RequestStream Movies, TV shows and anime streaming • 1 week trial
  • LewdCorner Site Cleanup Update
    A new cleanup update has been posted covering the recent Vault rework, rank changes, policy cleanup, and theme polish. The goal is to make LC cleaner, easier to understand, and safer for the site going forward. - Jack Of Blades
    Read More
  • use the latest updates page in the main menu for recently updated games (we are still fixing this section.)
5.00 star(s) 1 review
Notice
Updated due to the game being leak elsewhere.
For me the only one that I'm interested in is Hana. I got excited when seeing her as I was like sweet there will be some lesbian scenes but then I was NVM she's got a horse cock like everyone else in the game.


There's already animations in the game in spots it's just that the DEV forces you to click to make the animations move. Take the BJ scene with the zombie if you copy all of the show tra108 through to tra112 place them in the script in the correct order and then replace the show part with scene and on the end of each one add with dissolve you'll have an animated scene without the clicking and you can copy and paste the group as many times as you want and you can even use them to replace most of the clickable stuff for that scene. So if you do it right it should look like this.

ma "Now start putting the head of my cock in your mouth."

hide tra107
scene tra108 with dissolve
scene tra109 with dissolve
scene tra108 with dissolve
scene tra109 with dissolve
scene tra108 with dissolve
scene tra109 with dissolve
scene tra108 with dissolve
scene tra109 with dissolve
scene tra108 with dissolve
scene tra109 with dissolve
scene tra108 with dissolve
scene tra109 with dissolve
scene tra110 with dissolve
scene tra111 with dissolve
scene tra112 with dissolve
scene tra110 with dissolve
scene tra111 with dissolve
scene tra112 with dissolve
scene tra110 with dissolve
scene tra111 with dissolve
scene tra112 with dissolve
scene tra110 with dissolve
scene tra111 with dissolve
scene tra112 with dissolve
scene tra109 with dissolve
scene tra108 with dissolve
scene tra107 with dissolve

If you don't replace the show with scene the animations will move slower and if you have groups like tra108 and tra109 the animation will only move 1 time and then sit there till it gets to the new set and then sit there as well so you have to change it to scene and it's move back and forth.
Lol, I was confused with the bj from zombie scene, that I had to extract the file so I can know whether were talking about the same game...:ROFLMAO: but aside from that, its good stuff. I'll try to learn and understand what you typed and apply it.
 
Lol, I was confused with the bj from zombie scene,
I changed the shop keepers name in the script file to Mr. creepy looking fucker because that's exactly what they look like. In fact I changed most male characters names in the game.

Brother is now Gaykid his friend is now Gaykids buttbuddy the dad is now Ugly old dude the fat dude is now Mr. Ugly fat bastard most of the black dudes have been changed to generic black dude 1 - 2 -3 shop keeper was changed to Mr. creepy looking fucker and his wife is now Mrs. creepy looking fucker though I think I might change it to the undead or Mr. zombie Marhal is now Marshass his friend is now CandyAss there's also a Spazo - Dickless wonder - Bald pathetic retard - Bobbin on your dick - Loser 1 and Loser 2 that I can't remember what use to be their names.
 
I changed the shop keepers name in the script file to Mr. creepy looking fucker because that's exactly what they look like. In fact I changed most male characters names in the game.

Brother is now Gaykid his friend is now Gaykids buttbuddy the dad is now Ugly old dude the fat dude is now Mr. Ugly fat bastard most of the black dudes have been changed to generic black dude 1 - 2 -3 shop keeper was changed to Mr. creepy looking fucker and his wife is now Mrs. creepy looking fucker though I think I might change it to the undead or Mr. zombie Marhal is now Marshass his friend is now CandyAss there's also a Spazo - Dickless wonder - Bald pathetic retard - Bobbin on your dick - Loser 1 and Loser 2 that I can't remember what use to be their names.
I did it but quick question though:
How can I make the scene repeat automatically without additionally adding more lines?
What can I add so that the loop doesn't stop on the next text?
And is there additional commands other than dissolve?

Or should I just stop asking these questions and learn renpy from the ground up? :ROFLMAO:
 
I did it but quick question though:
How can I make the scene repeat automatically without additionally adding more lines?
What can I add so that the loop doesn't stop on the next text?
And is there additional commands other than dissolve?

Or should I just stop asking these questions and learn renpy from the ground up? :ROFLMAO:

Most of what I have learned in the few years that I have been messing with script files is that most of it has been from trial and error and using other DEV's script files in other script files. Like I'm playing a renpy game and a animated scene starts I can open the script file in notepad look for the line before the animation starts and then look and see what the DEV did to achieve it. I believe there is a loop way to do animation that are done using images instead of videos but I can't remember how.
 
Most of what I have learned in the few years that I have been messing with script files is that most of it has been from trial and error and using other DEV's script files in other script files. Like I'm playing a renpy game and a animated scene starts I can open the script file in notepad look for the line before the animation starts and then look and see what the DEV did to achieve it. I believe there is a loop way to do animation that are done using images instead of videos but I can't remember how.
I finally did it!! I had to make a separate statement for it.
Python:
image malikbj:
    "tra108" with dissolve1
    0.8
    "tra109" with dissolve1
    0.8
    repeat
image malikbja:
    "tra108" with dissolve1
    0.8
    "tra109" with dissolve1
    0.8
    "tra110" with dissolve1
    0.8
    repeat
image malikbjb:
    "tra110" with dissolve1
    0.8
    "tra111" with dissolve1
    0.8
    repeat

And then you make a call statement
Python:
    ma "Haaa... Very very good, Alyssa."
    ma "Keep doing this."
    scene malikbj with dissolve
    ma "So fucking good..."
    ma "Now it's time to relax your throat. Deeper Alyssa."
    scene malikbja with dissolve
    ma "Fuckyeah!"
    ma "Huah."
    scene malikbjb with dissolve
    ma "Holy Fuck!!!"
    ma "Oh, shit! Ohh..."
    ma "Come on, a little more. Y-You can do it, Alyssa."
    a "*{i}I think I know how to do it. Haha, I'm a smart girl.{i}*"
    a "*{i}Let's see if I can do it a little deeper...{i}*"
    scene malikbjc with dissolve
    ma "OOHHHH MY GODDDD!!"

Well its a new experience for me lol and never doing it again cause I freaking hate programming.. :ROFLMAO:

And I also forgot that you need to define dissolve1 and thanks for the game dev...:)
Python:
define dissolve1 = Dissolve(0.3)

Although couple of questions like, is it necessary to use the "hide" statement after the "scene"? and should I add "return" statement after "repeat"?
 
Last edited:
I finally did it!!
Congrates!

"hide" statement after the "scene"?


I used it because the dev uses it in their script.

I never had to define the dissolve. For the scene I just did this.
----------------------------------------------------------------------

ma "Now start putting the head of my cock in your mouth."

hide tra107
scene tra108 with dissolve
scene tra109 with dissolve
scene tra108 with dissolve
scene tra109 with dissolve
scene tra108 with dissolve
scene tra109 with dissolve
scene tra108 with dissolve
scene tra109 with dissolve
scene tra108 with dissolve
scene tra109 with dissolve
scene tra108 with dissolve
scene tra109 with dissolve
scene tra110 with dissolve
scene tra111 with dissolve
scene tra112 with dissolve
scene tra110 with dissolve
scene tra111 with dissolve
scene tra112 with dissolve
scene tra110 with dissolve
scene tra111 with dissolve
scene tra112 with dissolve
scene tra110 with dissolve
scene tra111 with dissolve
scene tra112 with dissolve
scene tra109 with dissolve
scene tra108 with dissolve
scene tra107 with dissolve

ma "Now it's time to relax your throat. Deeper Alyssa."

scene tra107 with dissolve
scene tra108 with dissolve
scene tra109 with dissolve
scene tra108 with dissolve
scene tra109 with dissolve
scene tra108 with dissolve
scene tra109 with dissolve
scene tra108 with dissolve
scene tra109 with dissolve
scene tra108 with dissolve
scene tra109 with dissolve
scene tra108 with dissolve
scene tra109 with dissolve
scene tra110 with dissolve
scene tra111 with dissolve
scene tra112 with dissolve
scene tra110 with dissolve
scene tra111 with dissolve
scene tra112 with dissolve
scene tra110 with dissolve
scene tra111 with dissolve
scene tra112 with dissolve
scene tra110 with dissolve
scene tra111 with dissolve
scene tra112 with dissolve
scene tra108 with dissolve
scene tra109 with dissolve

" "

hide tra109
show tra113
 
You must be registered to see attachments
 

Attachments

You must be registered for see attachments list
It's probably gonna be released here in about two weeks, 3-5 days if you skim through other websites.
 
Mhhhh after playing 0.3 and 0.4 not really a fan of the way Alyssa's corruption is handled/where the story is headed. I really don't like that she seems to start enjoying her sexual encounters. I'm under the impression that she's slowly turning into a cock hungry whore.

For example, after the encounter with the two homeless lads, I found it extremely weird that she was eager to train to give them blowjobs. Same thing when she gives her underwear to the store clerk.

Initially, the game title made me assume that Alyssa would face difficult situations that would lead to unpleasant sexual encounters (at least with random people/not her close family) I kinda expected more reluctancy from her and more pressure from the outside world. Bummer :(

That being said, the game is still pretty good and worth playing. Cheers
fully agree.
its slowly turning into the common "oh shes just a massive whore who loves fucking everybody"
not very interesting
 
fully agree.
its slowly turning into the common "oh shes just a massive whore who loves fucking everybody"
not very interesting
That's the right way. Go Alyssa go, spreads your legs for the old guys.
 
That's the right way. Go Alyssa go, spreads your legs for the old guys.
yeah i agree with you. Shes slowly turning into a whore and she likes it. For me this is a nice plot, not the usual sister brother story, well done so far Partedes!
 
fully agree.
its slowly turning into the common "oh shes just a massive whore who loves fucking everybody"
not very interesting
well then dont play it nobody forces you to do so mate as a dev you cant make everyone happy and changing the whole game just because some dont like it would destroy the whole concept and story of a game maybe the next game if that happens will be to your liking
 
well then dont play it nobody forces you to do so mate as a dev you cant make everyone happy and changing the whole game just because some dont like it would destroy the whole concept and story of a game maybe the next game if that happens will be to your liking
I agree with that, keep it orginal way.
 
Waiting for 0.5 :sleep:
 
Back
Top Bottom