1 | ;; Copyright 1999 Profound Corp, All Rights reserved
|
---|
2 | ;; See licensing information for more details on usage rights
|
---|
3 |
|
---|
4 | (setq true T)
|
---|
5 | (setq false nil)
|
---|
6 |
|
---|
7 | (setq ic_sell "Help")
|
---|
8 | (setq ic_quit "Quit Twisted Minds")
|
---|
9 | (setq ic_easy "Difficulty : Sane")
|
---|
10 | (setq ic_medium "Difficulty : Wild")
|
---|
11 | (setq ic_hard "Difficulty : Madness")
|
---|
12 | (setq ic_extreme "Difficulty : Insanity!")
|
---|
13 |
|
---|
14 | (defun get_train_msg (message_num)
|
---|
15 | (select message_num
|
---|
16 | ; 0123456789012345678901234567890123456789012345678901234567890123456789
|
---|
17 | ; "--------------------------------------------------------------------" ; V-A
|
---|
18 | ; Please keep all strings below shorter than the above line. ; V-A
|
---|
19 | (0 "Aim gun with mouse, fire with left mouse button")
|
---|
20 | (1 "Collect ammo to increase firing speed")
|
---|
21 | (2 "Press the down arrow to activate objects. This is a switch.")
|
---|
22 | (3 "This console saves the state of the game, press down")
|
---|
23 | (4 "Press down to activate platform")
|
---|
24 | (5 "Hold down the right mouse button to use special powers")
|
---|
25 | (6 "Use the CTRL & INS keys to select weapons")
|
---|
26 | (7 "Press the up arrow to climb ladders")
|
---|
27 | (8 "Press the down arrow to start!")
|
---|
28 | (9 "Shoot hidden walls to destroy them")
|
---|
29 | (10 "Shoot switch ball to activate")
|
---|
30 | (11 "Press down to teleport")
|
---|
31 | ))
|
---|
32 |
|
---|
33 | (setq plot_start
|
---|
34 | (concatenate 'string
|
---|
35 | " Nick Vrenna has pulled the switch and diverted the water supply. The spread "
|
---|
36 | "of Abuse may be over. He has gotten himself into the deepest underground prision "
|
---|
37 | "levels and battled against the mutants to save the outside world.\\n"
|
---|
38 | " As he leaves the Control Room, a mutant leaped onto him and slashed his wrist. "
|
---|
39 | "He gave the mutant a lethal blow in the head. He took a look at his wrist. There was "
|
---|
40 | "blood all over and he knew that he himself was infected with Abuse. Only time could tell "
|
---|
41 | "how long he could maintain his sanity... \\n"
|
---|
42 | " Alan Blake has to pay for all this madness. Nick has battled to saved the outside world. "
|
---|
43 | "Now, it is a torturing mind-struggle of pure insanity as he tries to save himself...\\n"
|
---|
44 | "- Twisted Minds\\n"
|
---|
45 | "Munir Hussin\\n"
|
---|
46 | "Profound Corp "))
|
---|
47 | (setq plot_middle
|
---|
48 | (concatenate 'string
|
---|
49 | "You have survived the initial outbreak, but you are still lost deep "
|
---|
50 | "within the prison. So far it's been suspiciously easy. \\n"
|
---|
51 | "If you want to break out - the real ABUSE lies ahead. "))
|
---|
52 | (setq plot_end
|
---|
53 | (concatenate 'string
|
---|
54 | "You've survived impossible odds and made it to the Control Room. "
|
---|
55 | "By pulling the switch, you have diverted the water supply and stopped the spread of Abuse!\\n "
|
---|
56 | "CONGRATULATIONS! YOU'RE HOWLING!!!")) |
---|