Main > Free Download Search >

Free message board games software for linux

message board games

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 4484
Acquire Board Game 0.4

Acquire Board Game 0.4


Acquire is a computer version of the classic board game. more>>
Acquire is a computer version of the classic board game.
The goal of the game is to make the most profit by buying stocks in companies that form, merge and grow as tiles are placed on the game board.
This program is a text-based version of the game and should be playable on any system with a C++ compiler.
Enhancements:
- The main improvement of this release is that the bug causing the game to crash at the end was fixed, so you can now see who won.
- There were some other small bugfixes and changes.
<<less
Download (0.022MB)
Added: 2006-10-11 License: GPL (GNU General Public License) Price:
1123 downloads
Quarters Board Game 4.0

Quarters Board Game 4.0


Quarters Board Game is a strategy game for two players. more>>
Quarters Board Game project is a strategy game for two players.

Although its rules are relatively simple, it still offers some of the same opportunities for skill as in chess.

This program was originally conceived in the summer of 1986 during a study of the mini-max algorithm for chess playing computers, and was thus designed to offer some of the same type of strategies.

The game was originally written in BASIC, then ported to Turbo Pascal, then to C, and finally to Java.

The Java version is not necessarily object oriented, since it is a crude port from the C version.

<<less
Download (0.16MB)
Added: 2007-01-15 License: GPL (GNU General Public License) Price:
1013 downloads
Monkey Boards 0.3.8

Monkey Boards 0.3.8


Monkey Boards is a small, fast, and efficient message board systems to enable smaller Web sites to build online communities. more>>
Monkey Boards is a small, fast, and efficient message board systems to enable smaller Web sites to build virtual online communities where users post and reply to messages.

Compared with other projects, this defining purpose Monkey Boards much more clearer and to-the-point.

The project is different from other similar solutions mainly because it uses an SQLite database, whereas the majority currently require a MySQL server to be running somewhere. It will output clean and valid XHTML pages with external CSS stylesheets.

<<less
Download (0.065MB)
Added: 2006-12-03 License: GPL (GNU General Public License) Price:
1056 downloads
BoardGame Tool 0.1.1

BoardGame Tool 0.1.1


BoardGame Tool provides a C++ front-end/Python back-end for running board games. more>>
BoardGame Tool provides a C++ front-end/Python back-end for running board games.
It features an easy and flexible interface to interact with the players and has transparent support for network or AI-controlled games.
Through a clear XML interface, games elements can be specified. Using an easy-to-learn back-end language like Python for rule implementations makes it very easy to implement, adjust, or enhance rules that come with a game.
The same back-end language can be used easily for simple or complex AI implementations.
Main features:
- XML specification with DTD validation for game definition
- Easy-to-learn Python programming for rule implementation
- Integrated and transparent network play
- Network chat with selected players
- Simple interface for programming AI players
- Extensive support for image formats
- Runtime scaling of images, allowing easy application of anything as gamepiece
Games currently implemented:
- Chess
- Go
Enhancements:
- This release includes the data archive with correct licensing information for the Fergus Duniho abstract chess piece set.
<<less
Download (MB)
Added: 2007-04-13 License: GPL (GNU General Public License) Price:
931 downloads
Bazooka Board 2.75

Bazooka Board 2.75


Bazooka Board is a PHP bulletin board that does not require MySQL. more>>
Bazooka Board is a PHP bulletin board that does not require MySQL. It uses nothing just a single text-file on your web server for its data storage.
Bazooka Board was created to help serve those who have PHP webspace, but no MySQL database support. Its goal is to be extreemly simple to setup, and easy enough that even computer-illiterate people can use it.
Main features:
- Unlimited Topics
- Unlimited Messages
- Topic Pagination
- Search Topics w/ highlighted search results
- Automatically hyperlinked URLs
- Message Icons
- One (1) Administrative Account w/ Edit & Delete privileges
<<less
Download (0.027MB)
Added: 2006-06-26 License: GPL (GNU General Public License) Price:
1232 downloads
gewee game 3.6

gewee game 3.6


gewee game is a Go-like board game with next generation graphics. more>>
gewee game is a Go-like board game with "next generation" graphics.

This is a game between a human ("player") and a computer ("opponent"). The players objective is to accumulate as many points as possible. When the player wins a game, a point is added to his/her score. When the player loses a game, a point is subtracted from his/her score. The competitor with the most pieces on the board at the end of the game is the winner. A game is finished when a competitor forfeits, or has no valid empty square to place a piece on. The opponent is granted additional moves at the start of a game based on the players score.

Each competitor has a distinct set of pieces of the same shape and color. The competitors take turns placing one piece on an empty square on the board. A piece or group of pieces that has no empty square adjacent to it is removed from the board.

<<less
Download (0.018MB)
Added: 2007-05-21 License: Freeware Price:
886 downloads
KBoard 0.9b

KBoard 0.9b


KBoard is a generic game interface for two player turn based board games. more>>
KBoard is a generic game interface for two player turn based board games, and currently supports a bunch of chess variants, connect four, reversi and chain reaction (and more will be added). Kboard also supports network chess play on ics servers, as well as game observation and examination.
We have implemented a quite powerful generic animation engine, and a highly customizable theme specification (based on lua), that can just load everything and create shadows (default theme is SVG, skulls theme too).
At the moment the released code is only based on Qt4, so it should be quite portable, but we will make use of Kde when available in future releases.
Generic game support:
Many board games can be easily implemented using the extensible KBoard infrastructure. So far, the following board games are implemented:
- Chess
- Crazyhouse
- Atomic
- Monster Chess (King and four pawns)
- Progressive Chess
- Reversi
- Connect Four
- Chain Reaction
<<less
Download (1.4MB)
Added: 2006-09-25 License: GPL (GNU General Public License) Price:
1125 downloads
Chess::Game 0.6.0

Chess::Game 0.6.0


Chess::Game is a class to record and validate the moves of a game of chess. more>>
Chess::Game is a class to record and validate the moves of a game of chess.

SYNOPSIS

use Chess::Game;

$game = Chess::Game->new();
$clone = $game->clone();
$move = $game->make_move("e2", "e4");
$move_c = $clone->make_move("e2", "e4");
$true = ($move->get_piece() ne $move_c->get_piece());
$move = $game->delete_move();
...
while (!defined($result = $game->result())) {
# get a move
$move = $game->make_move($sq1, $sq2);
if (!defined($move)) {
print $game->get_message();
}
}
if ($result == 1) {
print "White wins!n";
}
elsif ($result == 0) {
print "Draw!n"
}
else {
print "Black wins!n";
}

The Chess module provides a framework for writing chess programs with Perl. This class forms part of that framework, providing move validation for all moves recorded using the Chess::Game class. The Game contains a Chess::Board, 32 Chess::Pieces and a Chess::Game::MoveList that contains a series of Chess::Game::MoveListEntrys that record the exact state of the game as it progresses. Moves can be taken back one-at-a-time to allow for simple movelist manipulation.

<<less
Download (0.021MB)
Added: 2006-12-28 License: Perl Artistic License Price:
1039 downloads
DoSSi Zola 1.0

DoSSi Zola 1.0


DoSSi Zola is a board game under GPL licence, using SDL. more>>
DoSSi Zola is a board game under GPL licence, using SDL. You can play with two players or you can play on your own against the computer.

The goal of the game is quite simple: block your opponent by destroying the fields which surround him without being blocked yourself. Every turn of play, each player must first move to some adjacent field and then destroy a field of his choice. The first player who cannot move anymore loses the game.

<<less
Download (0.90MB)
Added: 2005-08-16 License: GPL (GNU General Public License) Price:
1531 downloads
Invade Earth 2.7.9

Invade Earth 2.7.9


Invade Earth is an open-source implementation of the popular board game Risk 2210 AD. more>>
Invade Earth is an open-source implementation of the popular board game Risk 2210 AD.
Invade Earth includes a map editor, support for variant rules including Classic and Secret Mission modes, and a network play mode.
Main features:
- Multiple rule sets and maps:
- Invade Earth A.D. 2210
- Amoeba Invasion Expansion
- Mars Expansion
- Pantheon Expansion (our version of Risk: Godstorm) (coming soon)
- Classic
- Secret Mission
- Custom rule values
- A versatile Map Editor
- Several built-in AIs (play against the computer)
- Network support (play against your friends)
- A centralized list of open internet games
- Save and load game states, even over a network
- Watch a replay of saved games
<<less
Download (MB)
Added: 2006-08-07 License: GPL (GNU General Public License) Price:
675 downloads
E.V.E. Paradox 1.2

E.V.E. Paradox 1.2


E.V.E. Paradox is a game suite consisting of three games. more>>
E.V.E. Paradox is a game suite consisting of three games. Flick is a turn-based puzzler, Orbit is an arcade puzzler, and Arena is a top-view action game.
The Free Edition of E.V.E. Paradox contains a number of levels and is not otherwise restricted. Enhanced editions are available for purchase with additional levels and features for those who want a little something more. It includes an integrated online chat system. Hardware 3D acceleration is highly recommended.
Enhancements:
- A new game, called Board, was added.
- There are now five games in E.V.E. Paradox.
- New levels were added for Board and existing games.
- Keyboard shortcuts were added to most menus.
- Chat messages are held on Central if youre not around.
- Online high scores and ribbons are now displayed in-game.
- Support for monthly high scores was added.
- stderr/stdout now go to a file by default under Linux.
- Silver editions now emphasize their core game.
- Many bugfixes, stability improvements, optimizations, and bugfixes were made.
<<less
Download (20.7MB)
Added: 2006-10-08 License: Free To Use But Restricted Price:
1111 downloads
Spacehulk 1.5 beta1

Spacehulk 1.5 beta1


Space Hulk is a board game which takes place in the world of Warhammer 40000. more>>
Space Hulk is a great board game of Games Workshop in the world of Warhammer 40000. This is a two player turn-based game where one play the Marine, the other play the alien called Genestealer. If you need more infos on the game, you can get the rulebook or some links on Space Hulk
This video game is a complete conversion of the board game with the 2nd edition rules. Well, I know there is some fans discussion to know whether the 1st or the 2nd edition of the rules is the better. For my part, I only played the 2nd edition, thats the edition this game is based on.
The project is aiming at providing a way to play SpaceHulk on your computer exactly as you could do it with the real board version but with some extra : you can play via network (no need to have two players in the same room) synchronized or asynchronized (via e-mail), and you will even be able to play solo against an artificial intelligent opponent. Currently, only HotSeat and Play-By-Email mode game are implemented. You can see some screenshots or download it.
This game is developed as a free software with the GPL license. We always need some volonteers to help us on coding, bug reports, creating new skins or new levels, writing documentations, maintaining web sites, etc. See the development site for more infos.
Enhancements:
- Problem with diceroll.
- BF: Problem when transmitting genestealer orientation during creation.
- BF: Mail sent with n instead of rn (fix from Unifex).
- BF: segfault with newby question in pbem.
<<less
Download (0.86MB)
Added: 2005-06-20 License: GPL (GNU General Public License) Price:
1596 downloads
Open Concepts Bulletin Board 0.9.5 RC2

Open Concepts Bulletin Board 0.9.5 RC2


Open Concepts Bulletin Board is a fork of the phpBB Olympus CVS. more>>
Open Concepts Bulletin Board project is a fork of the phpBB "Olympus" CVS which will strive to continue the phpBB traditions of easy modification, freedom, and usablity, and also to improve upon development speed.
<<less
Download (0.77MB)
Added: 2006-04-23 License: GPL (GNU General Public License) Price:
1293 downloads
MahJongg Solitaire 3D 0.96

MahJongg Solitaire 3D 0.96


MahJongg Solitaire 3D is an OpenGL enhanced solitaire version of the ancient chinese board game Mah Jongg. more>>
MahJongg Solitaire 3D is an OpenGL enhanced solitaire version of the ancient chinese board game "Mah Jongg".
This is a solitaire version of Mah Jongg, it can be played by a single player. It has a fresh new three dimensional view from which you can look at the board from any direction, with hand drawn aquarelle tilesets, layouts and backgrounds, you can download tilesets, layouts and backgrounds or even create your own ones and integrate them into the game.
Main features:
- 3D OpenGL view. You can look at the board from any direction.
- A unique hand drawn tileset
- Undo
- Reorder
- Hint function
- Hiscores
Enhancements:
- Creation of custom layouts, backgrounds and tilesets is now possible! Read INSTALL_CUSTOM for more information.
- Integrated the "ArcBall" rotation method, implementation contributed by Michael George.
- Two new tilesets: "Runes" and "Flowers"
- A new layout: "chinese wall"
- New Backgrounds
- Mouse speed settings available.
- More bugfixes
- A LOT of improvements.
<<less
Download (4.7MB)
Added: 2005-06-17 License: GPL (GNU General Public License) Price:
1591 downloads
GNOME Maze 0.8

GNOME Maze 0.8


GNOME Maze project is a maze board game. more>>
GNOME Maze project is a maze board game.
The objective is to get the Tux out of the maze.
This release has different levels, and if you are unable to solve the maze, the computer can do it for you.
Enhancements:
- implemended levels,
- improved pad-history,
- pixmaps,
- computer-solving.
<<less
Download (0.12MB)
Added: 2006-12-27 License: GPL (GNU General Public License) Price:
1035 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5