Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 50.479.931 Times

Game Scheduler Program freeware
Filter: All | Freeware | Demo
 

Game Scheduler Program

< 1 2 3 4 5 > 
Added: October 18, 2013 | Visits: 906

RoboTournament RoboTournament is a RoboRally inspired game where players program their robots to vanquish their opponents. # RoboTournament features: Multiple Game Types: Death Match, Rally, and Capture The Flag # Multi-Player through TCP/IP # Six weapons including the BFG # Map Editor # Wide variety of board... Platforms: *nix

License: Freeware Size: 40.96 KB Download (101): RoboTournament Download

Added: September 13, 2010 | Visits: 1.643

Quick and Dirty Game Development Framework QDGDF stands for Quick and Dirty Game Development Framework, and its a set of libraries designed to allow fast development of games under a variety of systems. Quick and Dirty Game Development Frameworks main goal is to show a platform-independent, consistent interface to UNIX/Linux and MS... Platforms: *nix

License: Freeware Size: 81.92 KB Download (101): Quick and Dirty Game Development Framework Download

Added: July 21, 2010 | Visits: 1.562

Chess::Game::MoveList Chess::Game::MoveList is a specialized list class for recording the moves of a Chess::Game. SYNOPSIS $movelist = Chess::Game::MoveList->new("white", "black"); $wpawn = Chess::Game::Pawn->new("e2", "white"); $entry = $movelist->add_move($wpawn, "e2", "e4"); $true = $entry->get_piece() eq... Platforms: *nix

License: Freeware Size: 21.5 KB Download (125): Chess::Game::MoveList Download

Added: November 12, 2010 | Visits: 1.475

Chess::Game 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());... Platforms: *nix

License: Freeware Size: 21.5 KB Download (125): Chess::Game Download

Added: June 25, 2010 | Visits: 1.151

JAdvisor JAdvisor project is a college class scheduler, course planner, and course search program. It also allows college students to view their schedules graphically and create an optimal schedule. Adapters are used to customize JAdvisor for your particular school. Whats New in This Release: -... Platforms: *nix

License: Freeware Size: 276.48 KB Download (105): JAdvisor Download

Added: March 22, 2010 | Visits: 1.212

Yet Another Dungeon-game Yet Another Dungeon-game is a maze (or dungeon) game with a flexible text-based map format and interface plugins. Installation: yad/ $ ./configure yad/ $ make (as per usual) Now, to run it -- The environment variable YAD_MODULES needs to point to the full path of interface/.libs in the... Platforms: *nix

License: Freeware Size: 675.84 KB Download (108): Yet Another Dungeon-game Download

Added: September 08, 2010 | Visits: 1.254

Lightweight Java Game Library Lightweight Java Game Library project is a native binding to OpenGL and OpenAL. The Lightweight Java Game Library is a native binding for OpenGL and OpenAL written with game developers in mind. It allows the full OpenGL and OpenAL APIs to be exposed without the penalties associated with... Platforms: *nix

License: Freeware Download (118): Lightweight Java Game Library Download

Added: May 02, 2010 | Visits: 957

game build game is a simple Tetris-like game. The objective of the game is to keep the level of colored blocks down as long as possible. New blocks are falling down at an increasing rate, blocks can be removed by creating rows of three or more blocks of the same color. The longer the row, the more... Platforms: *nix

License: Freeware Size: 1.2 MB Download (97): game build Download

Added: February 18, 2010 | Visits: 1.026

Epiphany Game Epiphany project is a multiplatform clone of the game Boulderdash. It is written entirely in C++, using Clanlib as its graphic library. The player must collect all valuable minerals scattered in levels, while avoiding being hit by a falling boulder or a bomb.. Platforms: *nix

License: Freeware Size: 1.4 MB Download (106): Epiphany Game Download

Added: March 19, 2010 | Visits: 1.837

Game Server Startup Script Game Server Startup Script project is a startup script to manage dedicated game servers like Quake3. Game Server Startup Scripts is a startup script to manage a wide variety of Linux dedicated game servers. It can start/stop/restart/fix dedicated game servers like Quake3, Half Life, Tribes 2,... Platforms: *nix

License: Freeware Size: 14.34 KB Download (190): Game Server Startup Script Download

Added: May 27, 2010 | Visits: 928

Transcend Game Transcend Game project is a retro-style, abstract, collage-building, musical, shooter game. The graphics are geometrical, and the pace is sometimes frenzied. Two features set Transcend apart from other games. First, its dynamic graphical engine, which can smoothly morph from one complex shape... Platforms: *nix

License: Freeware Size: 1.8 MB Download (99): Transcend Game Download

Added: May 14, 2010 | Visits: 851

GNUDoku GNUDoku is a free Sudoku game program for creating and solving Su Doku puzzles. GNUDokus only requirement is the gtkmm library, specifically gtkmm2.4 is required. Version 2.6 is preferred, see below for instructions on using version 2.4. Installation: To build, use "make". To install, use... Platforms: *nix

License: Freeware Size: 25.6 KB Download (106): GNUDoku Download

Released: June 07, 2012  |  Added: June 07, 2012 | Visits: 1.357

Siriel4 game engine Siriel4 game engine project is a game engine for adventure, arcade, maze-like games. The main goal of this engine is to provide tools and scripts for easy game creation. Game creators only write the necessary scenario descriptions for the game in a scripting language (such as Lua) and do not... Platforms: *nix

License: Freeware Size: 645.12 KB Download (105): Siriel4 game engine Download

Added: May 17, 2010 | Visits: 1.296

uCON64 uCON64 project is a game backup tool and emulator Swiss Army knife program. uCON64 is a tool to backup all kinds of video games (cartridges and CDs). It supports most available backup units for cartridge-based consoles. It also performs many other tasks, like ROM hacking and conversion of... Platforms: *nix

License: Freeware Size: 389.12 KB Download (106): uCON64 Download

Added: October 18, 2010 | Visits: 1.470

Game::Life Game::Life - Plays Conways Game of Life. SYNOPSIS use Game::Life; my $game = new Game::Life( 20 ); my $starting = [ [ 1, 1, 1 ], [ 1, 0, 0 ], [ 0, 1, 0 ] ]; $game->place_points( 10, 10, $starting ); for (1..20) { my $grid = $game->get_grid(); foreach ( @$grid ) { print map { $_ ?... Platforms: *nix

License: Freeware Size: 6.14 KB Download (110): Game::Life Download

Added: November 15, 2010 | Visits: 1.165

Program Version Switch pvswitch is a very tiny program which makes it possible to use different program installations on one machine flawlessly. Its flexibility is intended for people who need to run programs against different interpreter versions. But it can also be used for different purposes like switching the... Platforms: *nix

License: Freeware Size: 76.8 KB Download (102): Program Version Switch Download

Added: October 19, 2010 | Visits: 1.594

Splendid City Splendid City Team Sports Scheduler, and Sports Scheduling Software System is useful for people who organize team sports or game events. It can manage sports schedules of any size and complexity. Simply fill in the requested information into the wizard like interface, and Splendid City automates... Platforms: *nix

License: Freeware Size: 38 MB Download (108): Splendid City Download

Added: January 22, 2010 | Visits: 1.385

AIMLBot (Program#) AIMLBot (Program#) is a small, fast, standards-compliant yet easily customizable .NET dll implementation of an AIML (Artificial Intelligence Markup Language) based chatter bot. AIMLBot has been tested on both Microsofts runtime environment and Mono. Put simply, it will allow you to chat (by... Platforms: *nix

License: Freeware Download (123): AIMLBot (Program#) Download

Added: November 16, 2010 | Visits: 1.139

KoalaMud Game Engine KoalaMud Game Engine project is a multithreaded MUD server. KoalaMud is a MUD source base designed around multithreading and stability. On top of this platform, Shadow of the Wheel is evolving to demonstrate its capabilities. Whats New in This Release: - Tons of new stuff done here. - We... Platforms: *nix

License: Freeware Size: 225.28 KB Download (96): KoalaMud Game Engine Download

Added: January 05, 2010 | Visits: 1.301

Pizza Game Pizza Game project is a 3D, real-time game in which you manage a pizza restaurant. As manager, you must build a restaurant, buy the various objects and furniture that the restaurant requires, hire/fire/manage your employees, buy advertising, buy ingredients, set prices, and make sure your... Platforms: *nix

License: Freeware Size: 27.9 MB Download (124): Pizza Game Download

< 1 2 3 4 5 >