VN Ren'Py Abandoned Deviant Desires [v0.5] [PingPanda]

2.40 star(s) 16 Votes

amiable34

Active Member
Jan 1, 2019
532
461
im typing password on sisters computer Fitness_Babe_09 and nothing happens just returns to the computer shut ,and in room i press enter or click on it the same?
 

meifa1989

Member
Jul 18, 2018
157
47
Use something Like Notepad++ to edit the file with. Or open in any text editor and count down to line 249.
I opend it .And u guys tell me what is it?




default unlock_a = 0
default day_worked = 0
default a_house_unlocked = False
default visited_a_01 = 0
default school_unlocked = False
default coffee_shop_unlocked = False
default a_map_advance = 0
default unlock_a_house = False




label townmap:
$ room_track = 'Town Map'
if day_tick < 4:
scene townmap
else:
show screen townmapib
call screen gui
show screen townmapib
call screen gui



label already_worked:
$ room_track = 'Town Map'
if day_tick == 2 or day_tick == 3:
scene townmap
"{i}YOU HAVE ALREADY WORKED TODAY, THE PLACE IS CLOSED, COME BACK TOMORROW!{/i}"
elif day_tick == 4:
scene townmap_night
"{i}YOU HAVE ALREADY WORKED TODAY, THE PLACE IS CLOSED, COME BACK TOMORROW!{/i}"
else:
show screen townmapib
call screen gui
show screen townmapib
call screen gui



label school_closed:
$ room_track = 'Town Map'
if day_tick == 3:
scene townmap
"{i}THE SCHOOL IS CLOSED FOR TODAY, TRY BACK TOMORROW!{/i}"
elif day_tick == 4:
scene townmap_night
"{i}THE SCHOOL IS CLOSED FOR TODAY, TRY BACK TOMORROW!{/i}"
else:
show screen townmapib
call screen gui
show screen townmapib
call screen gui



label bunny_lounge_closed:
$ room_track = 'Town Map'
if day_tick < 4:
scene townmap
"{i}THE BUNNY LOUNGE IS CLOSED DURING THE DAY, COME BACK TONIGHT!{/i}"
else:

show screen townmapib
call screen gui
show screen townmapib
call screen gui



label coffee_shop_closed:
$ room_track = 'Town Map'
if day_tick == 4:
scene townmap_night
"{i}THE COFFEE SHOP IS CLOSED THIS LATE, COME BACK TOMORROW!{/i}"
else:
show screen townmapib
call screen gui
show screen townmapib
call screen gui



label gym_locked:
$ room_track = 'Town Map'
if day_tick == 4:
scene townmap_night
"{i}THE GYM IS CLOSED AT NIGHT, COME WORK OUT TOMORROW!{/i}"
else:
show screen townmapib
call screen gui
show screen townmapib
call screen gui



label visit_ys_studio:
$ room_track = 'Town Map'
if day_tick < 4:
scene townmap
"{i}I should visit {b}[ysname]{/b} at th studio first...{/i}"
jump townmap
else:
show screen townmapib
call screen gui
show screen townmapib
call screen gui





screen townmapib:
$ room_track = 'Town Map'
if day_tick < 4:
add "townmap/map.webp"
imagebutton:
idle "townmap/hov/home_i.webp"
hover "townmap/hov/home_h.webp"
focus_mask True
action [Hide ("townmap"),Hide ("townmapib"),Jump ("hallway2")]
xpos 149
ypos 122
if ys_studio_started == 0:
imagebutton:
idle "townmap/hov/work_i.webp"
hover "townmap/hov/work_h.webp"
focus_mask True
action [Hide ("townmap"),Hide ("townmapib"),Jump ("work_01")]
xpos 1365
ypos 455
if ys_studio_started == 1:
imagebutton:
idle "townmap/hov/work_i.webp"
hover "townmap/hov/work_h.webp"
focus_mask True
action [Hide ("townmap"),Hide ("townmapib"),Jump ("visit_ys_studio")]
xpos 1365
ypos 455
if ys_studio_started == 2:
imagebutton:
idle "townmap/hov/work_i.webp"
hover "townmap/hov/work_h.webp"
focus_mask True
action [Hide ("townmap"),Hide ("townmapib"),Jump ("work_01")]
xpos 1365
ypos 455
imagebutton:
idle "townmap/hov/shop_i.webp"
hover "townmap/hov/shop_h.webp"
focus_mask True
action [Hide ("townmap"),Hide ("townmapib"),Jump ("shop")]
xpos 28
ypos 296
if coffee_shop_unlocked == True:
imagebutton:
idle "townmap/hov/coffee_shop_i.webp"
hover "townmap/hov/coffee_shop_h.webp"
focus_mask True
action [Hide ("townmap"),Hide ("townmapib"),Jump ("coffee_shop")]
xpos 1627
ypos 213
if school_unlocked == True:
imagebutton:
idle "townmap/hov/school_i.webp"
hover "townmap/hov/school_h.webp"
focus_mask True
action [Hide ("townmap"),Hide ("townmapib"),Jump ("school")]
xpos 1053
ypos 293
if unlock_a_house == True:
imagebutton:
idle "townmap/hov/a_house_i.webp"
hover "townmap/hov/a_house_h.webp"
focus_mask True
action [Hide ("townmap"),Hide ("townmapib"),Jump ("a_house")]
xpos 336
ypos 793
if unlock_studio == True:
imagebutton:
idle "townmap/hov/studio_i.webp"
hover "townmap/hov/studio_h.webp"
focus_mask True
action [Hide ("townmap"),Hide ("townmapib"),Jump ("studio_outside")]
xpos 1656
ypos 845
if bunny_lounge_unlocked == True:
imagebutton:
idle "townmap/hov/bunny_lounge_i.webp"
hover "townmap/hov/bunny_lounge_h.webp"
focus_mask True
action [Hide ("townmap"),Hide ("townmapib"),Jump ("bunny_lounge_closed")]
xpos 1163
ypos 979
if unlock_gym == True:
imagebutton:
idle "townmap/hov/gym_i.webp"
hover "townmap/hov/gym_h.webp"
focus_mask True
action [Hide ("townmap"),Hide ("townmapib"),Jump ("gym")]
xpos 858
ypos 489
else:
add "townmap/map_night.webp"
imagebutton:
idle "townmap/hov/home_i.webp"
hover "townmap/hov/home_h.webp"
focus_mask True
action [Hide ("townmap"),Hide ("townmapib"),Jump ("hallway2")]
xpos 149
ypos 122
imagebutton:
idle "townmap/hov/work_i.webp"
hover "townmap/hov/work_h.webp"
focus_mask True
action [Hide ("townmap"),Hide ("townmapib"),Jump ("already_worked")]
xpos 1365
ypos 455
if coffee_shop_unlocked == True:
imagebutton:
idle "townmap/hov/coffee_shop_i.webp"
hover "townmap/hov/coffee_shop_h.webp"
focus_mask True
action [Hide ("townmap"),Hide ("townmapib"),Jump ("coffee_shop_closed")]
xpos 1627
ypos 213
if school_unlocked == True:
imagebutton:
idle "townmap/hov/school_i.webp"
hover "townmap/hov/school_h.webp"
focus_mask True
action [Hide ("townmap"),Hide ("townmapib"),Jump ("school_closed")]
xpos 1053
ypos 293
if a_house_unlocked == True:
imagebutton:
idle "townmap/hov/a_house_i.webp"
hover "townmap/hov/a_house_h.webp"
focus_mask True
action [Hide ("townmap"),Hide ("townmapib"),Jump ("a_house")]
xpos 336
ypos 793
if unlock_studio == True:
imagebutton:
idle "townmap/hov/studio_i.webp"
hover "townmap/hov/studio_h.webp"
focus_mask Tru
action [Hide ("townmap"),Hide ("townmapib"),Jump ("studio_outside")]
xpos 1656
ypos 845
if bunny_lounge_unlocked == True:
imagebutton:
idle "townmap/hov/bunny_lounge_i.webp"
hover "townmap/hov/bunny_lounge_h.webp"
focus_mask True
action [Hide ("townmap"),Hide ("townmapib"),Jump ("bunny_lounge")]
xpos 1163
ypos 979
if unlock_gym == True:
imagebutton:
idle "townmap/hov/gym_i.webp"
hover "townmap/hov/gym_h.webp"
focus_mask True
action [Hide ("townmap"),Hide ("townmapib"),Jump ("gym_locked")]
xpos 858
ypos 489
# Decompiled by unrpyc:
 

whippetmaster

Active Member
Oct 4, 2018
795
1,123
Downloaded it, played it. Started a new game since it threw errors every time I came across a door. Start new game, began domination route, get to studio after beating up the creepy photog. I can only leave the studio??? Every time i try to pass time or go to work, it tells me to go to the studio. I back to studio and same old thing... I can only exit it and loop loop loop.
Does the dude beta test anything? Any testers on Patreon or did they just fangirl him and say "yup all works" then now we've got a super buggy version where we are softlocked on MULTIPLE routes.
PingPanda - Please invest in some beta testers. For your own sake. If you do have beta testers, either the process is wrong or you need a new set. Get this figured out. You won't gain Patreons this way. Nope. You won't.
 

amiable34

Active Member
Jan 1, 2019
532
461
im same ,studio loop .played the event carry on further into game then enter sisters room and it starts the studio event again but this time the studio is locked and game wont let you go further.keeps saying you must visit studio first ,even though ive done the studio event.
 

dark1

Active Member
Mar 5, 2017
518
491
I'v got a question for any one here ??

why does the Extras: CG on OP have more details then actual game ?
 

dce8383

Member
Aug 25, 2017
359
282
...I understand creating a game is hard, but this is just sad. He had a playable game 2 years ago, and despite countless hours of effort, the exact same story is still here. New renders, new choices... but the same story. And so many bugs.
 

Goldhammer

Newbie
May 9, 2017
66
13
At Monday (15) it says "it is to early to sleep"
I have talked to amy about that she shoved me her tits, and i have clicked over the hole mapo, and i cannot find anything to kill time with...........................so what to do??
Can i skip time?
 
2.40 star(s) 16 Votes