JadeKitten

Member
Donor
Apr 27, 2017
335
474
Is there a way you can set the time to afternoon, like via a cheat or something, when you're at everning/night? I can't see some of the new scenes because the xmas version ends on the same day as 0.9 and there's no extra day on my save (which ends at night).

Edit: Found a way to do it by editing the .txt save file and going back a few numbers where it says 'time'. Let's hope I didn't break something.
 
Last edited:

shark_inna_hat

Active Member
Game Developer
Dec 25, 2018
705
2,733
Is there a way you can set the time to afternoon, like via a cheat or something, when you're at everning/night? I can't see some of the new scenes because the xmas version ends on the same day as 0.9 and there's no extra day on my save (which ends at night).

Edit: Found a way to do it by editing the .txt save file and going back a few numbers where it says 'time'. Let's hope I didn't break something.
There's a python console in the cheat mod menu. Type in set_hard_datetime(day, hour) and click 'exec' eg. if you want the time to be set to day 7 noon use set_hard_datetime(day=7, hour=12) - as always with cheats => things may break.

EDIT: the variable save.time (or just 'time' in a save file) is the number of hours elapsed since Monday midnight day 0, so one can edit that as well.

EDIT 2: PLS VOTE 4 ME :D
 
Last edited:

madchef

Well-Known Member
Jan 10, 2020
1,106
1,955
This is just great! Love the new butt stuffing stuff and hope to see more of it. And thanks so much for you know what Shark Inna! Send my regards to Mr. Wielkogórski.

I've probably said it before, but allow me to reiterate: this place needs more devs like this: communicative, open to discussion and suggestions and not wasting theirs and our time with endless baby step updates. SlutEd has been in production for only more than a year and at the moment offers more to-the-point porn stuff than a lot of other projects, constantly teasing and teasing with more stuff to come and actually delivering little.

And we also need more games like this: with sex-positive female protags, who are not clueless idiots passed around from one shady male character to another, but daring and eager sluts, actively seeking debauchery, oftentimes outdoing her partners in perversity and having fun while doing so.

Wishing Y'all a Merry Christmas with Ella Fitzgerald's notorious song about Santa Claus stuck in her chimney.
 
  • Like
Reactions: nobodypantsu

Prinplup

Member
Aug 6, 2016
154
299
shark_inna_hat

Several of your cmd blocks use multiple exec_once. The subsequent calls to exec_once do not trigger. For example, you can make a save before the scene at the start where you can show ben your foot photo.


Code:
    "d0_show_feet_1":
    {
        "next": "d0_show_feet_2",
        "pc": "blush",
        "txt": "Emily:\nFine, I'll do it, if that's the only way to get my phone back.",
        "cmd":
        [
            "exec_once('save.rep_ben += 1')",
            "exec_once('save.rep_school+=1')",
            "exec_once('save.slut+=1')"
        ]
    },
And you can verify that rep_school is unchanged after the event.

The faulty events are:


Code:
d0_show_feet_1
["exec_once('save.rep_ben += 1')", "exec_once('save.rep_school+=1')", "exec_once('save.slut+=1')"]
d0_give_photo_selfie_2
["exec_once('save.rep_ben+=1')", 'save.ben_has_selfie = 1', "exec_once('save.slut+=1')"]
d0_pool_cum
["exec_once('save.cum_love+=1')", 'save.max_slut = min(3, save.max_slut)', "exec_once('save.slut+=1')"]
d0_class2_date
["exec_once('save.slut+=1')", "exec_once('save.rep_lenard+=2')", 'save.lenard_date=1', "set_quest('lenard', 'Go on a date with Lenard next weekend.')"]
home_window_day_nude_wave
["exec_once('save.rep_peeking_tom +=1')", "exec_once('save.slut +=1')", 'set_quest(\'tom\', "Find out who\'s your peeking neighbour.")']
d1_sch_wear_bdsm
["exec_once('save.slut +=1')", "exec_once('save.rep_ben +=1')"]
d1_sch_new_maxslut
["exec_once('save.slut +=1')", "exec_once('save.rep_ben +=2')"]
d1_sch_new_slut
["exec_once('save.slut +=1')", "exec_once('save.rep_ben +=1')"]
d1_sch_dare_class
["music('vampire')", "exec_once('save.slut +=1')", "exec_once('save.rep_ben +=1')"]
d1_sch_full_strip_2
["exec_once('save.slut+=1')", "exec_once('save.rep_ben +=1')"]
beach_bbc_strip_38
["add_poi('studio')", "exec_once('save.rep_bb+=1')", "exec_once('progress_time(1)')", "set_quest('bb', 'Visit the photo studio')"]
d1_sch_makeover_no_bra_5
["exec_once('save.slut+=1')", "exec_once('save.rep_ben+=1')", 'save.d2_free_pass = 1']
d1_sch_makeover_no_panties_5
["exec_once('save.slut+=2')", "exec_once('save.rep_ben+=1')", 'save.d2_free_pass = 1', "set_quest('ben')"]
d2_sch_pe_end_pose
["exec_once('save.cheer_votes+=1')", "exec_once('save.slut+=2')", "music('vampire')"]
d2_sch_pe_locker_16
['strip_nude()', "exec_once('save.cheer_votes+=1')", "exec_once('save.slut+=1')"]
school_day_3_tryout_commando
["exec_once('save.cheer_votes+=1')", "exec_once('save.slut+=1')"]
w2_sch_wc_bbc_lick
["exec_once('save.cum_love+=1')", 'set_body_overlay()', "exec_once('save.slut+=1')"]
unislut_fuck_self_eat
["exec_once('save.cum_love+=1')", "exec_once('save.slut+=1')"]
unislut_fuck_lenard_6
["exec_once('save.rep_lenard +=1')", "exec_once('save.slut+=1')"]
unislut_fuck_lenard_nod
["exec_once('save.slut+=1')", "exec_once('save.rep_lenard +=1')"]
work_bar_5_bj_8
["exec_once('save.money+=30')", "exec_once('save.slut+=1')"]
uf_lenard_room_17
["exec_once('save.slut+=1')", "music('chill')", "exec_once('save.rep_lenard+=1')"]
I don't have a recompiler but I extracted plot from plot.txt and wrote a simple python script that rewrites it.

Also, the set_clothes call here should not have False as an argument:

Code:
    "d0_show_feet_stockings_5":
    {
        "next": "d0_show_feet_3",
        "txt": "You pull down your pantyhose, careful not to pull down your panties as well and after a brief moment you're standing barefoot in the street, in front of your new school building.",
        "img": "img/prologue/school_feet_3.webp",
        "cmd":["set_clothes(['no_stockings'], False)"]
    },
The script and fixes (hopefully) are here

e: the plot.txt might not work so use with care - back up your old one beforehand
ee (eee) : fixed a mistake I introduced to plot.txt
 
Last edited:
  • Like
Reactions: shark_inna_hat

LTD

Member
Jul 30, 2017
127
113
Love the game, wish there was a sandbox mode where the days just end and you cant play the plot more. If you had a sandbox here would be more days to see all the events possibly.
Shark recently said that after week 3 the game will become a sandbox. If you've played to the end you can sort of see the setup for that, with the new apartment and stuff.
 

randa

Member
May 7, 2017
171
19
is it possible (or i would like to have the posibillity) to reject bio-teacher Mr. Fischer action. Using the MC as "life assistance" in class. Whether the homework is done or not, she is always forced to be the live object in bio class a day 4.

The same as she can get rid of Ben.

And when does the xmas event take place? at a specific day or slut level?

Thanks.
 

Smellfire

Member
Sep 4, 2019
234
326
Works if you play from start.

Porn studios didnt trigger early enough to finish them.

Couldn't get the park scene even checking every day. Don't know what the new trigger is either.
 
Last edited:

Bobbyboi47592

New Member
Dec 30, 2022
3
1
Hey, I somehow unlocked the secret back entrance into the school but forgot to save it, so now that entrance is lost and I have no idea how to trigger Emily to go via the back route, could someone please help me out?
 

madchef

Well-Known Member
Jan 10, 2020
1,106
1,955
Hey, I somehow unlocked the secret back entrance into the school but forgot to save it, so now that entrance is lost and I have no idea how to trigger Emily to go via the back route, could someone please help me out?
There is just one scene in the game where you use the back entrance to sneak out of school and attend the apartment viewing. So far, it's not a separate location.
 
  • Like
Reactions: Tenstorm
May 21, 2018
36
22
-Edit- This comment is far too harsh and poorly thought out. Feel free to ignore it.

This game would be so good if it weren't for Ben or the various nameless asshats. I want to slut in peace, free from negative consequences. :(

...or at least if we could have a different relationship with Ben. Less of the "manipulative/blackmailing asshole" and more of a dodgy buddy.

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

0/10, could actually have been great.

If someone could mod this or give us a version where we have control over how slutty we wanna be, and nobody is forcing us or 'forcing' us to do anything, then this could be a top-tier game. This last part, in the spoiler, completely and utterly ruined the game for me.
 
Last edited:
  • Thinking Face
Reactions: grumpyoldcat

EdgeOfShadow

Well-Known Member
Sep 24, 2017
1,472
2,181
This game would be so good if it weren't for Ben or the various nameless asshats. I want to slut in peace, free from negative consequences. :(

...or at least if we could have a different relationship with Ben. Less of the "manipulative/blackmailing asshole" and more of a dodgy buddy.

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

0/10, could actually have been great.

If someone could mod this or give us a version where we have control over how slutty we wanna be, and nobody is forcing us or 'forcing' us to do anything, then this could be a top-tier game. This last part, in the spoiler, completely and utterly ruined the game for me.
While the first week you have to put up with Ben, you do realize that you can leave him in prison later? Before the prostitution events.
 
4.50 star(s) 68 Votes