Mr. Hoppington's Shape Search - A Kid's Doom mod (release!)

Projects that have specifically been abandoned or considered "dead" get moved here, so people will quit bumping them. If your project has wound up here and it should not be, contact a moderator to have it moved back to the land of the living.
Locked
User avatar
lizardcommando
Posts: 1489
Joined: Thu Sep 07, 2006 12:24 pm
Location: Boringland, California

Mr. Hoppington's Shape Search - A Kid's Doom mod (release!)

Post by lizardcommando »

For my final project in my Intro to Digital Media class, I'm trying to make a GZDoom Doom mod that basically changes Doom from an ultra-violent blood bath into a kid-friendly (age group is around age 6 and under) exploring game. The objective of this mod is to collect three shapes: a red square, blue circle and yellow triangle. Once you collect them, you can press the middle switch to lower a platform, allowing you to collect the special prize to win the game.

Here are some screenshots of it in-game (some things have changed since I last took these screenshots).

Image
Image

Anyways, go check it out here.

http://files.drdteam.org/index.php/file ... search.zip
Last edited by lizardcommando on Fri May 21, 2010 9:43 am, edited 6 times in total.
spoone
Posts: 309
Joined: Mon Apr 24, 2006 4:36 pm

Re: Mr. Hoppington's Shape Hunt - A Kid's Doom mod

Post by spoone »

Oh my god i love this. Please keep it alive.
User avatar
qwerqsar
Posts: 236
Joined: Sat Jun 02, 2007 10:06 am
Location: The beautiful Anahuac (A mexican kind of Midgard)
Contact:

Re: Mr. Hoppington's Shape Hunt - A Kid's Doom mod

Post by qwerqsar »

By the Gods!
That's what we need!
PLease, please, please, do it. It is really a good idea. A good way to introduce Doom to kids. (Aside of Chexquest, of course!) :D
User avatar
lizardcommando
Posts: 1489
Joined: Thu Sep 07, 2006 12:24 pm
Location: Boringland, California

Re: Mr. Hoppington's Shape Hunt - A Kid's Doom mod

Post by lizardcommando »

I'm only going to do one level for my final project. I just need help with the ACS stuff, so if anyone can help me out with that, that would be greatly appreciated.
User avatar
neoworm
Posts: 1748
Joined: Fri Sep 23, 2005 9:17 am
Location: Czech Republic

Re: Mr. Hoppington's Shape Search - A Kid's Doom mod

Post by neoworm »

Will it have super secret bonus level where you can bloodily kill everyone of these cudly characters?
User avatar
InsanityBringer
Posts: 3392
Joined: Thu Jul 05, 2007 4:53 pm
Location: opening the forbidden box

Re: Mr. Hoppington's Shape Hunt - A Kid's Doom mod

Post by InsanityBringer »

lizardcommando wrote: I just need help with the ACS stuff, so if anyone can help me out with that, that would be greatly appreciated.
should be easy. Anything in particular you need done?
User avatar
lizardcommando
Posts: 1489
Joined: Thu Sep 07, 2006 12:24 pm
Location: Boringland, California

Re: Mr. Hoppington's Shape Search - A Kid's Doom mod

Post by lizardcommando »

Just these two things for now:
  • When you approach Mr. Hoppington (that bunny in the suit), some text appears along with some voiceover.
  • The player needs to collect all three "shapes" (keys) in order to activate the middle switch to lower a platform that has trophy on it.
User avatar
InsanityBringer
Posts: 3392
Joined: Thu Jul 05, 2007 4:53 pm
Location: opening the forbidden box

Re: Mr. Hoppington's Shape Search - A Kid's Doom mod

Post by InsanityBringer »

lizardcommando wrote:Just these two things for now:
  • When you approach Mr. Hoppington (that bunny in the suit), some text appears along with some voiceover.
surround him in walkover trigger lines, far enough that the player can walk over them. Record his voice, save it in a supported format (perferrably one with compression), define the sound in SNDINFO, and have the lines call a script like this:

Code: Select all

script 1 (void)
{
    print(s:"Hello I'm Mr. Hoppington. I'm going to tell you some boring text");
    LocalAmbientSound("soundname",127);
}
lizardcommando wrote:
  • The player needs to collect all three "shapes" (keys) in order to activate the middle switch to lower a platform that has trophy on it.
assign a script like this to the switch line.

Code: Select all

script 2 (void)
{
    if (CheckInventory("triangle") && CheckInventory("square") && CheckInventory("circle")) //adjust names as needed
    {
         Floor_LowerToNearest (tag, speed); //fill in tag/speed
    }
}
User avatar
lizardcommando
Posts: 1489
Joined: Thu Sep 07, 2006 12:24 pm
Location: Boringland, California

Re: Mr. Hoppington's Shape Search - A Kid's Doom mod

Post by lizardcommando »

Do I just put the code into DB2's Script Editor, save it, then import it through XWE?
User avatar
InsanityBringer
Posts: 3392
Joined: Thu Jul 05, 2007 4:53 pm
Location: opening the forbidden box

Re: Mr. Hoppington's Shape Search - A Kid's Doom mod

Post by InsanityBringer »

you should be able to put the code into DB2's script editor and compile from there. Be sure to change the needed names and all of that.

(also, be sure your script file begins with #include "zcommon.acs")
User avatar
Nash
 
 
Posts: 17487
Joined: Mon Oct 27, 2003 12:07 am
Location: Kuala Lumpur, Malaysia
Contact:

Re: Mr. Hoppington's Shape Search - A Kid's Doom mod

Post by Nash »

Awww this is a very cute mod. :D
User avatar
lizardcommando
Posts: 1489
Joined: Thu Sep 07, 2006 12:24 pm
Location: Boringland, California

Re: Mr. Hoppington's Shape Search - A Kid's Doom mod

Post by lizardcommando »

Hey guys, I think I may have screwed up really badly with this mod. Apparently, I accidentally saved this in the ZDoom (Doom in Doom Format) mode rather than the ZDoom (Doom in Hexen format). How salvagable is the map? Would I be able to save it again in the Zdoom (Doom in Hexen format)?

Don't worry about the graphics though, they've all been backed up and saved so even if the map is somehow unusable, I still have the graphics.
User avatar
InsanityBringer
Posts: 3392
Joined: Thu Jul 05, 2007 4:53 pm
Location: opening the forbidden box

Re: Mr. Hoppington's Shape Search - A Kid's Doom mod

Post by InsanityBringer »

If you've been saving it in doom format all of the time you can use ZWADCONV (found in the editing utilities on the downloads page) to convert it to hexen format.
User avatar
lizardcommando
Posts: 1489
Joined: Thu Sep 07, 2006 12:24 pm
Location: Boringland, California

Re: Mr. Hoppington's Shape Search - A Kid's Doom mod

Post by lizardcommando »

Oh really? Cool! Thanks for the tip!

I have another question, how do I have it so that when you exit the level, it goes straight to those intermission screens that appear after every end of the episode in Doom?
Gez
 
 
Posts: 17938
Joined: Fri Jul 06, 2007 3:22 pm

Re: Mr. Hoppington's Shape Search - A Kid's Doom mod

Post by Gez »

[wiki]MAPINFO[/wiki]. If you want an example, here's a thread for you.
Locked

Return to “Abandoned/Dead Projects”