A video poker widget with several common game variations
Play five different variations of Video Poker, a casino favourite since 1979. Using this widget won't cost you a cent, but with an included strategy trainer, it just might help increase your edge at the real machines! My first new widget in over two and a half years. Hope you like it
Included games are:
Jacks or Better
Bonus Poker
Double Bonus Poker
Double Double Bonus Poker
Deuces Wild
Version 1.3
Updates for changes in the Opera widgets security specification
New icons
Fixed bug where widget would hang on a certain card combo
@ Benjamin Joffe: Thanks for the error report, I'll look into it! Yup, the cards are a modification of a free set, so these are usable in the same fashion.
As for the 3x shuffling, are you making fun of my OCD?
Nice widget, looks very clean. Are those card designs free to use? I'm making a card playing app and am after some good looking free cards... Occasionally all the buttons go permanently grey, and the widget must be refreshed, appears to be a bug:
Timeout thread: delay 800 ms Error: name: TypeError message: Statement on line 560: Cannot convert undefined or null to Object stacktrace: Line 560 of linked script widget://232539173435748908931260510472/index.js for (var y = 0, nf = true; y < c.length; y++) Line 241 of linked script widget://232539173435748908931260510472/index.js var hand = self.check(), train = (self.round) ? self.trainer(hand) : null; ...
arthurmitsin 作 , # 2012/04/01 13:15:40
olimeter777 作 , # 2010/04/07 0:57:30
Aparate-foto 作 , # 2010/01/14 9:43:43
Carucioare 作 , # 2010/01/11 15:19:36
As for the 3x shuffling, are you making fun of my OCD?
GreyWyvern 作 , # 2009/12/29 20:29:47
/* ****************************************************************
* Shuffle the deck n times
*
*/
this.shuffle = function(n) {
for (var n = n || 3; n--;) {
for (var i = this.deck.length - 1, j, k; i > 0; i--) {
j = Math.floor(Math.random() * (i + 1));
k = this.deck;
this.deck = this.deck[j];
this.deck[j] = k;
}
}
};
Benjamin Joffe 作 , # 2009/12/11 6:13:40
Are those card designs free to use? I'm making a card playing app and am after some good looking free cards...
Occasionally all the buttons go permanently grey, and the widget must be refreshed, appears to be a bug:
Timeout thread: delay 800 ms
Error:
name: TypeError
message: Statement on line 560: Cannot convert undefined or null to Object
stacktrace: Line 560 of linked script widget://232539173435748908931260510472/index.js
for (var y = 0, nf = true; y < c.length; y++)
Line 241 of linked script widget://232539173435748908931260510472/index.js
var hand = self.check(), train = (self.round) ? self.trainer(hand) : null;
...
Benjamin Joffe 作 , # 2009/12/11 6:09:57
I built the widget and I have never gotten a Royal even after testing for 1000s of hands
GreyWyvern 作 , # 2009/08/13 22:08:15
It's the same game like this?
http://mac.softpedia.com/get/Dashboard-Widgets/Games-Widgets/VideoPoker-Widget.shtml
network123 作 , # 2009/08/04 6:46:00