source: abuse/trunk/data/addon/deathmat/deathmat.lsp @ 588

Last change on this file since 588 was 588, checked in by Sam Hocevar, 12 years ago

data: move original Abuse files to our main data directory and move
the Bong addon for Abuse Mac in there, too.

File size: 1007 bytes
Line 
1;; Copyright 1995 Crack dot Com,  All Rights reserved
2;; See licensing information for more details on usage rights
3
4(perm-space)
5(setq net_dir "addon/deathmat/")
6(defun net_file (x) (concatenate 'string net_dir x))
7(load (net_file "dstartup.lsp"))
8(load "lisp/options.lsp")
9
10(load "lisp/input.lsp")
11(load "lisp/sfx.lsp")
12(load "lisp/gates.lsp")
13(load "lisp/duong.lsp")
14(load "lisp/ant.lsp")
15(load "lisp/people.lsp")
16(load "lisp/weapons.lsp")
17(load "lisp/explo.lsp")
18(load "lisp/platform.lsp")
19(load "lisp/guns.lsp")
20(load "lisp/jugger.lsp")
21(load "lisp/flyer.lsp")
22(load "lisp/teleport.lsp")
23(load "lisp/general.lsp")
24(load "lisp/powerup.lsp")
25(load "lisp/doors.lsp")
26(load "lisp/light.lsp")
27(load "lisp/ladder.lsp")
28(load "lisp/switch.lsp")
29
30
31(setq bad_guy_list (list DARNEL ANT_ROOF TRACK_GUN SPRAY_GUN JUGGER ROB1 WHO ROCKET FLYER GREEN_FLYER BOSS_ANT))
32
33(gc)              ;; garbage collection perm space
34(tmp-space)       ;; execute game code in tmp space which is not GC'ed
35(create_players DARNEL)
36
37
Note: See TracBrowser for help on using the repository browser.