baaaaahhhhg

New Member
Jul 20, 2017
12
25
BTW - for anyone else on Linux who get's the following error:


Code:
Full traceback:
  File "/home/user/Games/rpdl.net-CollegeKings-15.0.2/renpy/bootstrap.py", line 331, in bootstrap
    renpy.main.main()
  File "/home/user/Games/rpdl.net-CollegeKings-15.0.2/renpy/main.py", line 492, in main
    renpy.game.script.load_script() # sets renpy.game.script.
  File "/home/user/Games/rpdl.net-CollegeKings-15.0.2/renpy/script.py", line 283, in load_script
    self.load_appropriate_file(".rpyc", ".rpy", dir, fn, initcode)
  File "/home/user/Games/rpdl.net-CollegeKings-15.0.2/renpy/script.py", line 797, in load_appropriate_file
    self.finish_load(stmts, initcode, filename=lastfn)
  File "/home/user/Games/rpdl.net-CollegeKings-15.0.2/renpy/script.py", line 485, in finish_load
    node.early_execute()
  File "/home/user/Games/rpdl.net-CollegeKings-15.0.2/renpy/ast.py", line 2193, in early_execute
    value = renpy.python.py_eval_bytecode(self.code.bytecode)
  File "/home/user/Games/rpdl.net-CollegeKings-15.0.2/renpy/python.py", line 2269, in py_eval_bytecode
    return eval(bytecode, globals, locals)
  File "game/script.rpy", line 7, in <module>
    define config.version = get_version(15, 0, 2)
  File "game/_version.rpy", line 30, in get_version
    return "{} (Act: {}) (SHA: {})".format(version, act, get_short_git_sha())
  File "game/_version.rpy", line 13, in get_short_git_sha
    except (subprocess.CalledProcessError, WindowsError):
NameError: global name 'WindowsError' is not defined

While parsing /home/user/Games/rpdl.net-CollegeKings-15.0.2/game/_version.rpy.
  File "game/script.rpy", line 7, in <module>
    define config.version = get_version(15, 0, 2)
  File "game/_version.rpy", line 30, in get_version
    return "{} (Act: {}) (SHA: {})".format(version, act, get_short_git_sha())
  File "game/_version.rpy", line 13, in get_short_git_sha
    except (subprocess.CalledProcessError, WindowsError):
NameError: global name 'WindowsError' is not defined
The fix is to change line 13 of game/_version.rpy from

Code:
except (subprocess.CalledProcessError, WindowsError):
into

Code:
except (subprocess.CalledProcessError, OSError):
WindowsError is a windows specific sub-class of OSError, so should be a safe change to make this specific line os-agnostic (no guarantee's about any other errors that may appear that I haven't encountered yet).
 
  • Like
Reactions: Surplouf

autizboyz

Member
Apr 28, 2017
200
96
Are there any console command cheats to change your KCt?
If you use renpy save editor, you can change the kct point, the variable name is bro. I can change to loyal and confident, but i don't know how to be popular. If someone know how much value to be popular would be great.
 

Surplouf

Member
May 5, 2020
196
190
On Linux Ubuntu. I try fix 15.0.3 and bug is added. The phone stop to work and this is pain in the ass to load a save. 2 Go as added to the archive too.

What is the problem !?!

Code:
I'm sorry, but an uncaught exception occurred.

While running game code:
  File "game/v15/scene1.rpy", line 188, in script call
    imre "I don't like that you're right but... You are."
  File "game/phone/phone.rpy", line 34, in script
    call screen phone
  File "renpy/common/000statements.rpy", line 569, in execute_call_screen
    store._return = renpy.call_screen(name, *args, **kwargs)
  File "game/phone/phone.rpy", line 77, in execute
    screen phone():
  File "game/phone/phone.rpy", line 77, in execute
    screen phone():
  File "game/phone/phone.rpy", line 81, in execute
    use base_phone:
  File "game/phone/phone.rpy", line 37, in execute
    screen base_phone():
  File "game/phone/phone.rpy", line 37, in execute
    screen base_phone():
  File "game/phone/phone.rpy", line 63, in execute
    transclude
  File "game/phone/phone.rpy", line 81, in execute
    use base_phone:
  File "game/phone/phone.rpy", line 82, in execute
    vpgrid:
  File "game/phone/phone.rpy", line 87, in execute
    for app in phone.applications:
  File "game/phone/phone.rpy", line 88, in execute
    if not app.locked:
  File "game/phone/phone.rpy", line 88, in <module>
    if not app.locked:
AttributeError: 'bool' object has no attribute 'locked'

-- Full Traceback ------------------------------------------------------------

Full traceback:
  File "game/v15/scene1.rpy", line 188, in script call
    imre "I don't like that you're right but... You are."
  File "game/phone/phone.rpy", line 34, in script
    call screen phone
  File "/home/bulb/Jeux/*CollegeKings-15.0.3/renpy/ast.py", line 2015, in execute
    self.call("execute")
  File "/home/bulb/Jeux/*CollegeKings-15.0.3/renpy/ast.py", line 2003, in call
    return renpy.statements.call(method, parsed, *args, **kwargs)
  File "/home/bulb/Jeux/*CollegeKings-15.0.3/renpy/statements.py", line 278, in call
    return method(parsed, *args, **kwargs)
  File "renpy/common/000statements.rpy", line 569, in execute_call_screen
    store._return = renpy.call_screen(name, *args, **kwargs)
  File "/home/bulb/Jeux/*CollegeKings-15.0.3/renpy/exports.py", line 3136, in call_screen
    rv = renpy.ui.interact(mouse="screen", type="screen", roll_forward=roll_forward)
  File "/home/bulb/Jeux/*CollegeKings-15.0.3/renpy/ui.py", line 298, in interact
    rv = renpy.game.interface.interact(roll_forward=roll_forward, **kwargs)
  File "/home/bulb/Jeux/*CollegeKings-15.0.3/renpy/display/core.py", line 3325, in interact
    repeat, rv = self.interact_core(preloads=preloads, trans_pause=trans_pause, pause=pause, pause_start=pause_start, **kwargs)
  File "/home/bulb/Jeux/*CollegeKings-15.0.3/renpy/display/core.py", line 3737, in interact_core
    root_widget.visit_all(lambda i : i.per_interact())
  File "/home/bulb/Jeux/*CollegeKings-15.0.3/renpy/display/core.py", line 568, in visit_all
    d.visit_all(callback, seen)
  File "/home/bulb/Jeux/*CollegeKings-15.0.3/renpy/display/core.py", line 568, in visit_all
    d.visit_all(callback, seen)
  File "/home/bulb/Jeux/*CollegeKings-15.0.3/renpy/display/core.py", line 568, in visit_all
    d.visit_all(callback, seen)
  File "/home/bulb/Jeux/*CollegeKings-15.0.3/renpy/display/screen.py", line 436, in visit_all
    callback(self)
  File "/home/bulb/Jeux/*CollegeKings-15.0.3/renpy/display/core.py", line 3737, in <lambda>
    root_widget.visit_all(lambda i : i.per_interact())
  File "/home/bulb/Jeux/*CollegeKings-15.0.3/renpy/display/screen.py", line 447, in per_interact
    self.update()
  File "/home/bulb/Jeux/*CollegeKings-15.0.3/renpy/display/screen.py", line 637, in update
    self.screen.function(**self.scope)
  File "game/phone/phone.rpy", line 77, in execute
    screen phone():
  File "game/phone/phone.rpy", line 77, in execute
    screen phone():
  File "game/phone/phone.rpy", line 81, in execute
    use base_phone:
  File "game/phone/phone.rpy", line 37, in execute
    screen base_phone():
  File "game/phone/phone.rpy", line 37, in execute
    screen base_phone():
  File "game/phone/phone.rpy", line 63, in execute
    transclude
  File "game/phone/phone.rpy", line 81, in execute
    use base_phone:
  File "game/phone/phone.rpy", line 82, in execute
    vpgrid:
  File "game/phone/phone.rpy", line 87, in execute
    for app in phone.applications:
  File "game/phone/phone.rpy", line 88, in execute
    if not app.locked:
  File "game/phone/phone.rpy", line 88, in <module>
    if not app.locked:
AttributeError: 'bool' object has no attribute 'locked'

Linux-5.11.0-46-generic-x86_64-with-debian-bullseye-sid
Ren'Py 7.4.11.2266
College Kings 15.0.3 (Act: 4) (SHA: c2ff796ac)
Sun Jan 16 21:53:18 2022
 

Surplouf

Member
May 5, 2020
196
190
So tried the v15.0.3 update, loaded a save from the last update (v14) .....all i get is a shit load of bugs/crashes about values not set and dozens of errors about that stupid phone....ah yes and i can't progress, cause the phone doesn't work :rolleyes:
Same problem here...
 

Lalpirinha

New Member
Jul 4, 2021
1
0
There's some way to play the 15.0.2 in JoiPlay? I already extract the compress files and do all the steps like always, but the app just don't let open the game and takes me out of it, someone please help me
 

conadine89

Newbie
Dec 10, 2017
28
13
i was 500 mb away from finishing the 15.0.2 version when it was removed from mega that was 24 hours wasted (mega) lets start again
 

Tonyr2

Newbie
Jul 16, 2017
18
13
Where are the lovely lads that post the console commands to unlock the gallery scenes. I'm missing a few scenes and have tried to unlock them by reloading but am unable.
 

Dan Sensei

Newbie
Feb 3, 2018
38
5
I am having this error when I wake up. It's before I text Lauren. Amber was supposed to text me
Code:
I'm sorry, but an uncaught exception occurred.

While running game code:
  File "game/v5/v5.rpy", line 635, in script
    if amber.relationship >= Relationship.KISS:
  File "game/v5/v5.rpy", line 642, in <module>
    elif josh.messenger.sent_messages[-2].reply and josh.messenger.sent_messages[-2].reply.message == "I can't, sorry.":
IndexError: list index out of range

-- Full Traceback ------------------------------------------------------------

Full traceback:
  File "game/v5/v5.rpy", line 635, in script
    if amber.relationship >= Relationship.KISS:
  File "renpy/ast.py", line 1898, in execute
    if renpy.python.py_eval(condition):
  File "renpy/python.py", line 2276, in py_eval
    return py_eval_bytecode(code, globals, locals)
  File "renpy/python.py", line 2269, in py_eval_bytecode
    return eval(bytecode, globals, locals)
  File "game/v5/v5.rpy", line 642, in <module>
    elif josh.messenger.sent_messages[-2].reply and josh.messenger.sent_messages[-2].reply.message == "I can't, sorry.":
  File "renpy/python.py", line 992, in __getitem__
    rv = list.__getitem__(self, index)
IndexError: list index out of range

Windows-10-10.0.19041
Ren'Py 7.4.11.2266
College Kings 15.0.2 (Act: 4) (SHA: f82592084)
Mon Jan 17 00:19:28 2022
Can somebody help me? If someone has a save file of this, I would also appreciate it.
 

ChuckyHH

New Member
Nov 25, 2020
8
17
loaded 15.0.3 three times now over different hosters and every time I have an archieve error.
"unexpected archieveending" when I open the damaged archieve, there is only the game folder inside.
anyone else?
 
Last edited:
  • Like
Reactions: joe316

joe316

Member
Dec 3, 2016
431
278
loaded 15.0.3 three times now over different hosters and every time I have an archieve error.
"unexpected archievending" when I open the damaged archieve, there is only the game folder inside.
anyone else?
Me too. I think the rar was broken before it was uploaded.
 

NewTricks

Forum Fanatic
Nov 1, 2017
4,381
9,431
i was 500 mb away from finishing the 15.0.2 version when it was removed from mega that was 24 hours wasted (mega) lets start again
I'm in a whole different boat. I imported it to mega instead of downloading it because that's what I do with large files (it happens instantly irrespective of bandwidth) and now I am still downloading it but I'm not sure I actually want it because it is bugged. I'm just waiting for the download to finish so I can delete it and start over lol.
 
3.20 star(s) 190 Votes