Hongfire Survivor

Active Member
Mar 28, 2020
651
1,579
I often think about writing my own HTML game inspired by things like this, but for years now I've been so consistently blown away by College Daze it's hard to imagine myself competing! Odd to say perhaps, but there's something about the way this game is constructed and things are written that makes it feel cozy? It's strange.

Anyways, loved the new update! Getting told that our girls are pregnant will always be so hot even if we already know!
Never know till you try. It's not a competition, dev for this game will come to an end eventually.

It's been worked on for YEARS.

The best part about it is that you aren't hunting for scenes and "grind" is minimal. You are in control of your experience the majority of the time.

Time wise, yea you can only make so many choices, but I don't have to meet my sister at 19:00 five days later for that one scene to move her story along.
 
Last edited:

AJLee7385

Well-Known Member
Game Developer
Jun 25, 2019
1,419
804
Where would you start to learn how to make a HTML game?
you tube im not kinding theres twine tutorials which are easier i usually hate people telling me to look t up but in this case thats how i learned from watching the youtube twine tutorials
 
  • Heart
Reactions: MalaKarr786

AccidentalGryffindor

Active Member
Oct 8, 2020
569
676
Professor computer password anyone?
It chooses a random one from a list. Here:
Current walkthrough

Information for new players
You don't have permission to view the spoiler content. Log in or register now.
Attacks to use against Keera (Tattoo Lady) on Satuday Aug 10
You don't have permission to view the spoiler content. Log in or register now.

How to solve the Puzzle in the Titus hunt

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

How to do the bunker password portion
You don't have permission to view the spoiler content. Log in or register now.

This is the non-cheat walkthrough, last version this was updated was 0.121.

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

Brovalon

Active Member
Jan 11, 2020
632
714
Where would you start to learn how to make a HTML game?
As both others have said, YouTube is a great resource but knowing some basic coding skills makes it much easier in general. I've actually done some for a university course, and it's worth noting that some universities have free tutorials / information out there about using Twine for interactive narrative construction.

It's very user friendly in general though, so good luck getting started. I think forums elsewhere on F95 (off topic?) could help as well!
 

Tenstepsback

Newbie
Sep 28, 2017
48
58
Permanently or just a couple scenes? Patel and maybe Nadir are permanent, Mrs. Maywood (of course) has a few scenes, Stacy, Lydia's Mom, Kayla, and Monica all have scenes.
Also, the update before .420 I believe had the option to Permanently Alter Prof Ward as well but I can't recall if it was described as Permanent.
 

j_1993_m

Active Member
Feb 28, 2021
637
656
Just for a frame of reference, what is the story format for College Daze(Since this is the kinda style i prefer)
The SugarCube story format is the base that most games use. But if you want the game to look like College Daze, you will need some css and javascript.

CSS:
.passage {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 1em;
}
JavaScript:
$(document).on(':passagerender', function (ev) {
    $(ev.content).wrapInner('<div class="right"></div>');
    $(ev.content).find('img, video').wrapAll('<div class="left"></div>');
    $(ev.content).find('.left').prependTo(ev.content);
});
EDIT: Images and videos should be 400px width, otherwise they will overlap any text you use. Video width and height can be edited with css, but images are easy since you can resize in paint.
 
Last edited:
4.70 star(s) 135 Votes