AJLee7385

Well-Known Member
Game Developer
Jun 25, 2019
1,419
808
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
594
712
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
636
720
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
647
667
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:

AJLee7385

Well-Known Member
Game Developer
Jun 25, 2019
1,419
808
Guys i Found something you might like

i do not know when or if piplup or the others guys name will get to doing warible mod editor but i found a work around

so far it only seems to work on chrome browser but

you install it buy unziping

then opening chrome

then extensions

then activate devolper debugging tools

once thats done select load unpacked extension

finally just select unpacked folder.

after its installed just go into your 420a folder or any twine game you have and right click and slect open with then find chrome

once its opened all you need do is press ctrl-shift-h at same time a window will pop up allowing you to edit any varible






And heres the proff works on almost anytwine game dontt want to say everyone cause havent played em all so
 
Last edited:
  • Like
Reactions: pkripem

AJLee7385

Well-Known Member
Game Developer
Jun 25, 2019
1,419
808
Not sure if you care or not, but you can see your reflection in one of the pics.
yeah had to use my phone to take pictures cant figure out hth to use the screen shot on my laptop as the printsceen thing is also my f12 key so everytime i tring win f12 i actlyy get the console pull up
 
4.60 star(s) 138 Votes