Videotome:ADV is a small narrative engine for making web based games that resemble 90s ADV games.

If you are interested in this engine, I suggest probably using the improved version by stanwixbuster instead, as it has extra features like save/load and volume control:
https://stanwixbuster.itch.io/videotome-adv-mods

DETAILS

Feature set:
  • background+foreground images
  • music + sfx
  • non-blocking choices! pick one or let the story continue!
  • keyboard control (spacebar + numbers), dialogue autoplay
  • variables & branching checks
  • message history
Not implemented:
  • Conditional dialogue; branching is on the chapter level, not line
  • Sprite movement
  • Literally anything fancier than the above
FAQ
I am a total beginner, is this engine for me?
Maybe. The syntax is simple, but there is minimal error handling, and single character errors will cause it to break. I recommend at least passing knowledge of how html/js works, if only to be able to debug your own games.

Why (make/use) this?
This engine was a hobby project. It is also designed to have a syntax that is fast to write and does not require things like wrapping dialogue in speech marks or special characters for every line. It offers a constrained feature set and visual display, unless you have the ability and desire to expand upon it.

It doesn't work for me, can you help?
Maybe. I have a day job so I am not offering guaranteed support for this free hobby project. Before commenting with any issues, please check:

  • You are running the game after uploading to itchio / another site, or else via a server you run yourself. Just opening the index.html will not work.
  • You have included ALL files in the zip of your project and have not changed the location of any of them within the file structure.
  • You have followed the syntax and layout of the demo project.
  • You have checked the developer console (press f12 in browser) and had a quick attempt to decode any error messages in the console.
  • You have checked the readme.txt

Further Reading: Long post on the Videotome family of engines.

StatusReleased
CategoryTool
PlatformsHTML5
Rating
Rated 5.0 out of 5 stars
(6 total ratings)
Authorcommunistsister
GenreAdventure, Interactive Fiction, Visual Novel
TagsGame engine, html, Narrative, Simple, web

Download

Download NowName your own price

Click download now to get access to the following files:

VT_ADV_0.5.1.zip 5 MB

Development log

Comments

Log in with itch.io to leave a comment.

Will it be available for android or is it just windows?.

Just Windows, though it should run in any browser where you have keyboard input, so mac & linux too. 

I do not have the spare time to teach myself how to create stuff for android, unfortunately.

Hello, I wanted to check if it would be okay for me to add-on to the adv js? To add, say, a simple save thing, so I can make longer games w/ the engine.

I wouldn't be editing the code.js file or anything, but adding another, separate script file.

If not, cool; I just didn't want to get too far into it, and realize it's verboten.

(+1)

you are welcome to - just send me a link to what you make if you release it :)

(+1)

Oh, thanks so much ♡ And I certainly will.

(+1)

Definitely digging the aesthetics on this one! I’m looking forward to downloading and giving it a test soonish.

can't wait for super videotome

https://communistsister.itch.io/super-videotome

:)

woah

(1 edit)

(Windows 10 desktop)

I can get the demo to run and everything, so I thought I'd try something simple as a starter. I substituted a picture (and edited assets.js). The demo still ran, but with a big hole where the image should be. What am I doing wrong?

Here's the image I used (not mine, just found it somewhere)


the filename of this image has a forward slash in it. I would try removing that first, special characters in filenames often cause issues. 


Otherwise:

  • check the file is in the right place as the other images and the url path to it is correct.
  • check that your list of images has a comma at the end of every line except the final line.
  • check the ID you give it starts with BG_ and that you call the correct ID in the script.

if all of them check out, bring up the developer tools when you have the game in browser (f12), go to console, see if it spits out an error.

Hi - thanks for the prompt reply.

The filename doesn't have a forward slash in it - that's the file path, and the file is in the same directory as the "station" one I replaced.

The console does spit out an error:


...but I honestly can't see why:


The file is in the right place:


I thought I'd try the simplest possible edit, and it hasn't worked.

the hallway image you uploaded in the last post was a .png, but the code screenshots are looking for a .jpg. did you convert it or just change the file extension? that's all I can think of right now.

No. I originally used a png file, that didn't work, and so I went back to Photoshop and saved out a jpg file. That didn't work either. So, if you don't know what it is, I sure as hell don't! That's it for me...

Deleted 1 year ago

uploading the VT_ADV Downloadable zip to itchio as-is and setting it to a HTML project with "this file will be played in browser" will work straight out of the box in firefox, chrome, and internet explorer.

With no information about your setup I'm not sure what to advise you try. If nothing happens I would guess the code.js file is missing/cannot be reached. If you bring up the console do you get any error messages?

Deleted 1 year ago

I can run the test demo on the page itself, but after downloading the program and opening the index in chrome, it doesn't respond to me pressing space or enter to actually get it started. I haven't edited anything, so I was just wondering if it's different in the file you download and need to change anything to get it to recognize the enter or space inputs

(+1)

did you read the Readme file about having to run a little server to test it from a local file? It will not work if you just open the index as is due to security restrictions inherent to web browsers.

(+1)

Note: When testing games made with this online, I think Firefox is weird about it. I had to jump through hoops to get it to recognize any changes I made in the source. Chrome doesn't seem to have this problem.

(+1)

When doing rapid iteration on web based games in Firefox, I recommend making sure you disable your cache (f12 to bring up developer tools > Network > Tickbox for Disable cache) to stop exactly that kind of thing. Otherwise ctrl-f5 seems to do the trick.

Thank you! I was meaning to try to figure out how to stop it from caching, but I couldn't figure out what to Google. Awesome engine, by the way. I'm playing through some of your old games for inspiration on what to do with it.

(+6)

Gonna make something weird with this, I think..