Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
298 serge 1
// Emacs style mode select   -*- C++ -*-
2
//-----------------------------------------------------------------------------
3
//
4
// $Id:$
5
//
6
// Copyright (C) 1993-1996 by id Software, Inc.
7
//
8
// This source is available for distribution and/or modification
9
// only under the terms of the DOOM Source Code License as
10
// published by id Software. All rights reserved.
11
//
12
// The source is distributed in the hope that it will be useful,
13
// but WITHOUT ANY WARRANTY; without even the implied warranty of
14
// FITNESS FOR A PARTICULAR PURPOSE. See the DOOM Source Code License
15
// for more details.
16
//
17
// $Log:$
18
//
19
// DESCRIPTION:
20
//	Globally defined strings.
21
//
22
//-----------------------------------------------------------------------------
23
 
24
static const char
25
rcsid[] = "$Id: m_bbox.c,v 1.1 1997/02/03 22:45:10 b1 Exp $";
26
 
27
 
28
#ifdef __GNUG__
29
#pragma implementation "dstrings.h"
30
#endif
31
#include "dstrings.h"
32
 
33
 
34
 
35
char* endmsg[NUM_QUITMESSAGES+1]=
36
{
37
  // DOOM1
38
  QUITMSG,
39
  "please don't leave, there's more\ndemons to toast!",
40
  "let's beat it -- this is turning\ninto a bloodbath!",
41
  "i wouldn't leave if i were you.\ndos is much worse.",
42
  "you're trying to say you like dos\nbetter than me, right?",
43
  "don't leave yet -- there's a\ndemon around that corner!",
44
  "ya know, next time you come in here\ni'm gonna toast ya.",
45
  "go ahead and leave. see if i care."
46
 
47
  // QuitDOOM II messages
48
  "you want to quit?\nthen, thou hast lost an eighth!",
49
  "don't go now, there's a \ndimensional shambler waiting\nat the dos prompt!",
50
  "get outta here and go back\nto your boring programs.",
51
  "if i were your boss, i'd \n deathmatch ya in a minute!",
52
  "look, bud. you leave now\nand you forfeit your body count!",
53
  "just leave. when you come\nback, i'll be waiting with a bat.",
54
  "you're lucky i don't smack\nyou for thinking about leaving."
55
 
56
  // FinalDOOM?
57
  "fuck you, pussy!\nget the fuck out!",
58
  "you quit and i'll jizz\nin your cystholes!",
59
  "if you leave, i'll make\nthe lord drink my jizz.",
60
  "hey, ron! can we say\n'fuck' in the game?",
61
  "i'd leave: this is just\nmore monsters and levels.\nwhat a load.",
62
  "suck it down, asshole!\nyou're a fucking wimp!",
63
  "don't quit now! we're \nstill spending your money!",
64
 
65
  // Internal debug. Different style, too.
66
  "THIS IS NO MESSAGE!\nPage intentionally left blank."
67
};
68