Get game
Free

Game: Craps (Free)

  (1067 votes)
Views: 5735
Category Card
Version:1.2
Updated:
Requires os version:Android2.1 and up
Size:647k
Are you looking for a high-quality Craps game on Android? Your looking is now over. Craps (Free) offers drag and drop betting, life-like animations, sounds, quick bet buttons, and a convenient roll recap screen. All of this costs you nothing!

*************************************************
Since some reviews claim the game cheats, I thought I would put the actual code that generates the dice rolls. It is a random number generator that will randomly pick a number between 1 and 6. The game is completely random and I have no incentive to make it favor the players or the casino.

Random randomGenerator = new Random();
die1 = 1 + randomGenerator.nextInt(6);
die2 = 1 + randomGenerator.nextInt(6);

Add a comment

WRITE A COMMENT

Verification Code Enter the code exactly as you see it into this box.