Ren'Py Abandoned Extra Classes Resurgam [v0.12.0] [Lew3Dy]

2.00 star(s) 1 Vote

Nikira

Bad Member
Donor
Jan 6, 2018
215
328
and here is a nice save editor for many engines :eek:penedeyewink:
after all porno games no need grind and mini games!
 

tsunku

Engaged Member
Nov 6, 2017
2,897
1,542
Well for the first release I think it is quite good. The Minigames arent that hard, maybe the tower game is a little bit too time consuming but its ok. The best part is, that you already see in full lenght what's on the creators mind. And of course that you have only 4 NPCs to interact with and can go through with the first girl. In most games there are dozends of girls from the start and for every girl you only can go so far like to kiss and don't know which girl is relevant for the story without any walkthrough. Can't wait for the next update!
obviously you did something wrong then, you get to fuck the girl from the coffee shop, then she forgets you after the second time.
 

Madbadbutajoytoknow

Member
Game Developer
Jan 4, 2018
490
650
I'm confused, is there just girl you can awaken or i'm missing something?

Also turning the console doesn't work get this error message

Code:
I'm sorry, but errors were detected in your script. Please correct the
errors listed below, and try again.


File "renpy/common/00console.rpy", line 108: invalid syntax
    config.console = True   config.console_history_size = 100
                                  ^
   

Ren'Py Version: Ren'Py 6.99.14.3135
 

Nikira

Bad Member
Donor
Jan 6, 2018
215
328
I'm confused, is there just girl you can awaken or i'm missing something?

Also turning the console doesn't work get this error message

Code:
I'm sorry, but errors were detected in your script. Please correct the
errors listed below, and try again.


File "renpy/common/00console.rpy", line 108: invalid syntax
    config.console = True   config.console_history_size = 100
                                  ^
  

Ren'Py Version: Ren'Py 6.99.14.3135
check here. upload_2018-2-12_4-8-49.png
 

Nikira

Bad Member
Donor
Jan 6, 2018
215
328
I'm confused, is there just girl you can awaken or i'm missing something?

Also turning the console doesn't work get this error message

Code:
I'm sorry, but errors were detected in your script. Please correct the
errors listed below, and try again.


File "renpy/common/00console.rpy", line 108: invalid syntax
    config.console = True   config.console_history_size = 100
                                  ^
 

Ren'Py Version: Ren'Py 6.99.14.3135
for the console i upload better way for you.
it's somewhere in the site but i don't remember where sorry!
 
  • Like
Reactions: Madbadbutajoytoknow

Phoeniix

Member
Oct 24, 2017
296
377
It means 0.01.
Kasey,
Can you tell me what raises the Charisma? Does 10 Learning, 10 strength and 10 Charisma allow MC advance to level
I have 10 L, 10 S, and 3 Charisma now, but I have awakened the Sarah and I seem to be at a dead end... Do I need to restart and use a different path or have I just reached the end of the content?
 

Fission Mailed

Active Member
Modder
Nov 27, 2017
630
670
Sleeping is broken or not implemented, despite being told multiple times to sleep.
Block game guide has 2 more colors to move around than I have.
Gym membership broken, bought on day 2 and have to buy again on day 3?!? That's a day pass, not a membership and $500 for a day pass gets you shot in the back of the head in the hood...lol

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

Lew3Dy

New Member
Game Developer
Jan 21, 2018
10
11
I'm confused, is there just girl you can awaken or i'm missing something?
For the moment, there is only one to awaken, and the rule is that you only need one girl to advance to the next level. But at later levels, you will have alternatives who will be a bit harder to find

Kasey,
Can you tell me what raises the Charisma? Does 10 Learning, 10 strength and 10 Charisma allow MC advance to level
I have 10 L, 10 S, and 3 Charisma now, but I have awakened the Sarah and I seem to be at a dead end... Do I need to restart and use a different path or have I just reached the end of the content?
Awakening Sarah enables you to level-up, and that will come in the next version, you will keep your stats however so don't worry

Sleeping is broken or not implemented, despite being told multiple times to sleep.
Block game guide has 2 more colors to move around than I have.
Gym membership broken, bought on day 2 and have to buy again on day 3?!? That's a day pass, not a membership and $500 for a day pass gets you shot in the back of the head in the hood...lol
The only situation, where I encoutered that issue (of the membership reseting after buying it) is when reloading the script files as the game is running. So my question is, do you have config.developer = True ?
 

Fission Mailed

Active Member
Modder
Nov 27, 2017
630
670
The only situation, where I encoutered that issue (of the membership reseting after buying it) is when reloading the script files as the game is running. So my question is, do you have config.developer = True ?
Not initially, and not config.developer but after getting annoyed with it I changed config.console = True.
It resolved itself with the 2nd membership purchase the next time I purchased one (think it was day 3, might have been 4). Haven't had to buy a 3rd yet and I've made it to day 17 so far. Guess I should expect odd things to happen in an early build when odd things happen with a semi-stable release like Teacher's Pets...
 

Squark ⚧❤️

Conversation Conqueror
Jun 16, 2017
7,036
7,831
I'm confused, is there just girl you can awaken or i'm missing something?

Also turning the console doesn't work get this error message

Code:
I'm sorry, but errors were detected in your script. Please correct the
errors listed below, and try again.


File "renpy/common/00console.rpy", line 108: invalid syntax
    config.console = True   config.console_history_size = 100
                                  ^
 

Ren'Py Version: Ren'Py 6.99.14.3135
Looking at where the error marker is and the "invalid syntax" error message itself, my solution would be to change the layout so it looks like this:
Code:
   config.console = True
   config.console_history_size = 100
Just be sure to keep the indentation. What's going on is that the compiler doesn't like unnecessary spaces as well as the same thing being invoked twice in the one command. When it finds something that it can't make sense of, it throws up an error like this. Tracebacks are always useful.
 
2.00 star(s) 1 Vote