Main > Free Download Search >

Free wolfenstein return to castle software for linux

wolfenstein return to castle

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1965
Wolfenstein: Enemy Territory 2.60b

Wolfenstein: Enemy Territory 2.60b


Wolfenstein: Enemy Territory is a Multiplayer Online First Person Shooter. more>>
Wolfenstein: Enemy Territory is a Multiplayer Online First Person Shooter. Wolfenstein: Enemy Territory is a team game; you will win or fall along with your comrades. The only way to complete the objectives that lead to victory is by cooperation, with each player covering their teammates and using their class special abilities in concert with the others.

Featuring multiplayer support for as many as 64 players, Wolfenstein: Enemy Territory challenges gamers to the ultimate test of teamwork and strategy. Each of the five character classes is critical to a teams ultimate victory or defeat on the battlefield. The Covert Operative class allows players to steal uniforms, perform reconnaissance and gain access to enemy positions. While, the Engineer allows the Axis and Allied teams to lay and diffuse mines as well as build battlefield bridges, towers, forward command bases and other improvements in the midst of combat to gain advantages for their team.

Wolfenstein: Enemy Territory further online players the option to slug it out in the intense Team Last-Man-Standing game mode, where squad-mates cooperate to ensure their team has the last surviving man on the battlefield. With new game modes, character classes, weaponry, and added tactical skills, Wolfenstein: Enemy Territory will keep gamers in the trenches for hours.

<<less
Download (4.0MB)
Added: 2006-05-09 License: Freeware Price:
895 downloads
Wolfenstein: Enemy Territory Map Packs

Wolfenstein: Enemy Territory Map Packs


Wolfenstein: Enemy Territory is a Multiplayer Online First Person Shooter. more>>
Wolfenstein: Enemy Territory is a Multiplayer Online First Person Shooter. Wolfenstein: Enemy Territory is a team game; you will win or fall along with your comrades. The only way to complete the objectives that lead to victory is by cooperation, with each player covering their teammates and using their class special abilities in concert with the others.

Featuring multiplayer support for as many as 64 players, Wolfenstein: Enemy Territory challenges gamers to the ultimate test of teamwork and strategy. Each of the five character classes is critical to a teams ultimate victory or defeat on the battlefield. The Covert Operative class allows players to steal uniforms, perform reconnaissance and gain access to enemy positions. While, the Engineer allows the Axis and Allied teams to lay and diffuse mines as well as build battlefield bridges, towers, forward command bases and other improvements in the midst of combat to gain advantages for their team.

Wolfenstein: Enemy Territory further online players the option to slug it out in the intense Team Last-Man-Standing game mode, where squad-mates cooperate to ensure their team has the last surviving man on the battlefield. With new game modes, character classes, weaponry, and added tactical skills, Wolfenstein: Enemy Territory will keep gamers in the trenches for hours.

<<less
Download (110.4MB)
Added: 2006-02-02 License: Freeware Price:
1361 downloads
Wolfenstein: Enemy Territory Update 2.60

Wolfenstein: Enemy Territory Update 2.60


Wolfenstein: Enemy Territory is a Multiplayer Online First Person Shooter. more>>
Wolfenstein: Enemy Territory is a Multiplayer Online First Person Shooter. Wolfenstein: Enemy Territory is a team game; you will win or fall along with your comrades. The only way to complete the objectives that lead to victory is by cooperation, with each player covering their teammates and using their class special abilities in concert with the others.

Featuring multiplayer support for as many as 64 players, Wolfenstein: Enemy Territory challenges gamers to the ultimate test of teamwork and strategy. Each of the five character classes is critical to a teams ultimate victory or defeat on the battlefield. The Covert Operative class allows players to steal uniforms, perform reconnaissance and gain access to enemy positions. While, the Engineer allows the Axis and Allied teams to lay and diffuse mines as well as build battlefield bridges, towers, forward command bases and other improvements in the midst of combat to gain advantages for their team.

Wolfenstein: Enemy Territory further online players the option to slug it out in the intense Team Last-Man-Standing game mode, where squad-mates cooperate to ensure their team has the last surviving man on the battlefield. With new game modes, character classes, weaponry, and added tactical skills, Wolfenstein: Enemy Territory will keep gamers in the trenches for hours.

<<less
Download (8.1MB)
Added: 2006-02-02 License: Freeware Price:
772 downloads
Contextual::Return::Failure 0.1.0

Contextual::Return::Failure 0.1.0


Contextual::Return::Failure is a Perl module with a utility module for Contextual::Return. more>>
Contextual::Return::Failure is a Perl module with a utility module for Contextual::Return.

NOTE

Contains no user serviceable parts. See Contextual::Return instead.

<<less
Download (0.022MB)
Added: 2007-01-17 License: Perl Artistic License Price:
1010 downloads
Contextual::Return 0.1.0

Contextual::Return 0.1.0


Contextual::Return is a Perl module to create context-senstive return values. more>>
Contextual::Return is a Perl module to create context-senstive return values.

SYNOPSIS

use Contextual::Return;
use Carp;

sub foo {
return
SCALAR { thirty-twelve }
BOOL { 1 }
NUM { 7*6 }
STR { forty-two }

LIST { 1,2,3 }

HASHREF { {name => foo, value => 99} }
ARRAYREF { [3,2,1] }

GLOBREF { *STDOUT }
CODEREF { croak "Dont use this result as code!"; }
;
}

# and later...

if (my $foo = foo()) {
for my $count (1..$foo) {
print "$count: $foo is:n"
. " array: @{$foo}n"
. " hash: $foo->{name} => $foo->{value}n"
;
}
print {$foo} $foo->();
}

Usually, when you need to create a subroutine that returns different values in different contexts (list, scalar, or void), you write something like:

sub get_server_status {
my ($server_ID) = @_;

# Acquire server data somehow...
my %server_data = _ascertain_server_status($server_ID);

# Return different components of that data,
# depending on call context...
if (wantarray()) {
return @server_data{ qw(name uptime load users) };
}
if (defined wantarray()) {
return $server_data{load};
}
if (!defined wantarray()) {
carp Useless use of get_server_status() in void context;
return;
}
else {
croak q{Bad context! No biscuit!};
}
}

That works okay, but the code could certainly be more readable. In its simplest usage, this module makes that code more readable by providing three subroutines--LIST(), SCALAR(), VOID()--that are true only when the current subroutine is called in the corresponding context:

use Contextual::Return;

sub get_server_status {
my ($server_ID) = @_;

# Acquire server data somehow...
my %server_data = _ascertain_server_status($server_ID);

# Return different components of that data
# depending on call context...
if (LIST) { return @server_data{ qw(name uptime load users) } }
if (SCALAR) { return $server_data{load} }
if (VOID) { print "$server_data{load}n" }
else { croak q{Bad context! No biscuit!} }
}

Contextual returns

Those three subroutines can also be used in another way: as labels on a series of contextual return blocks (collectively known as a context sequence). When a context sequence is returned, it automatically selects the appropriate contextual return block for the calling context. So the previous example could be written even more cleanly as:

use Contextual::Return;

sub get_server_status {
my ($server_ID) = @_;

# Acquire server data somehow...
my %server_data = _ascertain_server_status($server_ID);

# Return different components of that data
# depending on call context...
return (
LIST { return @server_data{ qw(name uptime load users) } }
SCALAR { return $server_data{load} }
VOID { print "$server_data{load}n" }
DEFAULT { croak q{Bad context! No biscuit!} }
);
}

The context sequence automatically selects the appropriate block for each call context.

<<less
Download (0.022MB)
Added: 2007-01-18 License: Perl Artistic License Price:
1009 downloads
Holotzs Castle 1.3.10

Holotzs Castle 1.3.10


Holotzs Castle is an awesome platform game. more>>
Holotzs Castle is an awesome platform game.

A great mistery is hidden beyond the walls of Holotzs Castle. Will you be able to help Ybelle and Ludar to escape alive from the castle?

Test your dexterity with this tremendously exciting platform game!

<<less
Download (3.4MB)
Added: 2007-07-07 License: GPL (GNU General Public License) Price:
841 downloads
The Castle 0.7.0

The Castle 0.7.0


The Castle is a first-person shooter (FPS) style game in a dark fantasy setting. more>>
The Castle is a first-person shooter (FPS) style game in a dark fantasy setting. Your main weapon is a sword, so the fight is mostly short-range. 3 main levels included, packed with creatures, items and sounds.

Also a bonus level, from a well-known 3D game, will be available to you from "New Game" menu once you finish the main game (you can also switch to this level from the debug menu, if youre impatient).

<<less
Download (37MB)
Added: 2007-06-15 License: GPL (GNU General Public License) Price:
862 downloads
Return-RST 1.1

Return-RST 1.1


Return-RST is a firewalling tool for Linux 2.2.xx systems using IPCHAINS. more>>
Return-RST is a firewalling tool for Linux 2.2.xx systems using IPCHAINS. It uses the netlink device to capture packets and sends TCP RST packets in response to TCP connection requests.

Normal IPCHAINS only allows you to drop packets, or reject packets with an ICMP error message. With Return-RST, you can make it look like there is no server listening, rather than giving away that theyre being filtered to the attacker.

Return-RST was written to overcome the lack of an ipchains policy that can return a RESET packet when denying a TCP connection. The DENY policy just drops the packet, and the REJECT policy sends back an ICMP message. Either policy will pull an attacker off to the fact theyre being filtered.

On the other hand, an RST in response to a TCP SYN packet is what happens when there is no server listening on a port - this program allows you to return this error, so attackers will think that there is no server available.
<<less
Download (0.013MB)
Added: 2006-07-13 License: GPL (GNU General Public License) Price:
1199 downloads
Legion of the Bouncy Castle Java Cryptography API 1.37

Legion of the Bouncy Castle Java Cryptography API 1.37


The Legion of the Bouncy Castle Java Cryptography API provides a lightweight cryptography API in Java. more>>
The Legion of the Bouncy Castle Java Cryptography API provides a lightweight cryptography API in Java. A provider for the JCE and JCA, a clean-room implementation of the JCE 1.2.1, generators for Version 1 and Version 3 X.509 certificates, generators for Version 2 X.509 attribute certificates, PKCS12 support, and APIs for dealing with S/MIME, CMS, OCSP, TSP, and OpenPGP. Versions are provided for the J2ME, and JDK 1.0-1.5.
Main features:
- A lightweight cryptography API in Java.
- A provider for the JCE and JCA.
- A clean room implementation of the JCE 1.2.1.
- A library for reading and writing encoded ASN.1 objects.
- Generators for Version 1 and Version 3 X.509 certificates, Version 2 CRLs, and PKCS12 files.
- Generators for Version 2 X.509 attribute certificates.
- Generators/Processors for S/MIME and CMS (PKCS7).
- Generators/Processors for OCSP (RFC 2560).
- Generators/Processors for TSP (RFC 3161).
- Generators/Processors for OpenPGP (RFC 2440).
- A signed jar version suitable for JDK 1.4/1.5 and the Sun JCE.
<<less
Download (21.2MB)
Added: 2007-06-15 License: Freely Distributable Price:
532 downloads
Intruder Alert 1.0

Intruder Alert 1.0


Intruder Alert is an arcade maze game. more>>
Intruder Alert is an arcade maze game.

Intruder Alert is a free top-down 2D maze arcade game written in FreePascal using the SDL library for multimedia output.

Its a hobby project and was inspired by 80s classics like wolfenstein 2d and alien breed.

<<less
Download (3.5MB)
Added: 2007-04-30 License: GPL (GNU General Public License) Price:
911 downloads
Serbert 0.1.0

Serbert 0.1.0


Serbert is a serial bit error rate tester. more>>
Serbert is a command line utility which performs a Bit Error Rate Test (BERT) on serial lines for Unix and its variants. It does this by transmitting bytes, and waiting for their uncorrupted return.

Serbert, however, does not provide a true Bit Error Rate Test (BERT), as it does not check the individual bits returned. It uses the operating systems standard serial interface, which provides the status of each returned byte.
<<less
Download (0.10MB)
Added: 2005-04-08 License: GPL (GNU General Public License) Price:
1661 downloads
Underworld Online 7.7.5

Underworld Online 7.7.5


Underworld Online is a Fantasy MMORPG - Combats, Magic, Weapons, Spells, Guilds, Buildings. more>>
Underworld Online is a Fantasy MMORPG - Combats, Magic, Weapons, Spells, Guilds, Buildings.

A castle is being taken over by an army of monsters. In this graphical fantasy MMORPG you can either fight and try to save the reign, or you can join the evil forces. Combats, Magic, Weapons, Spells, Guilds, Buildings, Buy/Sell.

You play immediately with your browser, no download nor registration required. Has music and sound. Invite your friends to help you!

Introduction:

During the past centuries, the Reign of Graiel has known a prosperous life of richness and well-being.

Months ago, the King died in mysterious circumstances and his daughter, Asia the princess, run into severe illness. Things turned dramatically worse when the princess, hanging around the castle dungeons, found some ancient magic books, filled with forgotten formulas written with human blood.

Rumours around say that Asia, excited by her curiosity, read with loud voice a few phrases from that evil books, capable of awakening the lost souls from the Land of the Dead. Magic words pronounced by her have would have opened a dimensional breach, letting obscure creatures lurking in the never ending Darkness to reach out to our World.

Now, the Castle of Graiel is totally under control of evil creatures with enormous power. Asia the princess lives locked in her bedroom, captured by the monsters which are now planning their raise and conquer of the whole Reign.
Many brave knights have dead trying to defeat the creatures.

Take this challenge, stranger, save us, and become a King!
<<less
Download (0.053MB)
Added: 2006-12-27 License: GPL (GNU General Public License) Price:
1039 downloads
Ogrian Carpet 0.9

Ogrian Carpet 0.9


Ogrian Carpet is a 3D fantasy action/strategy game. more>>
Ogrian Carpet project is a 3D fantasy action/strategy game.
Ogrian Carpet is an outdoor first person shooter game with real time strategy elements, inspired by the game Magic Carpet.
It uses Ogre3D as the renderer and allows you to fly around an island casting spells, summoning monsters, collecting mana, and building castles.
The object of the game is to build a castle, collect mana, and destroy your enemies. To build a castle, select a location, look at the ground, and cast the build spell. Note, you cannot build castles very close to water or other castles.
Your castle starts out small, with only one turret. As more mana is added to your castle, it will gain more turrets. Each turret adds another crane to your castles defense and another spell to your arsenal.
Basically, the game consists of fighting for control of mana. Whenever you encounter another wizard, shoot them with fireballs. If you hit them enough, they will "die" and be sent back to their castle. You are then free to claim all the mana in the area for yourself.
Once all the mana has been claimed, attack your enemys castle to get mana out of it so you can claim it for yourself. Once you enemys castle is out of mana, you can eliminate it by killing its heart. When all of your opponents have been banished, youve won.
Enhancements:
- AI bot player for skirmish
- things can now be loaded from an image, rather then randomly
- option for old randomized maps
- trees can now always bee seen
- made castle mana drops aggregate more
- loosened the restrictions on summoning
- made the config menu better
- added victory conditions to skirmish: kill all enemy towers/castles
- made ticks and gnomes stay in the formation you put them in
- made monsters and towers drop less then their cost when they have no wizard
- made mana float higher
- made towers cheaper (50)
- made sentinels drop much less (3)
- changed speed behavior on lava maps
- added victory music
- new music
<<less
Download (20.0MB)
Added: 2006-12-11 License: GPL (GNU General Public License) Price:
1049 downloads
WWW::Yahoo::KeywordExtractor 0.04

WWW::Yahoo::KeywordExtractor 0.04


WWW::Yahoo::KeywordExtractor is a Perl module to get keywords from summary text via the Yahoo API. more>>
WWW::Yahoo::KeywordExtractor is a Perl module to get keywords from summary text via the Yahoo API.

SYNOPSIS

This module will submit content to the Yahoo keyword extractor API to return a list of relevant keywords.

use WWW::Yahoo::KeywordExtractor;
my $yke = WWW::Yahoo::KeywordExtractor->new();
my $keywords = $yke->extract(content => My wife and I love to cook together.

Carolyn surprises me with new things to love about her everyday.);

print join q{}. Keyword 1: , $keywords->[0], "n";

SUBROUTINES/METHOD

new

The new subroutine creates and returns a WWW:Yahoo::KeywordExtractor object.

extract

This method will return a list of keywords based on sample data. It will die if there is no content arg given.

<<less
Download (0.004MB)
Added: 2006-12-07 License: Perl Artistic License Price:
1051 downloads
YAWn! Linux 0.1

YAWn! Linux 0.1


YAWn! Linux is a client for the YAWn! Wolfenstein player tracking service. more>>
YAWn! Linux project is a client for the YAWn! Wolfenstein player tracking service.

YAWn! Linux is a client for the YAWn! service, which keeps track of the names used by players of "Return to Castle Wolfenstein".

Players are tracked by their unique PunkBuster GUID, and thus players cannot hide behind a fake name to play recklessly or purposely misbehave. YAWn! adds a console command to "Return to Castle Wolfenstein" that lists all players like PunkBuster does.

However, this command also displays the other names that the player has used before, or (for players that use YAWn! themselves) the name and taunt-message that the player chose at registration.

<<less
Download (0.84MB)
Added: 2006-12-12 License: Freeware Price:
1052 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5