FirminC

Newbie
Mar 27, 2019
36
26
A small mod if you're interested:

To make the medbay spanking scene with Dr Tara and Nurse Rachel a bit more lively with matching sound, make 2 modifications.
Make a backup of script.rpy and medbay.rpy (and move these backups outside the game folder), or make sure you have the original files nearby, in case something goes wrong.

In script.rpy, find the following:
Code:
    transform rachelslap:
        "medbay/tarapanties03.png" with dissolve
        pause 1
        "medbay/tarapanties03b.png"
        pause .5
        "medbay/tarapanties03.png" with dissolve
        pause 1
        "medbay/tarapanties03c.png"
        pause .5
        repeat
modify the pauses to:
Code:
    transform rachelslap:
        "medbay/tarapanties03.png" with dissolve
        pause .75
        "medbay/tarapanties03b.png"
        pause .19
        "medbay/tarapanties03.png" with dissolve
        pause .75
        "medbay/tarapanties03c.png"
        pause .19
        repeat
Then in medbay.rpy, find:
Code:
show nextidle
call screen rachelslap
screen rachelslap:
    add rachelslap at center
    modal True
    button:
        xpos .91
        ypos .44
        xysize(140, 80)   
        action Jump ("RachelSlapEnd")

label RachelSlapEnd:
hide nextidle
and replace with:
Code:
play music "Sounds/slap.mp3"
pause .25
show nextidle
call screen rachelslap
screen rachelslap:
    add rachelslap at center
    modal True
    button:
        xpos .91
        ypos .44
        xysize(140, 80)  
        action Jump ("RachelSlapEnd")

label RachelSlapEnd:
stop music
hide nextidle

Edit: note to EpicLust - in the very next line the wrong avatar is used
ra "Did you see? ...
should be
ta "Did you see? ...
 
Last edited:
  • Like
Reactions: EpicLust

MATROS1999

Newbie
Jul 28, 2018
76
11
I'm sorry, but an uncaught exception occurred.

While running game code:
File "game/pool.rpy", line 577, in script call
call GwenDialogueRape
File "game/gym.rpy", line 2209, in script
mc "Damn, I made a right dreamy mess. I'd better clean all of it before I leave or people will think I'm a total pervert. Which I definitely AM NOT."
File "game/script.rpy", line 16501, in execute
screen calendar():
File "game/script.rpy", line 16501, in execute
screen calendar():
File "game/script.rpy", line 16506, in execute
text ( "{}".format( [ None, "Morning", "Afternoon", "Evening", "Night"][period] ) ) style "periodWeek" xpos 1532 yalign 0.01
IndexError: list index out of range

-- Full Traceback ------------------------------------------------------------

Full traceback:
File "game/pool.rpy", line 577, in script call
call GwenDialogueRape
File "game/gym.rpy", line 2209, in script
mc "Damn, I made a right dreamy mess. I'd better clean all of it before I leave or people will think I'm a total pervert. Which I definitely AM NOT."
File "G:\Epic\Apocalypse-0.6-pc\renpy\ast.py", line 690, in execute
renpy.exports.say(who, what, *args, **kwargs)
File "G:\Epic\Apocalypse-0.6-pc\renpy\exports.py", line 1316, in say
who(what, *args, **kwargs)
File "G:\Epic\Apocalypse-0.6-pc\renpy\character.py", line 1131, in __call__
self.do_display(who, what, cb_args=self.cb_args, **display_args)
File "G:\Epic\Apocalypse-0.6-pc\renpy\character.py", line 842, in do_display
**display_args)
File "G:\Epic\Apocalypse-0.6-pc\renpy\character.py", line 591, in display_say
rv = renpy.ui.interact(mouse='say', type=type, roll_forward=roll_forward)
File "G:\Epic\Apocalypse-0.6-pc\renpy\ui.py", line 289, in interact
rv = renpy.game.interface.interact(roll_forward=roll_forward, **kwargs)
File "G:\Epic\Apocalypse-0.6-pc\renpy\display\core.py", line 2687, in interact
repeat, rv = self.interact_core(preloads=preloads, trans_pause=trans_pause, **kwargs)
File "G:\Epic\Apocalypse-0.6-pc\renpy\display\core.py", line 3071, in interact_core
root_widget.visit_all(lambda i : i.per_interact())
File "G:\Epic\Apocalypse-0.6-pc\renpy\display\core.py", line 531, in visit_all
d.visit_all(callback, seen)
File "G:\Epic\Apocalypse-0.6-pc\renpy\display\core.py", line 531, in visit_all
d.visit_all(callback, seen)
File "G:\Epic\Apocalypse-0.6-pc\renpy\display\core.py", line 531, in visit_all
d.visit_all(callback, seen)
File "G:\Epic\Apocalypse-0.6-pc\renpy\display\screen.py", line 424, in visit_all
callback(self)
File "G:\Epic\Apocalypse-0.6-pc\renpy\display\core.py", line 3071, in <lambda>
root_widget.visit_all(lambda i : i.per_interact())
File "G:\Epic\Apocalypse-0.6-pc\renpy\display\screen.py", line 434, in per_interact
self.update()
File "G:\Epic\Apocalypse-0.6-pc\renpy\display\screen.py", line 619, in update
self.screen.function(**self.scope)
File "game/script.rpy", line 16501, in execute
screen calendar():
File "game/script.rpy", line 16501, in execute
screen calendar():
File "game/script.rpy", line 16506, in execute
text ( "{}".format( [ None, "Morning", "Afternoon", "Evening", "Night"][period] ) ) style "periodWeek" xpos 1532 yalign 0.01
File "<screen language>", line 16506, in <module>
IndexError: list index out of range

help
 

zerozip0

Member
May 23, 2018
380
617
Changelog from 0.6 said:
...
HAREM: Pregnancy system implemented. So far, 5 girls can get pregnant and give birth (Amy, Michiko, Nancy, Taylor and Zara).
HAREM: Extra impregnation sex scene for each girl that can become pregnant.
...
YESSSSSS!!!!!! :love:(y):devilish::alien::giggle::p:BootyTime::lepew::4Head::cool::D
 
  • Like
Reactions: Skode and EpicLust

EpicLust

Dev of Cockham Superheroes
Game Developer
May 30, 2017
3,776
7,191
A small mod if you're interested:

To make the medbay spanking scene with Dr Tara and Nurse Rachel a bit more lively with matching sound, make 2 modifications.
Make a backup of script.rpy and medbay.rpy (and move these backups outside the game folder), or make sure you have the original files nearby, in case something goes wrong.

In script.rpy, find the following:
Code:
    transform rachelslap:
        "medbay/tarapanties03.png" with dissolve
        pause 1
        "medbay/tarapanties03b.png"
        pause .5
        "medbay/tarapanties03.png" with dissolve
        pause 1
        "medbay/tarapanties03c.png"
        pause .5
        repeat
modify the pauses to:
Code:
    transform rachelslap:
        "medbay/tarapanties03.png" with dissolve
        pause .75
        "medbay/tarapanties03b.png"
        pause .19
        "medbay/tarapanties03.png" with dissolve
        pause .75
        "medbay/tarapanties03c.png"
        pause .19
        repeat
Then in medbay.rpy, find:
Code:
show nextidle
call screen rachelslap
screen rachelslap:
    add rachelslap at center
    modal True
    button:
        xpos .91
        ypos .44
        xysize(140, 80)  
        action Jump ("RachelSlapEnd")

label RachelSlapEnd:
hide nextidle
and replace with:
Code:
play music "Sounds/slap.mp3"
pause .25
show nextidle
call screen rachelslap
screen rachelslap:
    add rachelslap at center
    modal True
    button:
        xpos .91
        ypos .44
        xysize(140, 80) 
        action Jump ("RachelSlapEnd")

label RachelSlapEnd:
stop music
hide nextidle

Edit: note to EpicLust - in the very next line the wrong avatar is used
ra "Did you see? ...
should be
ta "Did you see? ...
Thanks, I'll apply your code changes to the next version!
 
  • Like
Reactions: FirminC

EpicLust

Dev of Cockham Superheroes
Game Developer
May 30, 2017
3,776
7,191
I'm sorry, but an uncaught exception occurred.

While running game code:
File "game/pool.rpy", line 577, in script call
call GwenDialogueRape
File "game/gym.rpy", line 2209, in script
mc "Damn, I made a right dreamy mess. I'd better clean all of it before I leave or people will think I'm a total pervert. Which I definitely AM NOT."
File "game/script.rpy", line 16501, in execute
screen calendar():
File "game/script.rpy", line 16501, in execute
screen calendar():
File "game/script.rpy", line 16506, in execute
text ( "{}".format( [ None, "Morning", "Afternoon", "Evening", "Night"][period] ) ) style "periodWeek" xpos 1532 yalign 0.01
IndexError: list index out of range

-- Full Traceback ------------------------------------------------------------

Full traceback:
File "game/pool.rpy", line 577, in script call
call GwenDialogueRape
File "game/gym.rpy", line 2209, in script
mc "Damn, I made a right dreamy mess. I'd better clean all of it before I leave or people will think I'm a total pervert. Which I definitely AM NOT."
File "G:\Epic\Apocalypse-0.6-pc\renpy\ast.py", line 690, in execute
renpy.exports.say(who, what, *args, **kwargs)
File "G:\Epic\Apocalypse-0.6-pc\renpy\exports.py", line 1316, in say
who(what, *args, **kwargs)
File "G:\Epic\Apocalypse-0.6-pc\renpy\character.py", line 1131, in __call__
self.do_display(who, what, cb_args=self.cb_args, **display_args)
File "G:\Epic\Apocalypse-0.6-pc\renpy\character.py", line 842, in do_display
**display_args)
File "G:\Epic\Apocalypse-0.6-pc\renpy\character.py", line 591, in display_say
rv = renpy.ui.interact(mouse='say', type=type, roll_forward=roll_forward)
File "G:\Epic\Apocalypse-0.6-pc\renpy\ui.py", line 289, in interact
rv = renpy.game.interface.interact(roll_forward=roll_forward, **kwargs)
File "G:\Epic\Apocalypse-0.6-pc\renpy\display\core.py", line 2687, in interact
repeat, rv = self.interact_core(preloads=preloads, trans_pause=trans_pause, **kwargs)
File "G:\Epic\Apocalypse-0.6-pc\renpy\display\core.py", line 3071, in interact_core
root_widget.visit_all(lambda i : i.per_interact())
File "G:\Epic\Apocalypse-0.6-pc\renpy\display\core.py", line 531, in visit_all
d.visit_all(callback, seen)
File "G:\Epic\Apocalypse-0.6-pc\renpy\display\core.py", line 531, in visit_all
d.visit_all(callback, seen)
File "G:\Epic\Apocalypse-0.6-pc\renpy\display\core.py", line 531, in visit_all
d.visit_all(callback, seen)
File "G:\Epic\Apocalypse-0.6-pc\renpy\display\screen.py", line 424, in visit_all
callback(self)
File "G:\Epic\Apocalypse-0.6-pc\renpy\display\core.py", line 3071, in <lambda>
root_widget.visit_all(lambda i : i.per_interact())
File "G:\Epic\Apocalypse-0.6-pc\renpy\display\screen.py", line 434, in per_interact
self.update()
File "G:\Epic\Apocalypse-0.6-pc\renpy\display\screen.py", line 619, in update
self.screen.function(**self.scope)
File "game/script.rpy", line 16501, in execute
screen calendar():
File "game/script.rpy", line 16501, in execute
screen calendar():
File "game/script.rpy", line 16506, in execute
text ( "{}".format( [ None, "Morning", "Afternoon", "Evening", "Night"][period] ) ) style "periodWeek" xpos 1532 yalign 0.01
File "<screen language>", line 16506, in <module>
IndexError: list index out of range

help
open console, type:
period = 4
(enter)
leave console

Do you remember if you went to the church before it happened by any chance?
 

EpicLust

Dev of Cockham Superheroes
Game Developer
May 30, 2017
3,776
7,191
The church in general seems glitched. Every day its always empty which makes it impossible talk with the father and learn the lore for the church event
I'll look into it, but that's weird, I didn't change anything and it wasn't like that before.
 
Jul 14, 2017
412
883
dude for the dead of me i cant trigger gwen or amy and angy dates i just dont know what to do, they are all on 4 and im also already on the d missions help
 

EpicLust

Dev of Cockham Superheroes
Game Developer
May 30, 2017
3,776
7,191
dude for the dead of me i cant trigger gwen or amy and angy dates i just dont know what to do, they are all on 4 and im also already on the d missions help
You need a tip from Marnie about the location of the Red Canyon. It's mentioned in the hints guide.
 
Last edited:

Warphorror

Active Member
Jan 2, 2018
649
801
how can i pregnate nancy? i cant find in the harem sex as an option
In v0.6 there is a new var that increase each time you pay the fees for an impregnable harem girl when you reach 3 the option become available in their sex menu. So play a few week and it will become available, also you can only impregnate one girl per week.
 
  • Like
Reactions: EpicLust

MilkeMilke

New Member
Jan 30, 2021
4
0
Извините, я только начал играть. Я уже добрался до Тейлора, но у меня нет велосипеда, как мне его получить? заранее спасибо
 

EpicLust

Dev of Cockham Superheroes
Game Developer
May 30, 2017
3,776
7,191
Извините, я только начал играть. Я уже добрался до Тейлора, но у меня нет велосипеда, как мне его получить? заранее спасибо
In English?
 

MilkeMilke

New Member
Jan 30, 2021
4
0
[QUOTE = "EpicLust, сообщение: 5016178, участник: 47876"]
По-английски?
[/ QUOTE] да
I am from Russia, but I speak good English. The game is English for Android. I realized that I needed some kind of transport or bike for Taylor?
 
Last edited:
4.00 star(s) 90 Votes