1 | ;; Copyright 1999 Profound Corp, All Rights reserved
|
---|
2 | ;; See licensing information for more details on usage rights
|
---|
3 |
|
---|
4 |
|
---|
5 | ;; Note for /Messiah\
|
---|
6 | ;; in the main abuse.lsp, change
|
---|
7 | ;;
|
---|
8 | ;; (if (not (local_load "lisp/input.lsp")) ; get local copy first
|
---|
9 | ;; (load "lisp/input.lsp"))
|
---|
10 | ;; to: (if (not (local_load "addon/twist/lisp/input.lsp"))
|
---|
11 | ;; (load "addon/twist/lisp/input.lsp"))
|
---|
12 | ;;
|
---|
13 | ;; also, append this to the final set of lines relating to the loading part:
|
---|
14 | ;; (load "addon/twist/lisp/dray.lsp")
|
---|
15 |
|
---|
16 | ;; make sure you add all the objects that the deathray's light beam will have effect on.
|
---|
17 | ;; the objects are simply the bad_guy_list... BUT, remove DARNEL from the list.
|
---|
18 |
|
---|
19 | (setq object_destroyable_list (list DARNEL ANT_ROOF TRACK_GUN SPRAY_GUN JUGGER ROB1 WHO ROCKET FLYER GREEN_FLYER BOSS_ANT DROID_JUGGER DROID DEATH_SKULL DEATH_UMBRELLA ANT_SHIP WALK_ROB T_REX FACE_HUGGER ALIEN_DRONE ALIEN_WARRIOR))
|
---|
20 |
|
---|
21 |
|
---|
22 | ;; this will allow the player to pick up both ammo and weapons.
|
---|
23 | (setq enableammoandweapons 1)
|
---|
24 |
|
---|
25 | (load "addon/twist/lisp/userfuns.lsp")
|
---|
26 | (load "addon/twist/lisp/sfx.lsp")
|
---|
27 | (load "addon/twist/lisp/weapons.lsp")
|
---|
28 | (load "addon/twist/lisp/light.lsp")
|
---|
29 | ;; this is the cheat stuff
|
---|
30 | (load "addon/twist/lisp/chat.lsp")
|
---|
31 |
|
---|
32 | ;; if you want to load any other stuff from twisted minds, simply add the link below
|
---|
33 |
|
---|
34 |
|
---|
35 | ;; this is the palette used for the death ray. the normal palette
|
---|
36 | ;; dont have any purple and a pink deathray dosent look good.
|
---|
37 | (load_palette "addon/twist/art/palette.spe") |
---|