// Emacs style mode select -*- C++ -*- //----------------------------------------------------------------------------- // // $Id: dstrings.c,v 1.2 2003/09/08 22:34:27 jasonk Exp $ // // Copyright (C) 1993-1996 by id Software, Inc. // // This source is available for distribution and/or modification // only under the terms of the DOOM Source Code License as // published by id Software. All rights reserved. // // The source is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // FITNESS FOR A PARTICULAR PURPOSE. See the DOOM Source Code License // for more details. // // $Log: dstrings.c,v $ // Revision 1.2 2003/09/08 22:34:27 jasonk // Updated files because this fucker won't build for no fucking good reason. // // Revision 1.1.1.1 2003/09/04 21:08:12 jasonk // Initial import // // Revision 1.2 2000/12/20 17:00:52 jordanc // Added some non offensive dstrings // // Revision 1.1 2000/12/08 21:07:53 jeffw // nxdoom initial entry -- No nxdoom/Makefile so it won't build automatically // // // DESCRIPTION: // Globally defined strings. // //----------------------------------------------------------------------------- static const char rcsid[] = "$Id: dstrings.c,v 1.2 2003/09/08 22:34:27 jasonk Exp $"; #ifdef __GNUG__ #pragma implementation "dstrings.h" #endif #include "dstrings.h" char* endmsg[NUM_QUITMESSAGES+1]= { // DOOM1 QUITMSG, "please don't leave, there's more\ndemons to toast!", "let's beat it -- this is turning\ninto a bloodbath!", "i wouldn't leave if i were you.\ndos is much worse.", "you're trying to say you like dos\nbetter than me, right?", "don't leave yet -- there's a\ndemon around that corner!", "ya know, next time you come in here\ni'm gonna toast ya.", "go ahead and leave. see if i care." // QuitDOOM II messages "you want to quit?\nthen, thou hast lost an eighth!", "don't go now, there's a \ndimensional shambler waiting\nat the dos prompt!", "get outta here and go back\nto your boring programs.", "if i were your boss, i'd \n deathmatch ya in a minute!", "look, bud. you leave now\nand you forfeit your body count!", "just leave. when you come\nback, i'll be waiting with a bat.", "you're lucky i don't smack\nyou for thinking about leaving." // FinalDOOM? "ok, fine.. go back to work\nbut you'll miss me.", "this game brough to you by\nmicrowindowsn\nhttp://www.microwindows.org.", "sure, go back to solitare\ni'll just play with myself.", "come on!\ni was going to let you win.", "i'll give you a dollar\nif you don't hit yes.", "thanks for playing\narn't you glad you put linux on your pda?", "don't leave me alone\ni'm scared of the dark!", // Internal debug. Different style, too. "THIS IS NO MESSAGE!\nPage intentionally left blank." };