Changeset 596
- Timestamp:
- May 8, 2011, 12:13:16 PM (11 years ago)
- Location:
- abuse/trunk
- Files:
-
- 22 deleted
- 8 edited
- 7 moved
Legend:
- Unmodified
- Added
- Removed
-
abuse/trunk/README
r68 r596 50 50 51 51 SDL 1.1.6 or above. 52 SDL-Mixer 52 53 One of the following sets of datafiles: 53 54 - Registered Abuse(original CD) … … 156 157 Renaming the files to be all lowercase will fix this problem. 157 158 158 BOSS_ANT has no value:159 On some systems when running Abuse-SDL, the following error is given:160 "BOSS_ANT has no value"161 The exact cause of this is unknown, however there is a workaround.162 If you don't already have a '.abuse' directory in your $HOME directory,163 simply create it with the following command:164 165 mkdir ~/.abuse166 167 Then copy the file 'gamma.lsp' that is included with Abuse-SDL into that168 directory. This should fix the problem and allow Abuse-SDL to run correctly.169 The 'gamma.lsp' file stores the settings for gamma correction and be adjusted170 from the main game menu if desired.171 172 159 173 160 8. SPECIAL THANKS … … 186 173 9. FEEDBACK 187 174 188 If you have any questions, comments or constructive criticism, 189 Anthony's email address is: 175 If you have any questions, comments or criticism, Sam's email address is: 190 176 191 trandor@labyrinth.net.au177 sam@hocevar.net 192 178 193 179 The Abuse-SDL webpage can be found at: -
abuse/trunk/TODO
r590 r596 33 33 - server check in src/innet.cpp 34 34 - Lisp symbols server_not_reg and net_not_reg 35 - ensure gamma.lsp, hardness.lsp, defaults.prp, edit.lsp etc. are always 36 loaded and saved in the config directory, not in the datadir (use 37 local_load instead of load?). Same for addon/deathmat/cur_lev.lsp 35 38 -
abuse/trunk/data/addon/deathmat/deathmat.lsp
r588 r596 28 28 (load "lisp/switch.lsp") 29 29 30 ;; Artwork from fRaBs 31 (load "addon/claudio/claudio.lsp") 32 (load "addon/aliens/astartup.lsp") 33 (load "addon/newart/newart.lsp") 34 (load "addon/leon/4frabsdm.lsp") 30 35 31 36 (setq bad_guy_list (list DARNEL ANT_ROOF TRACK_GUN SPRAY_GUN JUGGER ROB1 WHO ROCKET FLYER GREEN_FLYER BOSS_ANT)) -
abuse/trunk/data/addon/deathmat/large.lsp
r588 r596 1 (setq net_levels 2 '("netlevel/8play1.spe" 3 "netlevel/8play2.spe" 4 "netlevel/8play3.spe" 5 "netlevel/8play4.spe")) 1 (select (random 4) 2 (0 (setq net_levels 3 '("netlevel/8play1.spe" 4 "netlevel/8play2.spe" 5 "netlevel/8play3.spe" 6 "netlevel/8play4.spe" 7 "netlevel/limeston.spe" 8 "netlevel/bugs.spe" 9 "netlevel/jdm3.spe"))) 10 (1 (setq net_levels 11 '("netlevel/bugs.spe" 12 "netlevel/8play3.spe" 13 "netlevel/8play4.spe" 14 "netlevel/8play1.spe" 15 "netlevel/limeston.spe" 16 "netlevel/8play2.spe" 17 "netlevel/jdm3.spe"))) 18 (2 (setq net_levels 19 '("netlevel/limeston.spe" 20 "netlevel/8play4.spe" 21 "netlevel/8play2.spe" 22 "netlevel/jdm3.spe" 23 "netlevel/8play1.spe" 24 "netlevel/8play3.spe" 25 "netlevel/bugs.spe"))) 26 (3 (setq net_levels 27 '("netlevel/jdm3.spe" 28 "netlevel/8play1.spe" 29 "netlevel/8play4.spe" 30 "netlevel/bugs.spe" 31 "netlevel/8play2.spe" 32 "netlevel/8play3.spe" 33 "netlevel/limeston.spe")))) 34 -
abuse/trunk/data/addon/deathmat/medium.lsp
r588 r596 1 (setq net_levels 2 '( 3 "netlevel/4play1.spe" 4 "netlevel/4play2.spe" 5 "netlevel/4play3.spe" 6 "netlevel/4play4.spe" 7 )) 1 (select (random 4) 2 (0 (setq net_levels 3 '("netlevel/4play1.spe" 4 "netlevel/4play2.spe" 5 "netlevel/4play3.spe" 6 "netlevel/4play4.spe" 7 "netlevel/spacymed.spe" 8 "netlevel/teardrop.spe" 9 "netlevel/aquarius.spe" 10 "netlevel/madrace.spe" 11 "netlevel/laazrckt.spe" 12 "netlevel/bugsmed.spe" 13 "netlevel/00dm.spe"))) 14 (1 (setq net_levels 15 '("netlevel/aquarius.spe" 16 "netlevel/madrace.spe" 17 "netlevel/4play1.spe" 18 "netlevel/4play2.spe" 19 "netlevel/bugsmed.spe" 20 "netlevel/teardrop.spe" 21 "netlevel/laazrckt.spe" 22 "netlevel/4play3.spe" 23 "netlevel/00dm.spe" 24 "netlevel/4play4.spe" 25 "netlevel/spacymed.spe"))) 26 (2 (setq net_levels 27 '("netlevel/laazrckt.spe" 28 "netlevel/00dm.spe" 29 "netlevel/4play3.spe" 30 "netlevel/bugsmed.spe" 31 "netlevel/4play4.spe" 32 "netlevel/aquarius.spe" 33 "netlevel/4play1.spe" 34 "netlevel/spacymed.spe" 35 "netlevel/4play2.spe" 36 "netlevel/teardrop.spe" 37 "netlevel/madrace.spe"))) 38 (3 (setq net_levels 39 '("netlevel/teardrop.spe" 40 "netlevel/4play4.spe" 41 "netlevel/laazrckt.spe" 42 "netlevel/spacymed.spe" 43 "netlevel/bugsmed.spe" 44 "netlevel/4play2.spe" 45 "netlevel/4play3.spe" 46 "netlevel/00dm.spe" 47 "netlevel/madrace.spe" 48 "netlevel/4play1.spe" 49 "netlevel/aquarius.spe")))) 50 -
abuse/trunk/data/addon/deathmat/small.lsp
r588 r596 1 (setq net_levels 2 '("netlevel/2play1.spe" 3 "netlevel/2play2.spe" 4 "netlevel/2play3.spe" 5 "netlevel/2play4.spe")) 1 (select (random 4) 2 (0 (setq net_levels 3 '("netlevel/2play1.spe" 4 "netlevel/2play2.spe" 5 "netlevel/2play3.spe" 6 "netlevel/2play4.spe" 7 "netlevel/alitlhot.spe" 8 "netlevel/getcross.spe" 9 "netlevel/spacytdm.spe" 10 "netlevel/treesmal.spe" 11 "netlevel/redgrndm.spe" 12 "netlevel/bugssml.spe" 13 "netlevel/kotcross.spe" 14 "netlevel/ruins.spe" 15 "netlevel/occult.spe" 16 "netlevel/cistern.spe"))) 17 (1 (setq net_levels 18 '("netlevel/treesmal.spe" 19 "netlevel/cistern.spe" 20 "netlevel/bugssml.spe" 21 "netlevel/occult.spe" 22 "netlevel/redgrndm.spe" 23 "netlevel/2play4.spe" 24 "netlevel/getcross.spe" 25 "netlevel/2play2.spe" 26 "netlevel/2play3.spe" 27 "netlevel/spacytdm.spe" 28 "netlevel/2play1.spe" 29 "netlevel/ruins.spe" 30 "netlevel/kotcross.spe" 31 "netlevel/alitlhot.spe"))) 32 (2 (setq net_levels 33 '("netlevel/kotcross.spe" 34 "netlevel/2play4.spe" 35 "netlevel/spacytdm.spe" 36 "netlevel/2play2.spe" 37 "netlevel/cistern.spe" 38 "netlevel/redgrndm.spe" 39 "netlevel/treesmal.spe" 40 "netlevel/alitlhot.spe" 41 "netlevel/2play1.spe" 42 "netlevel/occult.spe" 43 "netlevel/getcross.spe" 44 "netlevel/ruins.spe" 45 "netlevel/2play3.spe" 46 "netlevel/bugssml.spe"))) 47 (3 (setq net_levels 48 '("netlevel/ruins.spe" 49 "netlevel/getcross.spe" 50 "netlevel/treesmal.spe" 51 "netlevel/2play3.spe" 52 "netlevel/2play2.spe" 53 "netlevel/cistern.spe" 54 "netlevel/kotcross.spe" 55 "netlevel/2play1.spe" 56 "netlevel/alitlhot.spe" 57 "netlevel/2play4.spe" 58 "netlevel/redgrndm.spe" 59 "netlevel/spacytdm.spe" 60 "netlevel/occult.spe" 61 "netlevel/bugssml.spe")))) 6 62 -
abuse/trunk/data/addon/deathmat/version.lsp
r588 r596 1 (setq server_version_major 1)(setq server_version_minor 44) 1 (setq server_version_major 2) 2 (setq server_version_minor 0) -
abuse/trunk/doc/frabs/readme.txt
r595 r596 3 3 ------ 4 4 5 This is basically registered Abuse, with slight modifications 5 This is basically registered Abuse, with slight modifications 6 6 and removal of material that might not be public domain. Abuse 7 is a side-scrolling action game made by the now-defunct 7 is a side-scrolling action game made by the now-defunct 8 8 Crack dot Com. It's an excellent single and multi-player game, 9 9 with a superb level editor and a unique control system. … … 20 20 ----- 21 21 22 * Satan Paint, the artwork editor for Abuse, is included in 23 fRaBs, along with the generic DOS4GW. Check the /art folder. 24 25 * Thanks for all your support and comments folks, I'm glad 22 * Thanks for all your support and comments folks, I'm glad 26 23 you all are still interested in the reigning king of action 27 24 side-scrolling games. Rock on! 28 25 29 * Claudio's addon enhances this version of Abuse with many new 26 * Claudio's addon enhances this version of Abuse with many new 30 27 enemies and objects. Aliens Abuse objects and art are also 31 28 included. However, do not try to run the original versions of … … 35 32 36 33 * I hope to include the updates of the Twisted Minds addon whenever 37 the creator, Profound, releases them. This addon allows you to 34 the creator, Profound, releases them. This addon allows you to 38 35 ride vehicles and also has a twisted set of Super Mario Bros. art 39 36 and graphics. Read the readme in /addon/twist for more information, 40 and to use the whole Twisted Minds object set, be sure to run the 37 and to use the whole Twisted Minds object set, be sure to run the 41 38 proper batch file, as not all of these objects are included when you 42 39 normally run fRaBs. The object menu would get really crazy if they 43 were included. 44 45 * Before running this, make sure you run SETUP.EXE and configure 46 settings for your soundcard. Next, check the gamma settings by 47 running Abuse and clicking the darkest visible color on the 48 Gamma control button (Monitor w/ RGB). 49 50 * Remember that because most of /music is deleted, you will not 51 hear music in the game, so there's no point in trying to configure 52 it in SETUP.EXE. It might not work anyways. :) 40 were included. 53 41 54 42 * By using these commands, you can play levels from the command-line. 55 You can either do this from a DOSwindow or by making a shortcut43 You can either do this from a command window or by making a shortcut 56 44 or by using the RUN command from the Start menu in Windows. 57 45 58 abuse.exe -f blahblah.spe59 abuse.exe -f levels/blahblah.spe46 abuse -f blahblah.spe 47 abuse -f levels/blahblah.spe 60 48 61 49 * To use Abuse's powerful level editor, use this command. 62 50 63 abuse.exe -edit64 abuse.exe -edit -f whatever.lvl51 abuse -edit 52 abuse -edit -f whatever.lvl 65 53 66 * A detailed HTML readme is found in /doc s.54 * A detailed HTML readme is found in /doc/frabs. 67 55 68 56 Justin Cassidy 69 messiah15@dog.com70 57
Note: See TracChangeset
for help on using the changeset viewer.