Changeset 590 for abuse/trunk/data/addon/twist
- Timestamp:
- May 7, 2011, 5:12:10 PM (12 years ago)
- Location:
- abuse/trunk/data/addon/twist/lisp
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
abuse/trunk/data/addon/twist/lisp/startup.lsp
r589 r590 41 41 "art/fore/techno4.spe" ;; 300-460 42 42 "art/fore/cave.spe" ;; 500-634 43 "art/fore/alien.spe" ;; 700-774 44 "art/fore/trees.spe" ;; 800-931 45 "art/fore/endgame.spe" ;; 950-1014 46 "art/fore/trees2.spe" ;; 1100-1134 43 47 44 48 "art/back/backgrnd.spe" ;; 0 … … 47 51 "art/back/cave.spe" ;; 84-103 48 52 "art/back/tech.spe" ;; 110-139 53 "art/back/alienb.spe" ;; 150-179 54 "art/back/green2.spe" ;; 200-268 55 "art/back/galien.spe" ;; 300-320 49 56 ) 50 57 51 (setq load_warn nil) 52 (load "register/tiles.lsp") ;; load up registered artwork if it's there 53 (setq load_warn T) 58 (defun end_game_ai () 59 (if (activated) 60 (if (eq (aistate) 8) 61 (if (not (next_picture)) 62 (request_end_game)) 63 (set_aistate (+ (aistate) 1)))) 64 T) 65 66 67 (def_char END_GAME 68 (funs (ai_fun end_game_ai)) 69 (range 0 0) 70 (states "art/fore/endgame.spe" 71 (stopped (app (seq "pipe" 1 9) 72 (seq "pipe" 1 9) 73 (seq "pipe" 1 9) 74 (seq "pipe" 1 9) 75 (seq "pipe" 1 9) 76 (seq "pipe" 1 9) 77 (seq "pipe" 1 9) 78 (seq "pipe" 1 9) 79 (seq "pipe" 1 9))))) 80 54 81 55 82 (setf demos '("levels/demo1.dat" "levels/demo3.dat" "levels/demo4.dat" "levels/demo5.dat")) -
abuse/trunk/data/addon/twist/lisp/title.lsp
r589 r590 6 6 (setf logo '("addon/twist/art/title.spe" . "profound")) 7 7 (setq help_screens '("addon/twist/art/title.spe" "pro1" "pro2" "pro3" "pro4" "pro5")) 8 (setq sell_screens '(("addon/twist/art/title.spe" . "pro1")("addon/twist/art/title.spe" . "pro2")("addon/twist/art/title.spe" . "pro3")("addon/twist/art/title.spe" . "pro4")("addon/twist/art/title.spe" . "pro5")("art/ endgame.spe" . "credit")))8 (setq sell_screens '(("addon/twist/art/title.spe" . "pro1")("addon/twist/art/title.spe" . "pro2")("addon/twist/art/title.spe" . "pro3")("addon/twist/art/title.spe" . "pro4")("addon/twist/art/title.spe" . "pro5")("art/fore/endgame.spe" . "credit"))) 9 9
Note: See TracChangeset
for help on using the changeset viewer.