• To improve security, we will soon start forcing password resets for any account that uses a weak password on the next login. If you have a weak password or a defunct email, please update it now to prevent future disruption.

lehu84

Newbie
Mar 26, 2021
87
106
Ouch, that sounds like an engine version compatibility error. Unfortunately there's no way I know of to repair that issue.
The only possible good news is that if you had multiple saves, going back a few versions to before the Renpy v7.6 version would hopefully by rescue-able.
That's my thinking too that it has something to do with reverting from RPy 7.6 to RPy 7.4. Thankfully, Basilicata has already responded and is working on the issue!
 

TheKingCobra

Member
Donor
Dec 6, 2016
417
646
Gallery unlocked 65b. Place in /game folder

If I'm not playing the next version you may update it yourself changing:

Python:
g.button("end65")
g.condition("persistent.end65")
g.image("gallery/end65.webp")
To:

Python:
 g.button("end65")
g.condition("True")
g.image("gallery/end65.webp")
Do this for the rest of the gallery scenes.
 
Last edited:

sidiouspein

Member
Nov 9, 2020
246
249
Tabletop Pornstar would be a cool game/name if the aim was to become a pornstar. Supposedly here, though, the goal is to become a successful mainstream actress, hence the Bornstar name.
After the name change, I lost interest in playing this game anymore. Also, my game save from last update doesn't load for v0.65
 

Kleio75

Newbie
Sep 2, 2019
31
53
Just finished the update. Three new stories involving Summer and Y2K. Short but funny I must say. Is there any chance that Summer returns? I was hoping for a sex scene with the MC.
 
  • Like
Reactions: Big Rooster
May 25, 2022
321
237
hi guys I can see the female domination tag, but does this game actually feature femdom? Just wondering if it is worth it for me to play
 

SteeLionXX

Newbie
Nov 21, 2020
21
9
I've been playing this for a while now, it's quite a grind but the story is engaging enough not to get bored. When do the Pornstar elements arrive or is it not ready yet in the current version?
 

Big Rooster

Engaged Member
Mar 16, 2018
3,962
28,539
Just finished the update. Three new stories involving Summer and Y2K. Short but funny I must say. Is there any chance that Summer returns? I was hoping for a sex scene with the MC.
Summer is my fav side character too!
 

rampage97

Member
Apr 11, 2023
108
99
I've just finished round 20, but perv is only at 6. Is that normal, or am I doing something wrong?
 

osanaiko

Engaged Member
Modder
Jul 4, 2017
2,149
3,503
I've just finished round 20, but perv is only at 6. Is that normal, or am I doing something wrong?
It's currently 90-ish rounds to get to the end of the current content, so that rate of progress is fine. There are few opportunities to develop higher Perv in the early stages anyway, so you should expect it to rise more quickly as you progress deeper into the game.

Just keep going, you should be able to see what you want to see (y)
 

doctor321

Newbie
Aug 19, 2018
62
54
I dig the idea but it mostly seems like girl on girl action, so not for me unfortunately.

I was surprised how polished the game felt which was refreshing to see, good luck with the game and future development.
 
  • Like
Reactions: osanaiko

HypnoKitten

Member
Feb 14, 2018
157
369
Is there a cheat by chance to switch her from friendly to spoiled? Would like to get her on the stripper route but that seems to be locked off to spoiled/reserved for some reason (which is a bit strange), and the max-25 pages mean my saves are all over the place and its hard to figure out where to / how far back to go to get her on the spoiled route... :/
 

osanaiko

Engaged Member
Modder
Jul 4, 2017
2,149
3,503
Is there a cheat by chance to switch her from friendly to spoiled? Would like to get her on the stripper route but that seems to be locked off to spoiled/reserved for some reason (which is a bit strange), and the max-25 pages mean my saves are all over the place and its hard to figure out where to / how far back to go to get her on the spoiled route... :/
!! Warning! Messing with the internal variable could bork your save!! !!

Also, no guarantees that this will work, i'm just reading it from the code, not playtesting it.

In general:
The routes that depend on spolied/reserved etc are controlled by the following variables:

soft <- increases by +1 each time you treated her kindly
hard <- increases by +1 each time you treated her harshly
dilemma <- number of times you have had a choice in how to treat her.

When there is a route branch decision, generally there are tests that look to see if she is:
reserved: soft <= (dilemma * 0.4)
friendly: soft >= (dilemma*0.4) and soft <= (dilemma*0.8)
spoiled: soft >= (dilemma*0.8)

(there's also some "hard" checks as well in the code but these are less common)

Poledancer:
To try out being a poledancer as a job, you need to already have worked as a poledancer, be on round 52 or later (depends on some rwanda events having occurred), and have her stats either "spoiled" or "reserved".

If you just want to hack it in, you can set mjcorruption71 = True

Stripper job:
Next, to start doing topless dancing (stripper job) you need to be at round 81 or higher, have perversion > 65. to hack it in set, mjcorruption74 = True

Stripper Career:
Then later, for the specific "become a stripper as a career" route, the code is:

Code:
    if soft >= (dilemma*0.8) and exhib >= 15: # Spoiled
        $ mjcorruption75 = True # MJ decides to Work Regularly As Stripper
This only happens after round 81, and you need to be treating her as a princess 80% of the time and she needs to have exhibitionist stat > 15.

If you just want to hack it in, you can set mjcorruption75 = True


hope that helps!
 

HypnoKitten

Member
Feb 14, 2018
157
369
...If you just want to hack it in, you can set mjcorruption75 = True

hope that helps!
Thank you so much for looking into the code, you rock! I'll happily give it a try. Just to check though.. how do you enter those commands? Shift+O doesn't seem to open up the renpy console, and I've not tried to set variables in RenPy before..
 

osanaiko

Engaged Member
Modder
Jul 4, 2017
2,149
3,503
you'll need to manually enable the console. just edit the options.rpy file and add a "define config.console=True" line somewhere.
 
  • Red Heart
Reactions: HypnoKitten

HypnoKitten

Member
Feb 14, 2018
157
369
you'll need to manually enable the console. just edit the options.rpy file and add a "define config.console=True" line somewhere.
wooooot thank you!! totally worked. It ended up dropping 'soft' too (so she was reserved afterward) but I just looked at what you posted and set soft to 23 after she accepted the job change and she was back to friendly. You rock :D
 
  • Red Heart
Reactions: osanaiko
4.50 star(s) 45 Votes