Pages:
Author

Topic: [FREE]Texas Hold'em All-In ★ Free Contest with 1st Prize 0.07 and 2nd Prize 0.03 - page 3. (Read 3320 times)

hero member
Activity: 546
Merit: 500
@all contest participants

the bug is fixed. it was a straight ranking bug ( coder explanation )

we want to set a new start date and time and would like to set the start of the contest for tomorrow
(tuesday). all users are asked to post their preferred time for tomorrow and we will try to find a time that could fit for all.

we will send a PM to all participants with the same question to be sure that they will have the chance to tell us their opinion.

sorry again for the inconvenience (sh*t happens)

edit:
each user who ended after the contest was stopped in profit should please withdraw the profit and leave 5k on the account for the new start. the users who had a loss please let us know the loss and we will send it to you so you will have 5k for starting the new scheduled contest. all participants will start with 5k
you also have to send me a PM,how to join?
legendary
Activity: 1974
Merit: 1014
All Games incl Racer and Lottery game are Closed
@all contest participants

the bug is fixed. it was a straight ranking bug ( coder explanation )

we want to set a new start date and time and would like to set the start of the contest for tomorrow
(tuesday). all users are asked to post their preferred time for tomorrow and we will try to find a time that could fit for all.

we will send a PM to all participants with the same question to be sure that they will have the chance to tell us their opinion.

sorry again for the inconvenience (sh*t happens)

edit:
each user who ended after the contest was stopped in profit should please withdraw the profit and leave 5k on the account for the new start. the users who had a loss please let us know the loss and we will send it to you so you will have 5k for starting the new scheduled contest. all participants will start with 5k
legendary
Activity: 966
Merit: 1000
i think that contest needs to be resumed (with restart of balance to 5k bits)
as bug is fixed it should be resumed asap Cheesy
atleast thats what everyone else is doing, lets say in some texas online poker tournoment when something is bugged they pause it and resume the game (which i personaly saw playing on pokerstars tourney)
regards.
-Katerniko1
legendary
Activity: 1974
Merit: 1014
All Games incl Racer and Lottery game are Closed
What does your game do in the event of a split pot?

If the board is a royal flush, say, it's a ten-way split pot. It's also possible to have a 4 or less way split (with a board 9TJQK, and 2-4 players each have an ace, say). I don't think it's possible to have a pot that splits between 5 and 9 ways.

I guess the correct thing to do is to pay out 1/N times as much as if the pot is won uncontested, where N is the number of people splitting the pot.

hi

just for info coder came back now with the answer that it was a straight ranking bug and it is fixed now.

regarding your question

it is not a multiplayer table (PvP) as players are used to. at the 10 seat table the user is playing alone at the table and betting on one or more seats and always all-in. there is no event of a split. we adjusted the game for now to the money API and for each bet there is always a winner and no tie.

the H2H table is also different than players are used to. also here we adjusted the game to moneypot API.

the best will be to understand the game that you will have some bets at both tables.

we want to reschedule the contest and will send out a PM to all participants to suggest to us what time is best for them and we will adjust the time for tomorrow tuesday to start the contest again.

thank you

legendary
Activity: 2940
Merit: 1333
What does your game do in the event of a split pot?

If the board is a royal flush, say, it's a ten-way split pot. It's also possible to have a 4 or less way split (with a board 9TJQK, and 2-4 players each have an ace, say). I don't think it's possible to have a pot that splits between 5 and 9 ways.

I guess the correct thing to do is to pay out 1/N times as much as if the pot is won uncontested, where N is the number of people splitting the pot.
legendary
Activity: 966
Merit: 1000
coders are working already to fix the hand ranking. they said it is connected to the straight with ace as lowest card in the straight. anyway we told them to set it up from scratch to be on the sure side.

This might help:

  http://stackoverflow.com/a/20715903/1253362

thanks again. I forwarded it to coders. but as I saw it it was for 5 cards and not 7 cards but I am not a coder:(
i hope this is getting fixed soon Cheesy
it was fun
regards.
-Katerniko1
legendary
Activity: 2940
Merit: 1333
coders are working already to fix the hand ranking. they said it is connected to the straight with ace as lowest card in the straight. anyway we told them to set it up from scratch to be on the sure side.

This might help:

  http://stackoverflow.com/a/20715903/1253362

thanks again. I forwarded it to coders. but as I saw it it was for 5 cards and not 7 cards but I am not a coder:(

It's easy enough to make it work for any number of cards using a recursive step:

Code:
def evaluate(hand):
    ranks = '23456789TJQKA'
    if len(hand) > 5: return max([evaluate(hand[:i] + hand[i+1:]) for i in range(len(hand))])
    rcounts = {ranks.find(r): ''.join(hand).count(r) for r, _ in hand}.items()
    [...]

Edit: I posted full source code for a hold'em hand evaluator.
legendary
Activity: 1974
Merit: 1014
All Games incl Racer and Lottery game are Closed
coders are working already to fix the hand ranking. they said it is connected to the straight with ace as lowest card in the straight. anyway we told them to set it up from scratch to be on the sure side.

This might help:

  http://stackoverflow.com/a/20715903/1253362

thanks again. I forwarded it to coders. but as I saw it it was for 5 cards and not 7 cards but I am not a coder:(
legendary
Activity: 2940
Merit: 1333
coders are working already to fix the hand ranking. they said it is connected to the straight with ace as lowest card in the straight. anyway we told them to set it up from scratch to be on the sure side.

This might help:

  http://stackoverflow.com/a/20715903/1253362
legendary
Activity: 1974
Merit: 1014
All Games incl Racer and Lottery game are Closed
yes saw the PM now. coders are working now to fix it. but we don't understand after testing it with many bets and the bug only showed up now during start of contest Sad

What's the bug? Can I help you fix it?

we will send you and the other users who did not show up yet and also cant login now the 5k guarantee back.

I showed up but couldn't get in.

we have send you and all the others the 5 k guarantee back.

thanks for offering to help really very much appreciated. maybe I will contact you with another question through some day if you don't mind?

the bug is that the hand ranking was mixed up. a user had a straight and lost against 2 pairs Sad

coders are working already to fix the hand ranking. they said it is connected to the straight with ace as lowest card in the straight. anyway we told them to set it up from scratch to be on the sure side.

thanks again for offer to help
legendary
Activity: 2940
Merit: 1333
yes saw the PM now. coders are working now to fix it. but we don't understand after testing it with many bets and the bug only showed up now during start of contest Sad

What's the bug? Can I help you fix it?

we will send you and the other users who did not show up yet and also cant login now the 5k guarantee back.

I showed up but couldn't get in.
legendary
Activity: 1974
Merit: 1014
All Games incl Racer and Lottery game are Closed
just for info

we had to cancel the contest because of a serious bug

coders are taking care but don't know yet how long it will take

we will inform you here and by PM

please don't try to enter the site because we changed the login credentials till bug is fixed and contest is rescheduled

sorry for the inconvenience

I just PM'ed you saying that the credentials you PM'ed me don't work. Then I saw this post, so ignore the PM please.

hello

yes saw the PM now. coders are working now to fix it. but we don't understand after testing it with many bets and the bug only showed up now during start of contest Sad

we agreed with all the players who started already to stop and fix the bug and then reschedule the contest. all users who lost at the start because we stopped the contest will be refunded so they will have the 5k again to start and the users who had profit should just keep it and withdraw it.

we will send you and the other users who did not show up yet and also cant login now the 5k guarantee back.

sorry again

legendary
Activity: 2940
Merit: 1333
just for info

we had to cancel the contest because of a serious bug

coders are taking care but don't know yet how long it will take

we will inform you here and by PM

please don't try to enter the site because we changed the login credentials till bug is fixed and contest is rescheduled

sorry for the inconvenience

I just PM'ed you saying that the credentials you PM'ed me don't work. Then I saw this post, so ignore the PM please.
legendary
Activity: 1974
Merit: 1014
All Games incl Racer and Lottery game are Closed
just for info

we had to cancel the contest because of a serious bug

coders are taking care but don't know yet how long it will take

we will inform you here and by PM

please don't try to enter the site because we changed the login credentials till bug is fixed and contest is rescheduled

sorry for the inconvenience
legendary
Activity: 1974
Merit: 1014
All Games incl Racer and Lottery game are Closed
why bail is returned? what is canceled or delayed?

bail is returned because you participated and wagered Smiley

we will inform all by PM and here as soon the bug is fixed

sorry for the inconvenience
legendary
Activity: 980
Merit: 1001
why bail is returned? what is canceled or delayed?
member
Activity: 108
Merit: 10
o shit, i just woke up. am i too late?
legendary
Activity: 1974
Merit: 1014
All Games incl Racer and Lottery game are Closed
here is the final list  of the participants. very important for you so each user can check the stats all the time during the contest

1 - user MP: retlus                 
 2 - user MP: Hexcoin         
 3 - user MP: DarkMatters         
4 - user MP: zz11
 5 - user MP: huggy               
 6 - user MP: yahoo               
 7 - user MP: panjul07             
 8 - user MP: Cybernick           
 9 - user MP: rozee                   
10 - user MP: 1aguar               
11 - user MP: webcreator         
12 - user MP: Rmcdermott927     
13 - user MP: jikin                     
14 - user MP: Everybitbit
15 - user MP: katerniko1           
16 - user MP: dooglus     

sending out now the login credentials

good luck         
legendary
Activity: 1974
Merit: 1014
All Games incl Racer and Lottery game are Closed
5000 bits sent to user: JackpotRacer

MP Username: Hexcoin

thank you very much for participating.

14 participants right now

good luck
hero member
Activity: 504
Merit: 500
5000 bits sent to user: JackpotRacer

MP Username: Hexcoin
Pages:
Jump to: