rayminator

Engaged Member
Respected User
Sep 26, 2018
3,040
3,109
I thought this game was complete, yet it keeps getting updated??? Are there any new events beyond 1.0 or is it all fixes to previous events?
to your answer yes and we been trying to fix all bug

and for the script.rpy

there was code was backwards

Code:
label after_load:

    python:
        try:
            take_look_dorm
        except:
            take_look_dorm = Task(_("Take a look at the dorm"))
            TASK.append(take_look_dorm)

        try:
            come_anna
        except:
            come_anna = Task(_("Come to Anna"))
            TASK.append(come_anna)
            spider.label = ["library1","college3","college2"]
     return
It should've been like this

Code:
label after_load:
    python:
        try:
            come_anna
        except:
            come_anna = Task(_("Come to Anna"))
            TASK.append(come_anna)
        spider.label = ["library1","college3","college2"]
        try:
            take_look_dorm
        except:
            take_look_dorm = Task(_("Take a look at the dorm"))
            TASK.append(take_look_dorm)
    return
 

Tacito

Forum Fanatic
Jul 15, 2017
5,183
40,103
label after_load:
The original code is correct ... no need to change it.
After you load your save it check if take_look_dorm and come_anna are present if not add them.

So the problem with "ask" for librarian ... save and load at least one time before first visit to library , need 1 second.
In my opinion no need to change a code that works ....
 

rayminator

Engaged Member
Respected User
Sep 26, 2018
3,040
3,109
The original code is correct ... no need to change it.
After you load your save it check if take_look_dorm and come_anna are present if not add them.

So the problem with "ask" for librarian ... save and load at least one time before first visit to library , need 1 second.
In my opinion no need to change a code that works ....
Ok thanks for letting me know that

564 line

Code:
"\"You wanted to see me?\"" if come_anna.on:
205 line

Code:
"Ask" if not libnaxyou:
206 line is a menu
 
  • Like
Reactions: Tacito

rayminator

Engaged Member
Respected User
Sep 26, 2018
3,040
3,109
NameError: name 'come_anna' is not defined

is new and he forgot to define come_anna but i can't do anything

come_anna new in 1.3.0 because wasn't in the 1.2.1 version

warning this might cause a new error:
you can put define come_anna on a new line in scipt.rpy if you want to try it out to see if it fix the problem but it might make a new error down the line somewhere just use any text editor to put in define come_anna at top it would best to put after this line define cg
 

AReddington94

Newbie
Mar 6, 2018
21
1
Alright, one final thing. Blackmailing Derek, It says to fly the drone at night but where exactly. I try the pool at all ours of the night yet nothing happens. What could one do?
 

AReddington94

Newbie
Mar 6, 2018
21
1
Thanks. The sceen with the Director and Jenny in her office is giving me the exception has occurred. Is the fix the same that you gave me yesterday? I cant move on from this point because of it, i am stuck.
 

Tacito

Forum Fanatic
Jul 15, 2017
5,183
40,103
NameError: name 'come_anna' is not defined

is new and he forgot to define come_anna but i can't do anything
in my little opinion , the better way to solve is put a call in meeting.rpy.
This is used after you begin the game and insert roommate and MC name

label meeting:
call after_load #this adds missing tasks and variables
scene bg_doorclose with Fade(0, 0, 3)
..............

But I don't want to check all the game for other errors ... for a "false" problem :)
 

rayminator

Engaged Member
Respected User
Sep 26, 2018
3,040
3,109
this the last fix that I will do guess everyone different with the errors just try to read every post that have a bugfix and try every one of them one of them might fix the errors or when you get a error look for a reload button it reload the game where you are it also fix some error that the game. the game itself that might of cause the errors try using the walkthrough thats there on the main post by play free play just going everywhere just doing whatever that you want to do might of cause the errors i have gotten email from Astaros3D he said he is working on a fix the error himself
 
  • Like
Reactions: Tacito

Ennoch

Conversation Conqueror
Respected User
Oct 10, 2017
7,215
19,250
Anna said about jamal , i made the prank with the spider on Anna's mother but i can't find on the map Jamal
Ohmy, you haven't unlocked his location yet then? You do sperm donation at doctor. Ask the nurse for more untill she gives a handjob. That will unlock sexdrugs quest. Which will lead to Jamal.
 
  • Like
Reactions: efix9927

Ennoch

Conversation Conqueror
Respected User
Oct 10, 2017
7,215
19,250
omg how many times do i need ask for help ?
If you are clean an fresh than just once. After your first donation you get tired and dirty you see. So get a shower and rest (use cheat) then do the donation and you can ask for more which results in the handjob.
 
3.40 star(s) 168 Votes