fantasy games
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2125
Java Games 1.0
Java Games is a collection of simple games that are compiled into Java applets and meant to be played online in a Web browser. more>>
Java Games project is a collection of simple games that are compiled into Java applets and meant to be played online in a Web browser.
Currently the collection contains four games: XO World (similar to tic-tac-toe, but with lines of 5 on a 10x10 board); 100 Mack (guess the random combination of 4 images out of a set of six); Memory (flip 2 plates at a time to find matching pairs); and Tetris.
<<lessCurrently the collection contains four games: XO World (similar to tic-tac-toe, but with lines of 5 on a 10x10 board); 100 Mack (guess the random combination of 4 images out of a set of six); Memory (flip 2 plates at a time to find matching pairs); and Tetris.
Download (0.13MB)
Added: 2007-02-20 License: GPL (GNU General Public License) Price:
985 downloads
SMF Fantasy NASCAR 0.2
SMF Fantasy NASCAR is a plugin for the Simple Machines.org forum software. more>>
SMF Fantasy NASCAR is a plugin for the Simple Machines.org forum software. The plugin installs using the SMF package manager.
You can select current races, manager drivers, and allow your SMF users to select their top 10 drivers for each race.
Simple Machines Forum is a forum software package based off the old yabbSE system.
<<lessYou can select current races, manager drivers, and allow your SMF users to select their top 10 drivers for each race.
Simple Machines Forum is a forum software package based off the old yabbSE system.
Download (0.009MB)
Added: 2006-01-31 License: GPL (GNU General Public License) Price:
1367 downloads
Fantasy Battlefields 0.8.6
Fantasy Battlefields is a free turn-based tactical battle game located in a fantasy universe. more>>
Fantasy Battlefields software is a free turn-based tactical battle game located in a fantasy universe. Each player leads an army to fight against the armies of virtual enemies (artificial intelligence) or against other players on a network or on the same computer.
Each army is composed of a great number of fighters having their specific characteristics (Strength, Movement ...) and is organized according to a determined hierarchy (commands, units, individuals ...) Developped in Java, this game is a multi-platform game (Linux, Mac, Windows or others).
<<lessEach army is composed of a great number of fighters having their specific characteristics (Strength, Movement ...) and is organized according to a determined hierarchy (commands, units, individuals ...) Developped in Java, this game is a multi-platform game (Linux, Mac, Windows or others).
Download (25.2MB)
Added: 2006-12-07 License: Freeware Price:
1051 downloads
Fantasy Chess v2 Revision 11
Fantasy Chess is a chess game environment with a game server. more>>
Fantasy Chess is a chess game environment with a game server, GTK GUI, private and public AI, and a lot of libraries to help developers.
<<less Download (1.7MB)
Added: 2006-06-16 License: GPL (GNU General Public License) Price:
1234 downloads
Davids Perl Games 0.1.1
Davids Perl Games project is a collection of ASCII graphics arcade style games written in Perl. more>>
Davids Perl Games project is a collection of ASCII graphics arcade style games written in Perl.
These games are recreations of simple ASCII graphics games originally written in BASIC.
They are ideal for use as Perl programming tutorials. Some of the first few games are PerlBlaster (defend your planet from invading aliens), PerlRacer (steer your car through the twisting passages), and PerlArena (eliminate the mutant hordes).
<<lessThese games are recreations of simple ASCII graphics games originally written in BASIC.
They are ideal for use as Perl programming tutorials. Some of the first few games are PerlBlaster (defend your planet from invading aliens), PerlRacer (steer your car through the twisting passages), and PerlArena (eliminate the mutant hordes).
Download (0.063MB)
Added: 2006-11-16 License: GPL (GNU General Public License) Price:
1076 downloads
Wolvix Games 1.0.4
Wolvix Games is a new edition of the Wolvix live CD, featuring over 50 games. more>>
Wolvix is a GNU/Linux LiveCD built from SLAX. Wolvix is a desktop oriented distribution made to fit the needs from regular to advanced desktop users.
Along with the applications youll get some of the best free Linux games. (No 3D gfx card required).
Games Edition features over 50 games in different categories, four emulators and quite a few desktop applications.
You wont find World of Warcraft or Half-Life 2 on the CD, but Ive tried to include some of the finest free Linux games and I think there should be a game or two for most people, Ive even added dopewars for your grandma.
None of the games require 3D drivers, so you should be able to play most games on any graphics card
<<lessAlong with the applications youll get some of the best free Linux games. (No 3D gfx card required).
Games Edition features over 50 games in different categories, four emulators and quite a few desktop applications.
You wont find World of Warcraft or Half-Life 2 on the CD, but Ive tried to include some of the finest free Linux games and I think there should be a game or two for most people, Ive even added dopewars for your grandma.
None of the games require 3D drivers, so you should be able to play most games on any graphics card
Download (MB)
Added: 2005-12-12 License: GPL (GNU General Public License) Price:
1428 downloads
Games::3D 0.09
Games::3D is a package containing an object system for (not only) 3D games. more>>
Games::3D is a package containing an object system for (not only) 3D games.
SYNOPSIS
use Games::3D::World;
my $world = Games::3D::World->new();
$world->save_to_file( $filename );
my $loaded = Games::3D::world->load_from_file( $filename );
my $thing1 = $world->add ( Games::3D::Thingy->new( ... ) );
my $thing2 = $world->add ( Games::3D::Thingy->new( ... ) );
$world->link($thing1, $thing2);
Games::3D::World provides you with a container class that will contain every object in your game object system. This are primarily objects that have states, change these states and need to announce the states to other objects.
The Games::3D::World container also enables you to save and restore snapshots of your objects system.
Basic things that you object system contains are derived from a class called Games::3D::Thingy. These can represent physical objects (buttons, levers, doors, lights etc) as well as virtual objects (trigger, sensors, links, markers, sound sources etc).
You can link Thingys together, either directly or via Games::3D::Links. The links have some more features than direct linking, which are explained below.
This package also provides you with Games::3D::Sensor, a class for objects that sense state changes and act upon them. Or not, depending on the sensor. Sensors are primarily used to watch for certain conditions and then act when they are met. Examples are the death of an object, values that go below a certain threshold etc.
State changes are transported in the object system with signals.
<<lessSYNOPSIS
use Games::3D::World;
my $world = Games::3D::World->new();
$world->save_to_file( $filename );
my $loaded = Games::3D::world->load_from_file( $filename );
my $thing1 = $world->add ( Games::3D::Thingy->new( ... ) );
my $thing2 = $world->add ( Games::3D::Thingy->new( ... ) );
$world->link($thing1, $thing2);
Games::3D::World provides you with a container class that will contain every object in your game object system. This are primarily objects that have states, change these states and need to announce the states to other objects.
The Games::3D::World container also enables you to save and restore snapshots of your objects system.
Basic things that you object system contains are derived from a class called Games::3D::Thingy. These can represent physical objects (buttons, levers, doors, lights etc) as well as virtual objects (trigger, sensors, links, markers, sound sources etc).
You can link Thingys together, either directly or via Games::3D::Links. The links have some more features than direct linking, which are explained below.
This package also provides you with Games::3D::Sensor, a class for objects that sense state changes and act upon them. Or not, depending on the sensor. Sensors are primarily used to watch for certain conditions and then act when they are met. Examples are the death of an object, values that go below a certain threshold etc.
State changes are transported in the object system with signals.
Download (0.032MB)
Added: 2006-10-02 License: Perl Artistic License Price:
1124 downloads
Final Fantasy VI Save State Editor 1.0
Final Fantasy VI Save State Editor is an editor for Final Fantasy VI characters. more>>
Final Fantasy VI Save State Editor project is an editor for Final Fantasy VI characters.
Final Fantasy VI Save State Editor is a tool for editing characters in Final Fantasy VI (or III in the USA) saved games. It makes it possible to increase skills, learn spells, gain weapons, and more using an easy to use GUI.
This
program does not edit battery based saved games, but complete game save states
generated by Snes9x and zsnes.
USAGE:
Open the program and select File->Open. Select a game save on your filesystem,
and then edit away! Use File->Save when done. Enjoy!
<<lessFinal Fantasy VI Save State Editor is a tool for editing characters in Final Fantasy VI (or III in the USA) saved games. It makes it possible to increase skills, learn spells, gain weapons, and more using an easy to use GUI.
This
program does not edit battery based saved games, but complete game save states
generated by Snes9x and zsnes.
USAGE:
Open the program and select File->Open. Select a game save on your filesystem,
and then edit away! Use File->Save when done. Enjoy!
Download (0.10MB)
Added: 2007-01-08 License: GPL (GNU General Public License) Price:
669 downloads
Unmass 0.9
Unmass program can extract files from those big game files, which are in fact archives. more>>
Unmass program can extract files from those big game files, which are in fact archives. Most of the extracted files can be viewed through any graphic viewer, but some are in special game formats, which can be usually viewed through Biturn (above).
Here is a list of supported games:
- Crismon Land
- Baldurs Gate 2
- Civilization 4
- Doom (WADs)
- Duke Nukem 3D (not working yet)
- Dune 2
- Etherlords 2 (no data viewers available though)
- Final Fantasy 7
- Final Fantasy 8
- Flashpoint
- Knights of Xentar (no data viewers available though)
- Metal Gear Solid (DARs)
- Moorhuhn 2 & 3
- Megaman Legends
- Oni
- Operation Flashpoint
- Princess Maker 2 (no data viewers available though)
- Quake 1
- RollCage (no data viewers available though)
- Swine
- Unreal Tournament umods
- Virtua Fighter bitmaps
- MEA exes
- some economy file format
<<lessHere is a list of supported games:
- Crismon Land
- Baldurs Gate 2
- Civilization 4
- Doom (WADs)
- Duke Nukem 3D (not working yet)
- Dune 2
- Etherlords 2 (no data viewers available though)
- Final Fantasy 7
- Final Fantasy 8
- Flashpoint
- Knights of Xentar (no data viewers available though)
- Metal Gear Solid (DARs)
- Moorhuhn 2 & 3
- Megaman Legends
- Oni
- Operation Flashpoint
- Princess Maker 2 (no data viewers available though)
- Quake 1
- RollCage (no data viewers available though)
- Swine
- Unreal Tournament umods
- Virtua Fighter bitmaps
- MEA exes
- some economy file format
Download (0.38MB)
Added: 2007-07-27 License: GPL (GNU General Public License) Price:
821 downloads
Fearann Muin 0.2
Fearann Muin is an online role-playing game in a medieval fantasy world. more>>
Fearann Muin is an online role-playing game in a medieval fantasy world.
Fearann Muin is an online role-playing game (MMORPG without the Massive part) with a medieval-fantasy setting and standard rule sets. It will try to be focused on community and roleplaying instead of other aspects.
Main features:
Universe
- The setting of the game is Medieval Fantasy, similar to many other games (computer games or tabletop), but not copying exactly any system in particular. We plan to introduce non-standard creatures and environments more often as the development goes on.
- The initial races for playable characters are Dwarves, Elves and Humans; we plan to add new races later. While this doesnt sound original it has some benefits, like people knowing the race traits, so they can start playing right away without pondering which race is the best suited to their taste (as it happens when all the races in a game are original, unknown to you).
- The Rule Set is the standard for many games, with well-known classes, types of magic, spells, bonus and malus for each race, etc. We would prefer to not have some of the restrictions of the rule set (in example, we would prefer to have a class-less system); but as with the races, this allows us to work with a known standard that many people already know, so its easier to learn for most people, and its known to work (we chose to not make modifications at the moment, to not end up with an unbalanced, broken system).
- Well try to make of the environment a real, living world, when possible; with different behaviors for different creatures, the environment changing a bit with seasons, and so forth.
Community and Roleplay
- People will be able to sell items or resources that they craft and harvest; and maybe also sell other services, like training people with lower levels of knowledge, or being paid by performing tasks. This will provide a full range of social relationships based on economy, that will make the players to directly affect the rest of the world with every action; as well as provide the means to get a complex society running.
- There will be Player Guilds to allow people to form groups of friends or whatever interests they want; and there will be also some kind of Professional Guilds (the name is not decided yet, it might be even Universities or Schools) that will allow players to train and be part of that Institution, which will play a powerful role in the game.
Combat
- PvP is restricted, it will be allowed in the form of Duels, where one player challenges another one, and this one decides whether to engage in combat or not. There might be some special areas (arenas) where this will be allowed without the player having to agree to fight, or maybe complete maps where PvP is unrestricted, we havent decided that yet.
- Fighting with creatures and NPCs is usually allowed (althought it might not always be a wise decision :) ), and were designing it at the moment, probably itll will be present in the next release.
- Guild vs. Guild or similar advanced forms of combat are not yet planned, since we need a significant amount of things working before we get to that, and we have to learn from experience before being able to implement them. This doesnt mean that we dont want to have it, its just that were not ready to implement it in the next few releases yet.
<<lessFearann Muin is an online role-playing game (MMORPG without the Massive part) with a medieval-fantasy setting and standard rule sets. It will try to be focused on community and roleplaying instead of other aspects.
Main features:
Universe
- The setting of the game is Medieval Fantasy, similar to many other games (computer games or tabletop), but not copying exactly any system in particular. We plan to introduce non-standard creatures and environments more often as the development goes on.
- The initial races for playable characters are Dwarves, Elves and Humans; we plan to add new races later. While this doesnt sound original it has some benefits, like people knowing the race traits, so they can start playing right away without pondering which race is the best suited to their taste (as it happens when all the races in a game are original, unknown to you).
- The Rule Set is the standard for many games, with well-known classes, types of magic, spells, bonus and malus for each race, etc. We would prefer to not have some of the restrictions of the rule set (in example, we would prefer to have a class-less system); but as with the races, this allows us to work with a known standard that many people already know, so its easier to learn for most people, and its known to work (we chose to not make modifications at the moment, to not end up with an unbalanced, broken system).
- Well try to make of the environment a real, living world, when possible; with different behaviors for different creatures, the environment changing a bit with seasons, and so forth.
Community and Roleplay
- People will be able to sell items or resources that they craft and harvest; and maybe also sell other services, like training people with lower levels of knowledge, or being paid by performing tasks. This will provide a full range of social relationships based on economy, that will make the players to directly affect the rest of the world with every action; as well as provide the means to get a complex society running.
- There will be Player Guilds to allow people to form groups of friends or whatever interests they want; and there will be also some kind of Professional Guilds (the name is not decided yet, it might be even Universities or Schools) that will allow players to train and be part of that Institution, which will play a powerful role in the game.
Combat
- PvP is restricted, it will be allowed in the form of Duels, where one player challenges another one, and this one decides whether to engage in combat or not. There might be some special areas (arenas) where this will be allowed without the player having to agree to fight, or maybe complete maps where PvP is unrestricted, we havent decided that yet.
- Fighting with creatures and NPCs is usually allowed (althought it might not always be a wise decision :) ), and were designing it at the moment, probably itll will be present in the next release.
- Guild vs. Guild or similar advanced forms of combat are not yet planned, since we need a significant amount of things working before we get to that, and we have to learn from experience before being able to implement them. This doesnt mean that we dont want to have it, its just that were not ready to implement it in the next few releases yet.
Download (1.4MB)
Added: 2006-11-30 License: GPL (GNU General Public License) Price:
1058 downloads
GameScroll 0.7.1
GameScroll is a system for playing and writing interactive fiction. more>>
GameScroll is a system for playing and writing interactive fiction like Choose Your Own Adventure or Fighting Fantasy gamebooks... But instead of flipping pages, GameScroll runs them as an impartial gamemaster!
Adventures can remember where youve been and what youve done, unlike web-based "choose your own adventure" games!
<<lessAdventures can remember where youve been and what youve done, unlike web-based "choose your own adventure" games!
Download (0.30MB)
Added: 2006-08-24 License: GPL (GNU General Public License) Price:
1156 downloads
Games::Alak 0.18
Games::Alak is a simple game-tree implementation of a gomoku-like game. more>>
Games::Alak is a simple game-tree implementation of a gomoku-like game.
SYNOPSIS
% perl -MGames::Alak -e Games::Alak::play
...Or just run Alak.pm as if it were a program...
...Program responds with output, and a prompt:
Lookahead set to 3. I am X, you are O.
Enter h for help
X moves from 1 to 5, yielding .xxxx..oooo
alak>
...and now you enter the commands to play.
This module implements a simple game-tree system for the computer to play against the user in a game of Alak. You can just play the game for fun; or you can use this module as a starting point for understanding game trees (and implementing smarter strategy -- the modules current logic is fairly simple-minded), particularly after reading my Perl Journal #18 article on trees, which discusses this modules implementation of game trees as an example of general tree-shaped data structures.
<<lessSYNOPSIS
% perl -MGames::Alak -e Games::Alak::play
...Or just run Alak.pm as if it were a program...
...Program responds with output, and a prompt:
Lookahead set to 3. I am X, you are O.
Enter h for help
X moves from 1 to 5, yielding .xxxx..oooo
alak>
...and now you enter the commands to play.
This module implements a simple game-tree system for the computer to play against the user in a game of Alak. You can just play the game for fun; or you can use this module as a starting point for understanding game trees (and implementing smarter strategy -- the modules current logic is fairly simple-minded), particularly after reading my Perl Journal #18 article on trees, which discusses this modules implementation of game trees as an example of general tree-shaped data structures.
Download (0.009MB)
Added: 2007-01-02 License: Perl Artistic License Price:
1027 downloads
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
<<lessOgrian 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
Download (20.0MB)
Added: 2006-12-11 License: GPL (GNU General Public License) Price:
1049 downloads
Games::Score 0.02
Games::Score is a Perl module to keep track of score in games . more>>
Games::Score is a Perl module to keep track of score in games .
SYNOPSIS
use Games::Score;
# these three values are the default ones, by the way
Games::Score->default_score(0);
Games::Score->default_step(1);
Games::Score->step_method(inc);
# start two players
my $player1 = Games::Score->new();
my $player2 = Games::Score->new();
# set a winning condition
Games::Score->victory_is( sub { $_[0] >= 20 } );
# and something to do if it is achieved
Games::Score->on_victory_do( sub { print "Won!" } );
# give points to the players
$player1->add(2);
$player2->step();
# look at section FUNCTIONS for more functionalities, such as
Games::Score->invalidate_if( sub { $_[0] > 20 } );
Games::Score can be use to keep track of several players points in a game, regardless of the starting amount of points, winning and/or losing conditions, etc.
It provides several useful methods so that the user doesnt have to keep testing values to see if theyre valid or if the player condition has changed.
<<lessSYNOPSIS
use Games::Score;
# these three values are the default ones, by the way
Games::Score->default_score(0);
Games::Score->default_step(1);
Games::Score->step_method(inc);
# start two players
my $player1 = Games::Score->new();
my $player2 = Games::Score->new();
# set a winning condition
Games::Score->victory_is( sub { $_[0] >= 20 } );
# and something to do if it is achieved
Games::Score->on_victory_do( sub { print "Won!" } );
# give points to the players
$player1->add(2);
$player2->step();
# look at section FUNCTIONS for more functionalities, such as
Games::Score->invalidate_if( sub { $_[0] > 20 } );
Games::Score can be use to keep track of several players points in a game, regardless of the starting amount of points, winning and/or losing conditions, etc.
It provides several useful methods so that the user doesnt have to keep testing values to see if theyre valid or if the player condition has changed.
Download (0.007MB)
Added: 2006-12-27 License: Perl Artistic License Price:
1031 downloads
Harem Games Slot Machine 3.13
Harem Games Slot Machine es un juego gratis de la popular tragaperras de casino donde juegas contra guapas modelos. El objetivo del juego Slot Machine... more>> <<less
Download (525KB)
Added: 2009-04-06 License: Freeware Price: Free
206 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 fantasy games 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