Opera Widgets の開発は現在行われておりません。詳細を見る

ログイン| 新規登録

Opera Software ASA

Video Poker, Opera application V1.3 2010/05/27 23:33:34

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 :smile:

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
  • Fix audio pop at the end of the beep wav


コメント 9 通

ページのトップからログインしコメントする

1 - 9 中 9

Так себе. Пленненько. Можно и лучше.

arthurmitsin 作 , # 2012/04/01 13:15:40

Best gadget I have ever seen! Thanks for sharing :^)

olimeter777 作 , # 2010/04/07 0:57:30

It is quite a great widget for practice before the weekend game :wink: thanks!

Aparate-foto 作 , # 2010/01/14 9:43:43

I had my first royal flush with this widget :smile:) sweeet!

Carucioare 作 , # 2010/01/11 15:19:36

@ 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? :D

GreyWyvern 作 , # 2009/12/29 20:29:47

Oh, btw. in the following code there is no need to shuffle the deck more than once, it's purely random by then ;p

/* ****************************************************************
* 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

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;
...

Benjamin Joffe 作 , # 2009/12/11 6:09:57

: The widget is designed entirely from scratch, but should play exactly the same as any casino video poker simulator.

I built the widget and I have never gotten a Royal even after testing for 1000s of hands :frown:

GreyWyvern 作 , # 2009/08/13 22:08:15

Great game,got a royal after about 100 plays!
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