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.043.692 Times

Halloween Trivia Games software
Filter: All | Freeware | Demo
 

Halloween Trivia Games

< 1 2 3 4 5 
Added: January 24, 2010 | Visits: 1.685

Games::OpenGL::Font::2D Games::OpenGL::Font::2D module can load/render 2D colored bitmap fonts via OpenGL. SYNOPSIS use Games::OpenGL::Font::2D; my $font = Games::OpenGL::Font::2D->new( file => font.bmp ); use SDL::App::FPS; my $app = SDL::App::FPS->new( ... ); # dont forget to change these on resize...



Platforms: *nix

License: Freeware Size: 22.53 KB Download (170): Games::OpenGL::Font::2D Download

Added: May 03, 2010 | Visits: 914

Games::Console Games::Console Perl module provide a 2D quake style in-game console. SYNOPSIS use Games::Console; my $console = Games::Console->new( font => $font_object, background_color => [ 1,1,0], background_alpha => 0.4, text_color => [ 1,1,1 ], text_alpha => 1, speed => 50, # in percent per...





Platforms: *nix

License: Freeware Size: 21.5 KB Download (97): Games::Console Download

Added: September 05, 2010 | Visits: 1.774

Games::Dice Games::Dice is a Perl module that can be used to simulate dice rolls. SYNOPSIS use Games::Dice roll; $strength = roll 3d6+1; use Games::Dice roll_array; @rolls = roll_array 4d8; Games::Dice simulates die rolls. It uses a function-oriented (not object-oriented) interface. No functions...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (99): Games::Dice Download

Added: September 27, 2010 | Visits: 901

Games::Mastermind Games::Mastermind is a simple framework for MasterMind games. SYNOPSIS use Games::Mastermind; # the classic game $mm = Games::Mastermind->new; # make a guess $marks = $game->play(qw( Y C W R )); # results print "You win!n" if $marks->[0] == $mm->holes(); # the game history is...


Platforms: *nix

License: Freeware Size: 14.34 KB Download (105): Games::Mastermind Download

Added: March 20, 2010 | Visits: 923

Games::Alak 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...


Platforms: *nix

License: Freeware Size: 9.22 KB Download (114): Games::Alak Download

Added: July 04, 2010 | Visits: 954

Games::LMSolve::Base Games::LMSolve::Base is a base class for puzzle solvers. SYNOPSIS package MyPuzzle::Solver; use Games::LMSolve::Base; @ISA = qw(Games::LMSolve::Base); # Override these methods: sub input_board { ... } sub pack_state { ... } sub unpack_state { ... } sub display_state { ... } sub...


Platforms: *nix

License: Freeware Size: 21.5 KB Download (90): Games::LMSolve::Base Download

Added: November 09, 2010 | Visits: 1.977

Games::Go::SGF Games::Go::SGF is a Perl module that can parse and dissect Standard Go Format files. SYNOPSIS use Games::Go::SGF; my $sgf = new Games::Go::SGF($sgfdata); print "Game played on ".$sgf->date."n"; print $sgf->white. " (W) vs. ".$sgf->black." (B)n"; print "Board size: ".$sgf->size.". Komi:...


Platforms: *nix

License: Freeware Size: 3.07 KB Download (94): Games::Go::SGF Download

Added: March 21, 2010 | Visits: 2.045

Games::Goban Games::Goban is a board for playing go, renju, othello, etc. SYNOPSIS use Games::Goban; my $board = new Games::Goban ( size => 19, game => "go", white => "Seigen, Go", black => "Minoru, Kitani", referee => &Games::Goban::Rules::Go, ); $board->move("pd"); $board->move("dd"); print...


Platforms: *nix

License: Freeware Size: 15.36 KB Download (170): Games::Goban Download

Added: June 14, 2010 | Visits: 1.145

Games::AlphaBeta::Reversi Games::AlphaBeta::Reversi is a Reversi position class for use with Games::AlphaBeta. SYNOPSIS package My::Reversi; use base qw(Games::AlphaBeta::Reversi); # implement drawing routine sub draw { ... } package main; use My::Reversi; use Games::AlphaBeta; my ($p, $g); $p =...


Platforms: *nix

License: Freeware Size: 12.29 KB Download (131): Games::AlphaBeta::Reversi Download

Added: February 27, 2010 | Visits: 894

Games::AlphaBeta::Position Games::AlphaBeta::Position is a base Position class for use with Games::AlphaBeta. SYNOPSIS package My::GamePos; use base qw(Games::AlphaBeta::Position); sub apply { ... } sub endpos { ... } # optional sub evaluate { ... } sub findmoves { ... } package main; my $pos =...


Platforms: *nix

License: Freeware Size: 12.29 KB Download (91): Games::AlphaBeta::Position Download

Added: July 04, 2010 | Visits: 939

Games::Sequential::Position Games::Sequential::Position is a base Position class for use with Games::Sequential. SYNOPSIS package My::GamePos; use base Games::Sequential::Position; sub init { ... } # setup initial state sub apply { ... } package main; my $pos = My::GamePos->new; my $game =...


Platforms: *nix

License: Freeware Size: 12.29 KB Download (96): Games::Sequential::Position Download

Added: March 27, 2010 | Visits: 2.484

Gnome Games 2.18.2.1 / Gnome Games is a collection of games for the GNOME desktop. There are sixteen games including card games, puzzle games, and arcade games. These games are designed to be simple but addictive – five minute games for when you need a break. Regretfully we cannot be held responsible for the...


Platforms: *nix

License: Freeware Size: 9 MB Download (279): Gnome Games 2.18.2.1 / Download

Added: March 01, 2010 | Visits: 1.034

Games::Sudoku::General Games::Sudoku::General is a Perl module that can solve sudoku-like puzzles. SYNOPSIS $su = Games::Sudoku::General->new (); print $su->problem(<solution(); 3 . . . . 8 . 2 . . . . . . 9 . . . . . 2 7 . 5 . . . 2 4 . 5 . . 8 . . . 8 5 . 7 4 . . 6 . 3 . . . . 9 4 . 1 . 4 . . . . 7...


Platforms: *nix

License: Freeware Size: 40.96 KB Download (98): Games::Sudoku::General Download

Added: January 25, 2010 | Visits: 843

Pat Sajak's Trivia Gems Pat Sajak's Trivia Gems... Join America's most-loved game show host on the set of his newest production, Pat Sajak's Trivia Gems!Climb the pyramid by answering trivia question triplets, but choose your steps carefully as you climb: each colored pyramid step is a different trivia category. You can...


Platforms: Mac

License: Shareware Cost: $0.00 USD Download (105): Pat Sajak's Trivia Gems Download

Released: February 05, 2012  |  Added: February 25, 2012 | Visits: 1.234

Desktop Halloween Icons Get ready to get scared! Here is Desktop Halloween Icons set - an amazing free collection of icons, large enough to enhance even your Windows 7 desktop or a personal Web site. The set holds images for Halloween, Pumpkin, Ghost, Cauldron, Spider, Skeleton and a lot more! It's all available to you...


Platforms: OS/2, Windows, Mac, *nix, Windows CE, Pocket PC, Other,Android,BlackBerry,iPhone,iPod,iTouch,Palm,Palm OS 6.0,Handheld/Mobile Other,Java

License: Demo Cost: $0.00 USD Size: 15.07 MB Download (232): Desktop Halloween Icons Download

Released: November 16, 2011  |  Added: November 26, 2011 | Visits: 754

icSpeech Games icSpeech Games contains four interactive speech therapy games in a single, easy to use application. Each game can be configured to respond in real-time to the following speech parameters: - pitch - speech intensity - voice intensity - respiration - nasal airflow -oral airflow...


Platforms: Windows

License: Shareware Cost: $19.00 USD Size: 2.42 MB Download (92): icSpeech Games Download

Released: September 17, 2019  |  Added: September 22, 2019 | Visits: 1.638

Halloween Night Riddle 3D logic/puzzle board game. The Halloween night is a period of time when even the most unbelievable thing may happen. And this is my story that happened on the Halloween night. You may believe me or not but suddenly I found myself in the dark forest. And there was a strange mansion... I did not...


Platforms: Windows, Windows 8, Windows 7, Windows Server

License: Freeware Size: 20.26 MB Download (111): Halloween Night Riddle Download

Released: May 20, 2015  |  Added: June 10, 2015 | Visits: 1.040

Funny Halloween Used to think that Halloween should be scary? No way! It should be Happy and Funny! You can celebrate Happy and Funny Halloween with your children. You will delight in cheerful pumpkins flying around kind magicians and fairies playing with merry ghosts. Festive sounds and solemn music become a...


Platforms: Windows, Windows 8, Windows 7, Windows Server

License: Freeware Size: 3.5 MB Download (107): Funny Halloween Download

Released: October 05, 2012  |  Added: October 23, 2012 | Visits: 802

Free Autumn Halloween Screensaver Tonight, tonight is Halloween. Ghosts, witches, and evil spirits are having a wild celebration in an old abandoned mansion guarded by vampire bats and creepy Jack O' Lanterns.


Platforms: Windows

License: Freeware Size: 3.32 MB Download (79): Free Autumn Halloween Screensaver Download

Released: October 08, 2012  |  Added: October 08, 2012 | Visits: 909

RichMan Games - Monopoly of New York Richman Games - Monopoly of New York is one of the most popular board games. It will take you to the New York City with a business trip. And your goal is to maximize your net worth through various corporate actions and make yourself the richest person in the Richman games. Richman is a...


Platforms: Windows

License: Shareware Cost: $19.95 USD Size: 5.32 MB Download (63): RichMan Games - Monopoly of New York Download

< 1 2 3 4 5