Changeset 590 for abuse/trunk/data/addon/deathmat/dstartup.lsp
- Timestamp:
- May 7, 2011, 5:12:10 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
abuse/trunk/data/addon/deathmat/dstartup.lsp
r588 r590 126 126 "art/fore/techno4.spe" 127 127 "art/fore/cave.spe" 128 "art/fore/alien.spe" 129 "art/fore/trees.spe" 130 "art/fore/endgame.spe" 131 "art/fore/trees2.spe" 128 132 129 133 "art/back/intro.spe" … … 131 135 "art/back/tech.spe" 132 136 "art/back/cave.spe" 133 "art/back/backgrnd.spe") 137 "art/back/backgrnd.spe" 138 "art/back/alienb.spe" 139 "art/back/green2.spe" 140 "art/back/galien.spe") 134 141 135 (setq load_warn nil) 136 (load "register/tiles.lsp") ;; load up registered artwork if it's there 137 (setq load_warn T) 142 (defun end_game_ai () 143 (if (activated) 144 (if (eq (aistate) 8) 145 (if (not (next_picture)) 146 (request_end_game)) 147 (set_aistate (+ (aistate) 1)))) 148 T) 149 150 (def_char END_GAME 151 (funs (ai_fun end_game_ai)) 152 (range 0 0) 153 (states "art/fore/endgame.spe" 154 (stopped (app (seq "pipe" 1 9) 155 (seq "pipe" 1 9) 156 (seq "pipe" 1 9) 157 (seq "pipe" 1 9) 158 (seq "pipe" 1 9) 159 (seq "pipe" 1 9) 160 (seq "pipe" 1 9) 161 (seq "pipe" 1 9) 162 (seq "pipe" 1 9))))) 163 138 164 139 165 (setf title_screen '("art/title.spe" . "title_screen"))
Note: See TracChangeset
for help on using the changeset viewer.