home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer 13 / 1995-12_Disc_13.iso / abuse / lisp / english.lsp < prev    next >
Lisp/Scheme  |  1995-08-31  |  2KB  |  43 lines

  1. ;; Copyright 1995 Crack dot Com,  All Rights reserved
  2. ;; See licencing information for more details on usage rights
  3.  
  4. ;; all messages that need translation here
  5.  
  6. (setq gamma_msg "Select the darkest color visible \n on your monitor for each spectrum")
  7. (setq telep_msg "Press down to teleport")
  8.  
  9. (defun get_train_msg (message_num)
  10.   (select message_num      
  11.       (0 "Aim gun with mouse, fire with left mouse button")
  12.       (1 "Collect ammo to increase firing speed")
  13.       (2 "Press the down arrow to activate objects, this is a switch")
  14.       (3 "This console saves the state of the game, press down")
  15.       (4 "Press down to activate platform")
  16.       (5 "Hold down the right mouse button to use special powers")
  17.       (6 "Click with the RIGHT mouse button to select weapons")
  18.       (7 "Press the up arrow to climb ladders")
  19.       (8 "Press the down arrow to start!")
  20.       (9 "Shoot hidden walls to destroy them")
  21.       (10 "Shoot switch ball to activate")
  22.       ))
  23.      
  24. (setq to_be_continued "To be continued.....")
  25.  
  26. (setq end_msg 
  27.       (concatenate 'string "Thank you for playing Abuse.\n\n"
  28.                    "* To use Abuse's builtin level editor, type :\n"
  29.                "  'abuse -edit' when you start the game.  It is highly recommended\n"
  30.                "  that you print out the key listing from abuse.doc and learn them.\n"
  31.                "* Read gamedev.txt for information on how you can make money with the\n"
  32.                "  levels you design.\n"
  33.                "* Buy commercial abuse and mow down aliens with the Plasma rifle,\n"
  34.                            "  build up an army of Death frizbees for senseless destruction,\n"
  35.                "  wave your Light saber around and watch the body parts fly,\n"
  36.                "  or just vaporize things to a pulp with the Death Ray.\n"
  37.                "* Get 14 more levels with new artwork, new sounds, and new characters.\n"
  38.                "  call 1-800-810-0022.  Check or credit card accepted.  The order\n"
  39.                "  hotline is open 24hrs/day 7 days a week.\n"))
  40.  
  41.  
  42.  
  43.