Files
itsericwoodward-site-v2/src/pages/chim/index.md

2.7 KiB

title, description, date_pub, license, section, subsection, content_type
title description date_pub license section subsection content_type
Camp Happy Island Massacre Eric's first (and only) computer game, a comedy-horror text game for the DOS operating system. 2018-10-10T19:07:00-04:00 CC0 games chim feature
<style type='text/css'> a code { background-color: transparent; color: #049c74; padding: 0; } a:hover code { color: #040308; } a:hover:visited code { color: #040308; } a:visited code { color: #1e6e58; } #jsChimDb a { color: #049c74; } #jsChimDb a:hover { color: #040308; } #jsChimDb a:hover:visited { color: #040308; } #jsChimDb a:visited { color: #1e6e58; } #jsChimDb .dosbox-canvas { display: block; margin: auto; } .btnFullscreen { background-color: #111; background-color: rgba(3,3,3,.7); color: #049c74 !important; display: block; margin: .5em auto; padding: .5em; } .dosbox-overlay, .dosbox-loader { background-color: #111; background-color: rgba(3,3,3,.7); } .dosbox-start { color: #049c74; } </style>

In 1997, I released my first (and, so far, only) computer game, Camp Happy Island Massacre, a comedy-horror text game for the DOS operating system. Originally written while I was still in college, the game is about a cursed summer camp and the 3 surviving counselors who try to stop a horrific force before it claims them.

If you have a functional DOS machine (or an emulator, like DOSBox), you can download the game in a ZIP file, which contains the following files:

And now, thanks to DOSBox, Emscripten, and their unholy lovechild, JS-DOS, you can play Camp Happy Island Massacre in your browser:

Open in Fullscreen <script type="text/javascript" src="./js-dos-api.js"></script> <script type="text/javascript"> var chim_db = new Dosbox({ id: "jsChimDb", onload: function (chim_db) { chim_db.run("/chim/chim-exe.zip", "./CHIM.EXE"); }, onrun: function (chim_db, app) { console.log("App '" + app + "' is running!"); } }); </script>