alien arena 2006
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 282
Alien Arena 2007 6.05
Alien Arena 2006 is the ultimate freeware deathmatch game. more>>
Alien Arena 2006 is the ultimate freeware deathmatch game!
Included are 25 total levels, 9 detailed characters, 8 weapons, 2 vehicles, 5 gameplay modes(DM, TDM, CTF, All Out Assault, Deathball), and much more!
New for Alien Arena 2006 are five mutators(instagib, regeneration, vampire, rocket arena, and low grav), and Deathball, a mode in which you get points by capturing a ball and firing in into a goal.
Eight new levels have been added, as well as alternate firing modes for several of the weapons. The game now runs on version 4.03 of the CRX engine, based on the id Software GPL source codes, and adding nextgen features such as reflective water, shaders, light bloom, improved lighting, and much more, while optimizations allow it to still run extremely fast even on modest systems.
The game now features colored names, an improved console, and an enhanced in-game server browser.
Also available is the "Nightmare Bots" patch, which adds a fourth skill level to the in-game bots, which will challenge even the best players.
<<lessIncluded are 25 total levels, 9 detailed characters, 8 weapons, 2 vehicles, 5 gameplay modes(DM, TDM, CTF, All Out Assault, Deathball), and much more!
New for Alien Arena 2006 are five mutators(instagib, regeneration, vampire, rocket arena, and low grav), and Deathball, a mode in which you get points by capturing a ball and firing in into a goal.
Eight new levels have been added, as well as alternate firing modes for several of the weapons. The game now runs on version 4.03 of the CRX engine, based on the id Software GPL source codes, and adding nextgen features such as reflective water, shaders, light bloom, improved lighting, and much more, while optimizations allow it to still run extremely fast even on modest systems.
The game now features colored names, an improved console, and an enhanced in-game server browser.
Also available is the "Nightmare Bots" patch, which adds a fourth skill level to the in-game bots, which will challenge even the best players.
Download (208.33MB)
Added: 2007-06-17 License: GPL (GNU General Public License) Price:
866 downloads
OpenArena 0.7.0
OpenArena is an open-source content package for Quake III Arena. more>>
OpenArena is an open-source content package for Quake III Arena licensed under the GPL, effectively creating a free stand-alone game.
The art direction of Open Arena is about "double" as Quake III Arena:
- double texture resolution, i.e. 512x512 as opposed to a 256x256
- double the polycount of models, instead of 700-900 youll have 1200-2000 poly players
- Sound is probably mixed in 44khz rather than 22khz, but I dunno about that as 44khz seems to crash Q3A at this moment
Hopefully the detail should still be scalable with texture resolution and LoDs for slower computers (read: my p100 with voodoo2)
Concepts would be loose, so dont expect a remake of Klesk in his original Klesk form, or any direct remakes of any map/weapon/model.
<<lessThe art direction of Open Arena is about "double" as Quake III Arena:
- double texture resolution, i.e. 512x512 as opposed to a 256x256
- double the polycount of models, instead of 700-900 youll have 1200-2000 poly players
- Sound is probably mixed in 44khz rather than 22khz, but I dunno about that as 44khz seems to crash Q3A at this moment
Hopefully the detail should still be scalable with texture resolution and LoDs for slower computers (read: my p100 with voodoo2)
Concepts would be loose, so dont expect a remake of Klesk in his original Klesk form, or any direct remakes of any map/weapon/model.
Download (250.9MB)
Added: 2007-07-08 License: GPL (GNU General Public License) Price:
559 downloads
Alien Swarm 1.32
Alien Swarm is a co-op mod for UT2004 where you play a team of marines fighting agains the swarm. more>>
Alien Swarm is an overhead view tactical shooter modification for Unreal Tournament 2004. Alien Swarm is set in a distant future, the players take the role of a Commander in the Interstellar Armed Forces.
They must guide their squad of marines through Swarm infested colonies, overrun bases and outposts, to achieve a variety of objectives. Featuring Assault Rifles, Heat Tracking Guns, Sentry Guns, Flamethrowers and more.
The top down, tactical shooter can be played by a maximum of 6 players in a co-op style. (You can play 8 in total, but then the game gets a bit crowded so we made it 6 by default.) Choose from eight marines, with different specialties - medical, technical, explosive or weapons specialists.
It features a single mission mode and a campaign. Fight off the Swarm to increase your skills and earn medals for extra skill points.
<<lessThey must guide their squad of marines through Swarm infested colonies, overrun bases and outposts, to achieve a variety of objectives. Featuring Assault Rifles, Heat Tracking Guns, Sentry Guns, Flamethrowers and more.
The top down, tactical shooter can be played by a maximum of 6 players in a co-op style. (You can play 8 in total, but then the game gets a bit crowded so we made it 6 by default.) Choose from eight marines, with different specialties - medical, technical, explosive or weapons specialists.
It features a single mission mode and a campaign. Fight off the Swarm to increase your skills and earn medals for extra skill points.
Download (121.2MB)
Added: 2007-03-03 License: GPL (GNU General Public License) Price:
979 downloads
libarena 0.3.4
libarena is a custom memory allocator interface and implementation. more>>
libarena library is a custom memory allocator interface and implementation. Three allocators are provided: flat "LIFO" arena allocator, object pool allocator and a malloc(3) wrapper. These can be used directly, or through their exported prototype interfaces.
libarena is meant to provide a baseline interface so allocators can be stacked, and to provide a well defined interface for libraries and applications. It is not meant to restrict or confine what custom allocators can actually accomplish. For instance, the included pool and arena allocators include a suite of string utilities which arent available in the generic exportable interface. However, they are built upon the generic interface (see util.h).
Almost no malloc(3) library "replacements" support a context pointer argument. Theyre useless for many or most of the tasks where the ability to specify an alternate malloc(3) could actually be useful, e.g. one shot dealloction of a task structure and all associated allocations. For network daemons especially this feature is useful; all allocations for a particular session can be freed simply by closing the lowest-level allocator object.
The arena allocator behaves similarly to GNU obstacks. If allocations are freed in reverse order than the underlying buffers will be freed accordingly; out-of-order deallocations will lead to fragmentation. The arena allocator also supports position marking. The state at any given instance can be stored and the allocator later reset to that state. All allocations which occured after, in time, the saved state will behave as-if they were explicitly deallocated.
The pool allocator keeps a pool of sets of fixed sized buffers. Each buffer size can be arbitrary. Allocations which cannot be met from the existing buckets will result in the creation of a new bucket. Memory returned to the pool will be reused. Currently the pool will never shrink, only grow.
Upon closing of the arena or pool allocator objects all memory used will be released back to their underlying allocator (either the one passed on instantiation, or by default `ARENA_STDLIB, the standard library wrapper.
Enhancements:
- The makefiles are no longer recursive, so this should build and install using either GNU Make or BSD pmake.
<<lesslibarena is meant to provide a baseline interface so allocators can be stacked, and to provide a well defined interface for libraries and applications. It is not meant to restrict or confine what custom allocators can actually accomplish. For instance, the included pool and arena allocators include a suite of string utilities which arent available in the generic exportable interface. However, they are built upon the generic interface (see util.h).
Almost no malloc(3) library "replacements" support a context pointer argument. Theyre useless for many or most of the tasks where the ability to specify an alternate malloc(3) could actually be useful, e.g. one shot dealloction of a task structure and all associated allocations. For network daemons especially this feature is useful; all allocations for a particular session can be freed simply by closing the lowest-level allocator object.
The arena allocator behaves similarly to GNU obstacks. If allocations are freed in reverse order than the underlying buffers will be freed accordingly; out-of-order deallocations will lead to fragmentation. The arena allocator also supports position marking. The state at any given instance can be stored and the allocator later reset to that state. All allocations which occured after, in time, the saved state will behave as-if they were explicitly deallocated.
The pool allocator keeps a pool of sets of fixed sized buffers. Each buffer size can be arbitrary. Allocations which cannot be met from the existing buckets will result in the creation of a new bucket. Memory returned to the pool will be reused. Currently the pool will never shrink, only grow.
Upon closing of the arena or pool allocator objects all memory used will be released back to their underlying allocator (either the one passed on instantiation, or by default `ARENA_STDLIB, the standard library wrapper.
Enhancements:
- The makefiles are no longer recursive, so this should build and install using either GNU Make or BSD pmake.
Download (0.020MB)
Added: 2007-06-06 License: MIT/X Consortium License Price:
872 downloads
Infon Battle Arena 204
Infon Battle Arena is a networked multiplayer real-time programming game featuring little creatures fighting for food. more>>
Infon Battle Arena is a networked multiplayer real-time programming game featuring little creatures fighting for food. You upload your Creature Code (written in Lua) to a game server using a telnet Interface.
The game server then runs your code. The graphical client can be used to watch running games or replay recorded games.
<<lessThe game server then runs your code. The graphical client can be used to watch running games or replay recorded games.
Download (0.16MB)
Added: 2007-06-19 License: GPL (GNU General Public License) Price:
860 downloads
Alien Blaster 1.1.0
Alien Blaster project is an action-loaded 2D arcade shooter game for up to two players. more>>
Alien Blaster project is an action-loaded 2D arcade shooter game for up to two players.
alienblaster is an action-loaded 2D arcade shooter game.
Your mission in the game is simple: stop the invasion of the aliens by blasting them.
Simultaneous two-player mode is available.
Main features:
- many aliens to blast
- a big bad boss
- different weapons
- special items
- cooperative mode (2 players playing on 1 computer)
- gamepad/joystick support
- arcade mode with highscore
- open source
- published under GPL
- runs with Windows and Linux
<<lessalienblaster is an action-loaded 2D arcade shooter game.
Your mission in the game is simple: stop the invasion of the aliens by blasting them.
Simultaneous two-player mode is available.
Main features:
- many aliens to blast
- a big bad boss
- different weapons
- special items
- cooperative mode (2 players playing on 1 computer)
- gamepad/joystick support
- arcade mode with highscore
- open source
- published under GPL
- runs with Windows and Linux
Download (6.3MB)
Added: 2006-11-10 License: GPL (GNU General Public License) Price:
1078 downloads
Page Manager 2006-01-27
Page Manager is a content management system (CMS) for sites that does not need (or cannot have) a database back-end. more>>
Page Manager is a content management system (CMS) for sites that does not need (or cannot have) a database back-end. Instead Page Manager uses the HTML-files itself as storage.
This makes it ideal for static (or semi-static) websites that does not need to be updated every second, but need an web-based editing/management interface.
It includes a browser-based WYSIWYG HTML editor (using TinyMCE) and it can also be used to maintain news, blogs (or other lists) and online image galleries.
New in-place wysiwyg editing (using AJAX) makes the web management easy for non-technical people.
Main features:
- Browser-based website management
- Simple editing interface for site content, news lists, blogs and image galleries
- WYSIWYG editing of HTML pages using TinyMCE
- No database: The pages themselves are the database
- VERY simple installation: Just unzip to your public directory.
- Minimal configuration required: Only username/password must be specified.
- Simple XML syntax to include meta information (for the editor) in HTML-pages.
<<lessThis makes it ideal for static (or semi-static) websites that does not need to be updated every second, but need an web-based editing/management interface.
It includes a browser-based WYSIWYG HTML editor (using TinyMCE) and it can also be used to maintain news, blogs (or other lists) and online image galleries.
New in-place wysiwyg editing (using AJAX) makes the web management easy for non-technical people.
Main features:
- Browser-based website management
- Simple editing interface for site content, news lists, blogs and image galleries
- WYSIWYG editing of HTML pages using TinyMCE
- No database: The pages themselves are the database
- VERY simple installation: Just unzip to your public directory.
- Minimal configuration required: Only username/password must be specified.
- Simple XML syntax to include meta information (for the editor) in HTML-pages.
Download (0.86MB)
Added: 2006-01-27 License: LGPL (GNU Lesser General Public License) Price:
1365 downloads
Alien GUI 0.4
Alien GUI is a graphical user interface of famous Alien which makes it possible to transform packages. more>>
Alien GUI is a graphical user interface of famous Alien which makes it possible to transform packages.
You must be logged in root to be able to use it.
<<lessYou must be logged in root to be able to use it.
Download (0.10MB)
Added: 2006-03-05 License: GPL (GNU General Public License) Price:
1378 downloads
GearHead: Arena 1.100
GearHead is a mecha roguelike roleplaying game. more>>
GearHead is a mecha roguelike roleplaying game.
Set a century and a half after nuclear war, you can explore a world where various factions compete to determine the future of the human race.
Major features include random plot generation, a detailed character system, and over two hundred customizable mecha designs.
There are two things which really separate GearHead from most
other ASCII-based RPGs. First, movement is somewhat more complex.
Second, you get to pilot giant robots.
Movement in GearHead is a bit more complex than it is in most other roguelikes, but once you get used to it I hope youll enjoy it. Your character has direction, speed, and altitude. These three values are shown in the navigational display, on the left hand side of the character info window.
The display should look something like this:
+<<less
Set a century and a half after nuclear war, you can explore a world where various factions compete to determine the future of the human race.
Major features include random plot generation, a detailed character system, and over two hundred customizable mecha designs.
There are two things which really separate GearHead from most
other ASCII-based RPGs. First, movement is somewhat more complex.
Second, you get to pilot giant robots.
Movement in GearHead is a bit more complex than it is in most other roguelikes, but once you get used to it I hope youll enjoy it. Your character has direction, speed, and altitude. These three values are shown in the navigational display, on the left hand side of the character info window.
The display should look something like this:
+<<less
Download (0.94MB)
Added: 2007-06-23 License: LGPL (GNU Lesser General Public License) Price:
867 downloads
MP3 renamer 2006 0.62
Mp3 renamer 2006 by MiKe is a shell script for Linux. more>>
Mp3 renamer 2006 by MiKe is a shell script for Linux. MP3 renamer goes by the Unix name of rename-mp3. It looks at MP3 files in a Directory and, using id3v2, will rename all the mp3 files in a nice format according to the id3 tags rename-mp3 will look at both v1 and v2 id3 tags, and will make the output file in a Title-Album-Artist.mp3 format.
It saves time, and not only will it read the id3 tags, but in the event that the MP3 file has no id3 tags, you will be given 4 options
1)abort 2)skip 3)rename 4)write id3 tags, and you are asked what you would like the id3 tag artist, track name and album to be.
This is great if you want the track to be easy to view and yet you still like having a library of music that is all tagged nicely!
Enhancements:
- New stuff: The INSTALLER now works, whereas before it wouldnt copy...
<<lessIt saves time, and not only will it read the id3 tags, but in the event that the MP3 file has no id3 tags, you will be given 4 options
1)abort 2)skip 3)rename 4)write id3 tags, and you are asked what you would like the id3 tag artist, track name and album to be.
This is great if you want the track to be easy to view and yet you still like having a library of music that is all tagged nicely!
Enhancements:
- New stuff: The INSTALLER now works, whereas before it wouldnt copy...
Download (0.005MB)
Added: 2006-03-22 License: Other/Proprietary License with Source Price:
1317 downloads
Alien 8.69
Converts between the rpm, dpkg, stampede slp, and slackware tgz file formats. more>> Alien is a program that converts between the rpm, dpkg, stampede slp, and slackware tgz file formats. If you want to use a package from another distribution than the one you have installed on your system, you can use alien to convert it to your preferred package format and install it.
Despite the large version number, alien is still (and will probably always be) rather experimental software. It has been used by many people for many years, but there are still many bugs and limitations.
Alien should not be used to replace important system packages, like sysvinit, shared libraries, or other things that are essential for the functioning of your system. Many of these packages are set up differently by Debian and Red Hat, and packages from the different distributions cannot be used interchangably. In general, if you cant uninstall the package without breaking your system, dont try to replace it with an alien version.
Alien is available as the alien package in Debian. To use alien, you will need several other programs. Alien is a perl program, and requires perl version 5.004 or greater. To convert packages to or from rpms, you need the Red Hat Package Manager; get it from its website.<<less
Download (73KB)
Added: 2009-04-18 License: Freeware Price: Free
264 downloads
Alien Flux 1.6
Alien Flux is an arcade game where cute little Fluffies need YOUR help! more>>
Alien Flux is an arcade game where cute little Fluffies need YOUR help! Have you got what it takes to save them?
Defend the cutest, fluffiest little creatures in the Galaxy from a horde of evil aliens from the fifth dimension! With only fast reactions, animal cunning and a very big laser cannon to help you, you must rescue the Fluffies as malevolent Bubbles attempt to turn them into lime jelly.
Main features:
- 16 unique evil aliens from the 5th dimension
- 4 massive and fiendish bosses
- 8 cute fluffy friends that need your help
- 12 powerups to help you in your mission
- 100 levels of blistering arcade action in which to battle
- online hiscore table - be the best in the world and compete against your friends!
<<lessDefend the cutest, fluffiest little creatures in the Galaxy from a horde of evil aliens from the fifth dimension! With only fast reactions, animal cunning and a very big laser cannon to help you, you must rescue the Fluffies as malevolent Bubbles attempt to turn them into lime jelly.
Main features:
- 16 unique evil aliens from the 5th dimension
- 4 massive and fiendish bosses
- 8 cute fluffy friends that need your help
- 12 powerups to help you in your mission
- 100 levels of blistering arcade action in which to battle
- online hiscore table - be the best in the world and compete against your friends!
Download (MB)
Added: 2006-03-16 License: Freeware Price:
1318 downloads
Gridarta 2006-11-15
Gridarta project is a 2D MMORPG map editor for Crossfire and Daimonin. more>>
Gridarta project is a 2D MMORPG map editor for Crossfire and Daimonin.
Gridarta currently supports Angelion, Crossfire, and Daimonin.
Enhancements:
- Removed todo (thats done).
- Cosmetic: Declared a var final.
- Substantial improvement of ArchObjectContainer: * Made it fail fast in case of bogus usage (throwing IllegalArgumentException). * Documented nullability.
- Removed redundant setting of the container while reading arches from the map.
- Fixed broken remove().
- File when saving a map must not be null.
- Fixed broken addFirst() / addLast().
- Removed More handling from CMapFileDecode in daieditor.
- Removed duplicate classes MapEvent and MapListener.
- Remove variable that always is null.
- Removed manually linked lists for containers in ArchObjects.
<<lessGridarta currently supports Angelion, Crossfire, and Daimonin.
Enhancements:
- Removed todo (thats done).
- Cosmetic: Declared a var final.
- Substantial improvement of ArchObjectContainer: * Made it fail fast in case of bogus usage (throwing IllegalArgumentException). * Documented nullability.
- Removed redundant setting of the container while reading arches from the map.
- Fixed broken remove().
- File when saving a map must not be null.
- Fixed broken addFirst() / addLast().
- Removed More handling from CMapFileDecode in daieditor.
- Removed duplicate classes MapEvent and MapListener.
- Remove variable that always is null.
- Removed manually linked lists for containers in ArchObjects.
Download (MB)
Added: 2006-12-19 License: GPL (GNU General Public License) Price:
1041 downloads
Linux+ Live 2006-01 Beta
Linux+ Live is a Fedora-based live DVD. more>>
Linux+ Live DVD is Live type of Linux distribution, based on Aurox Linux. The project is associated with Linux+ magazine and includes applications described in this magazine.
In our distro we are using rpm packages (Fedora Core ones).
Main features:
- usage of UnionFS;
- saving data and configuration on external device;
- support for TV cards (Video4Linux), including apps: KDETV, TVtime, Xawtv, Zapping and MythTV;
- develpment version of Anjuta 2.x with Glade 3.0;
- printing software CUPS, including apps: Mting, Kover, Mptool, HP Device Manager;
- RSS readers (Liferea, Blam);
- binary editor (Bless);
- document viewer (Envince);
- karaoke player (PyKaraoke) with examplary files and CDGtools;
- personal file indexing database (Kat);
- antivirus GUI (ClamTk);
- excelent games (Glest and Globulation2)
- and GRAMPS Genealogy System.
<<lessIn our distro we are using rpm packages (Fedora Core ones).
Main features:
- usage of UnionFS;
- saving data and configuration on external device;
- support for TV cards (Video4Linux), including apps: KDETV, TVtime, Xawtv, Zapping and MythTV;
- develpment version of Anjuta 2.x with Glade 3.0;
- printing software CUPS, including apps: Mting, Kover, Mptool, HP Device Manager;
- RSS readers (Liferea, Blam);
- binary editor (Bless);
- document viewer (Envince);
- karaoke player (PyKaraoke) with examplary files and CDGtools;
- personal file indexing database (Kat);
- antivirus GUI (ClamTk);
- excelent games (Glest and Globulation2)
- and GRAMPS Genealogy System.
Download (2280MB)
Added: 2005-11-06 License: GPL (GNU General Public License) Price:
819 downloads
UFO: Alien Invasion 2.1.1
UFO: Alien Invasion is a 3D UFO-inspired tactical game. more>>
UFO: Alien Invasion is a 3D UFO-inspired tactical game.
UFO: ALIEN INVASION is a strategy game featuring tactical combat against hostile alien forces which are about to infiltrate earth at this very moment. You are in command of a small special unit which has been founded to face the alien strike force.
To be successful on the long run, you will also have to have a research team study the aliens and their technologies in order to learn as much as possible about their technology, their goals and the aliens themselves.
UFO: Alien Invasion is heavily inspired by the X-COM series by Mythos and Microprose. The first game of the series, UFO DEFENSE, became a classic and, in our honest opinion, is one of the best games ever made.
UFO: Alien Invasion is neither a sequel nor a remake of UFO DEFENSE - we simply had the urge to create a similar strategy game, which will hopefully be as entertaining as the original was for the players (and for the developers, of course). Join the IRC-Channel at irc.freenode.org named #ufo:ai and contribute to the developing process.
Gameplay:
The game is turn-based. Well, this might sound somewhat old school now, but trust us: turn-based games are fun!
Each member of your squad has a limited number so called "time units" each round, which are consumed when you order the unit to walk, to fire a weapon or to perform any of the other miscellaneous actions. When all your forces are out of time units, the aliens turn starts. In addition to eliminating as many enemies as possible, your mission is to minimize civilian casualties as well as to acquire parts of the advanced alien technology.
Once youve acquired sufficient samples of the unknown technology, your research labs will be able to reproduce the alien weapons and devices in order to use them against their original creators.
Game Engine:
The game engine is based on a heavily modified version of IDs Quake2 Engine. This doesnt imply that UFO: Alien Invasion is a mod or a total conversion at all! No, UFO: AI is a stand-alone game which doesnt require Quake2 or any similar program to run. Our self-developed game engine is featuring up-to-date OpenGL graphics and special effects, increased texture resolution, hardware accelerated clipping of map layers to toggle between floors, a new animation system for player models, a stunning AI and a few other gimmicks.
Multiplayer support:
You can play UFO: ALIEN INVASION with your friends via LAN or Internet. One player takes the role of the human special squad while the other is in control of the alien invaders. Co-op team play with multiple players on both sides is also supported for up to three teams on each side (6 players total).
Enhancements:
- Implemented sv_roundtimelimit cvar to set the maximum time a team has to finish their round in multiplayer.
- Completely rewritten saving and loading system.
- Finished implementation of Flashbang - now Flashbang will disable enemys reactionfire as well.
- Reintroduced employees renaming again.
- Hire menu and Team Select menu now shows Health bar as well.
- Heavily improved chat subsystem for multiplayer as well as Multiplayer Team Selection menu.
- Improved describing weapons and ammo in UFOpedia and other menus, including displaying firemodes.
- Added multiplayer server password protection.
<<lessUFO: ALIEN INVASION is a strategy game featuring tactical combat against hostile alien forces which are about to infiltrate earth at this very moment. You are in command of a small special unit which has been founded to face the alien strike force.
To be successful on the long run, you will also have to have a research team study the aliens and their technologies in order to learn as much as possible about their technology, their goals and the aliens themselves.
UFO: Alien Invasion is heavily inspired by the X-COM series by Mythos and Microprose. The first game of the series, UFO DEFENSE, became a classic and, in our honest opinion, is one of the best games ever made.
UFO: Alien Invasion is neither a sequel nor a remake of UFO DEFENSE - we simply had the urge to create a similar strategy game, which will hopefully be as entertaining as the original was for the players (and for the developers, of course). Join the IRC-Channel at irc.freenode.org named #ufo:ai and contribute to the developing process.
Gameplay:
The game is turn-based. Well, this might sound somewhat old school now, but trust us: turn-based games are fun!
Each member of your squad has a limited number so called "time units" each round, which are consumed when you order the unit to walk, to fire a weapon or to perform any of the other miscellaneous actions. When all your forces are out of time units, the aliens turn starts. In addition to eliminating as many enemies as possible, your mission is to minimize civilian casualties as well as to acquire parts of the advanced alien technology.
Once youve acquired sufficient samples of the unknown technology, your research labs will be able to reproduce the alien weapons and devices in order to use them against their original creators.
Game Engine:
The game engine is based on a heavily modified version of IDs Quake2 Engine. This doesnt imply that UFO: Alien Invasion is a mod or a total conversion at all! No, UFO: AI is a stand-alone game which doesnt require Quake2 or any similar program to run. Our self-developed game engine is featuring up-to-date OpenGL graphics and special effects, increased texture resolution, hardware accelerated clipping of map layers to toggle between floors, a new animation system for player models, a stunning AI and a few other gimmicks.
Multiplayer support:
You can play UFO: ALIEN INVASION with your friends via LAN or Internet. One player takes the role of the human special squad while the other is in control of the alien invaders. Co-op team play with multiple players on both sides is also supported for up to three teams on each side (6 players total).
Enhancements:
- Implemented sv_roundtimelimit cvar to set the maximum time a team has to finish their round in multiplayer.
- Completely rewritten saving and loading system.
- Finished implementation of Flashbang - now Flashbang will disable enemys reactionfire as well.
- Reintroduced employees renaming again.
- Hire menu and Team Select menu now shows Health bar as well.
- Heavily improved chat subsystem for multiplayer as well as Multiplayer Team Selection menu.
- Improved describing weapons and ammo in UFOpedia and other menus, including displaying firemodes.
- Added multiplayer server password protection.
Download (3.1MB)
Added: 2007-05-02 License: GPL (GNU General Public License) Price:
550 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above alien arena 2006 search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed