Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Hey Bluxtejor, first I want to say I'm VERRYYY impressed. This was NOT a small map at all. You built an amazing game and the flashlight in the dark scene was phenominal!!

I'm a web developer and have zero experience with developing games. I would be honored if you could shed light on a few things for me:

1) How long did it take for you to complete this game (in months).

2) Did you have prior experience to developing games?

3) Knowing everything you know now, what are the best resources that have helped you learn how to develop games.

4) Is this only HTML, CSS, and JS? If not, what other technologies are you using and what aspects of the game are you using them for?

5) What are the steps you take in developing a game like this? What is the structure of you built this kind of project, for instance for a website:
    - 1) you have your idea.
    - 2) you draw it out on paper.
    - 3) Design a static page (HTML & CSS only).
    - 4) Create an MVP (minimal viable product) and
    - 5) Complete (add all the styling and extras that you               would like for the site to have, but that weren't               critical to it's functionality).

6) What is the best advice you could give an aspiring browser game developer like myself?

Finally, not a question, just a suggestion. I'm not sure if you did this, but I think if you made a youtube playlist demonstrating the steps in making a game like this, it would be very popular. Youtube is over saturated with Unity content and I think there's a wide open gap for content like this to blow up!

Keep up the good work and please let me know if you develop any more masterpieces!!!

Hi ezg97,

I feel overwhelmed by your kind words! Thank you so much!

I am more than happy to help, however I don´t know to which extent my experience can help you as I have almost zero web development knowledge and I am  not by any means an expert in game making. Going point by point:

1) It took me about 7 months to complete the game, but I have only spent a few hours per week in my free time the first months, then during the lockdown in my country I was able to spend a few hours each day. I would say that if I had worked on it full time it would have took me about 2 months.

2)This is my second "serious" or full game, you my try "Kyrie Eleison", a platformer  that I published a few years ago also in itchio if you feel like it. However I have being creating crappy games that I never finished for about 20 years. It may seem a lot, but it was only as a side-hobby and for fun. I also made a Castlevania fangame, but was never published online.

3)This is a difficult question, I don´t think there is any "holy-grail" resource for game making but experience. I think the best way is starting making crap games and programs and building up from there. This is like playing an instrument, don´t look for magic recipes, just play and play until it sounds good. Learning a programming language (Visual Basic when I was a kid) was what helped me the most, also some maths can be very helpful, long ago I spent a lot of time trying to make an object orbit around another one until I figured out that it was extremely easy with some basic trigonometry.

4) I have never made a game from scratch (except a simple puzzle in Basic), I always used game making software. This particular game was made in Construct3, this kind of software do all the heavy stuff for you, so you only have to focus in programming the game logic (Construct uses visual scripting but you have to program the logic anyway). When you export the game you get a zip file that you only have to embed in the web you want. Other software I like is GameMakerStudio2 (although it needs a separate license for web export) and Pico8 (very cool if you like retro-looking games). Each of them have their pros and their cons. Starting from scratch will take you tons of time just to properly render the graphics, setup collisions, etc...

5) My workflow is usually quite chaotic :D  I start by developing an idea in my head for some time, then I sketch something on paper (in this case I drew the house and the house map and wrote down some of the key events) and start drawing the sprites and tileset (I use Aseprite for that). Next (or at the same time) I create all the mechanics (movement, object interaction, functions for handling events, text boxes, save system, dictionaries, visual effects, etc..). Finally I put everything together and design the maps and events of the story.

6)My advise (that you may have heard before) is: Start with something very small and simple. Even a small game can get overwhelming at some point and many many people (inclusding myself) end up abandoning the project because it grows too much.

I hope this helps you at least a little ;)

Thank you again!