Changeset 582 for abuse/trunk/data-abuse/addon
- Timestamp:
- May 6, 2011, 12:47:14 AM (12 years ago)
- Location:
- abuse/trunk/data-abuse/addon
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
abuse/trunk/data-abuse/addon/deathmat/deathmat.lsp
r54 r582 6 6 (defun net_file (x) (concatenate 'string net_dir x)) 7 7 (load (net_file "dstartup.lsp")) 8 (load "lisp/options.lsp") 8 (load "lisp/options.lsp") 9 9 10 10 (load "lisp/input.lsp") -
abuse/trunk/data-abuse/addon/deathmat/dstartup.lsp
r566 r582 10 10 (load "config/cur_lev.lsp") 11 11 (set_first_level (nth current_net_level net_levels))) 12 12 13 13 ;; save the level we are so joining clients know which one to load 14 (open_file "config/cur_lev.lsp" "wb" 14 (open_file "config/cur_lev.lsp" "wb" 15 15 (print `(setq current_net_level ,current_net_level)))) 16 16 17 17 18 18 ;; this is a simple check to see if they player has an engine version … … 32 32 (progn 33 33 (print "\nPlease make sure you unzipped the game with the -d option") 34 (print "so that all directories get created properly.") 35 (print "example : pkunzip -d abusXXXX.zip") 34 (print "so that all directories get created properly.") 35 (print "example : pkunzip -d abusXXXX.zip") 36 36 (quit))) 37 37 (setq load_warn T) … … 52 52 (print (list 'setq 'server_version_major (major_version) )) 53 53 (print (list 'setq 'server_version_minor (minor_version))))) 54 54 55 55 56 56 (if (not (am_a_client)) … … 59 59 ;(let ((input (nice_input "DEATHMATCH : Enter your name below" "Name" username))) 60 60 ; (open_file "config/username.lsp" "wb" 61 ; (print (list 'setq 'username 61 ; (print (list 'setq 'username 62 62 ; (concatenate 'string '(#\") input '(#\")))))) 63 63 … … 82 82 (defun display_player (player text_x text_y) 83 83 (if player 84 (with_object player 85 (put_string (get_main_font) text_x text_y 86 (concatenate 'string (digstr (kills) 2) " " (player_name) 87 (if (local_player) 84 (with_object player 85 (put_string (get_main_font) text_x text_y 86 (concatenate 'string (digstr (kills) 2) " " (player_name) 87 (if (local_player) 88 88 " <<" 89 89 "")) -
abuse/trunk/data-abuse/addon/deathmat/large.lsp
r54 r582 1 (setq net_levels 1 (setq net_levels 2 2 '("netlevel/8play1.spe" 3 3 "netlevel/8play2.spe" -
abuse/trunk/data-abuse/addon/deathmat/medium.lsp
r54 r582 1 (setq net_levels 1 (setq net_levels 2 2 '( 3 3 "netlevel/4play1.spe" -
abuse/trunk/data-abuse/addon/deathmat/small.lsp
r54 r582 1 (setq net_levels 1 (setq net_levels 2 2 '("netlevel/2play1.spe" 3 3 "netlevel/2play2.spe" -
abuse/trunk/data-abuse/addon/example/example.lsp
r54 r582 11 11 ;;;; if you do not already have the directory c:\abuse\addon, make it now. 12 12 13 ;;;; If you created foretiles for abuse (using Satan Paint) you should 13 ;;;; If you created foretiles for abuse (using Satan Paint) you should 14 14 ;;;; start numbering them at 1200 because the last of the registered 15 15 ;;;; tiles end at 1100 something. Backtiles should start numbering at 350. … … 36 36 ;;;; ****************** CREATING PACKAGES ******************* 37 37 ;;;; to archive this package you should do the following 38 ;;;; DOS : 38 ;;;; DOS : 39 39 ;;;; cd c:\abuse\addon 40 40 ;;;; pkzip -rp example.zip example\*.* … … 57 57 58 58 ;;;; Now the meat of this package : 59 ;;;; Note that slashes should be FORWARD slashes even if 59 ;;;; Note that slashes should be FORWARD slashes even if 60 60 ;;;; you are using DOS 61 61 62 62 ;; load up some tiles I made. You can add more filenames 63 63 ;; if you wish, but they should all be loaded from 'your' dir. 64 (load_tiles "addon/example/example.spe") 64 (load_tiles "addon/example/example.spe") 65 65 66 66 ;; set the first level to the one I made 67 (set_first_level "addon/example/example.lvl") 67 (set_first_level "addon/example/example.lvl") 68 68 69 69 ;; load up the normal abuse startup file 70 (load "abuse.lsp") 70 (load "abuse.lsp") 71 71 72 72
Note: See TracChangeset
for help on using the changeset viewer.