College Tennis: Origin Story (WIP) - Updated 11 Apr '25 [898k words]

Yeah but it doesn’t let me save for some reason

1 Like

I can’t load the saved games

1 Like

I’m pretty sure it’s a whole site problem

1 Like

Note that the save games from earlier release are most likely incompatible with changes made throughout the game, so loading one will just cause the game to restart (with a popup mentioning it if/when that happens)

This is issue on your end – the storage memory of your browser is full. Clearing the browser’s cache may be the easiest way to fix it.

3 Likes

I’ve tried to clear some storage but it keeps saying my storage is full. Though I may be going about it wrong. Could you tell me how I access this “cache” (on COGDemos or just my settings?)

1 Like

It’s in the settings of your browser. The storage is a space which is shared by all websites you visit, and not something cogdemos specific. If you e.g. play some .html games and save their states (or they autosave which is pretty common) this also eats in your browser’s storage. For this reason it’s generally better to choose the option to “save to disk” where possible.

3 Likes

It’s working for me fine

1 Like

I cleared up everything except passwords and it still says my storage is full (which it shouldn’t be considering I practically wiped the storage clean with a toothbrush)

On one of the threads people are having issues with saving as well. I think it’s the site’s problem as my storage cannot possibly be “full”

1 Like

Are you playing it on PC or phone?

1 Like

Hmm, try this: open any game at cogdemos in your browser, and then press Ctrl+Shift+i to access developer tools. Click the “Application” button and then “Local storage”. You should get a list of data stored by various games:

You can then select and delete them individually, hopefully freeing enough space

2 Likes

On my phone

1 Like

Ah, so COGDemos is bullying me

Fantastic!

1 Like

Is there a way to mass delete them?

Wait nvm, I got it

Thank you!

1 Like

Big fan here, one of the best ifs i played (if not the best) im really excited for the update but i came across a bug (at least i think it is) im romancing Sam and comitted to the relationship in the party after the first double matches and during the bar date the romance options are grayed (on the jukebox after the elvis song) did i miss something or this is normal?

Now im in a immovable object vs unstoppable force situation (i refuse to just let It pass but still excited for reaching the new content)

Thanks in advance.

Edit: nevermind, read the code and following dialogue and its normal, false alarme i thought It was a mixed up since i remembered doing it last update.

2 Likes

Let’s all give a round of applause for Bobby. Fell down two flights of stairs and only ended up with a sprained ankle.

8 Likes

This isn’t Bobby’s first drunk rodeo.

2 Likes

This line sticks out
Blake is tall and broad-shouldered, with shoulder-length sandy brown hair. He’s one of the other freshman on the team, and seems rather shy, which seems at-odds with his aggressive serve-and-volley playing style. He’s from Georgia, Atlanta, and has a laidback southern drawl that puts you immediately at ease.
I think you mean to say Atlanta, Georgia, city before the state

2 Likes

Loved it

4 Likes

That bug where I didn’t get the achievement for succeeding in all the week one events despite succeeding in all the week one events is back again. The strength challenge, the race, the Devil’s dozen, and the Emerson game. I don’t know why, but I’ve had Different times where I achieve all those things and get the achievement and achieve all those things and don’t get it

2 Likes

Hmm, looking at the game script

*if ((run_position = 1) and (weights_position = 2)) and ((misses_drill = 0) and (won_emerson))
//...
  *page_break Tobin gasps.
  *achieve invincible_first_week

…there seems to be some difference between how strict the weight performance check is for the ‘get them all’ achievement, and the basic strength one:

*if (weights_position < 4)
  
  [b]Band one: Excellent[/b]
  *line_break
  1. $!{First_name} 
  *line_break
  2. Rayyan
  *line_break
  3. Emerson
//...
*if weights_position < 4 
  *achieve young_hulk

So you probably get weight_position of 3 in some of your play throughs, which still gets you the Hulk achievement and lands you in top spot, but then it fails the final check. They should be probably made uniform, i.e. either both check for value of 2, or for < 4. The latter it likely preferable, since it’s slightly easier to pull off.

2 Likes