Open Side Menu Go to the Top
Register
***Official IPOKER/ONGAME/MPN/PARTY/MERGE/REVOLUTION Regulars Thread**** ***Official IPOKER/ONGAME/MPN/PARTY/MERGE/REVOLUTION Regulars Thread****

02-01-2014 , 06:33 AM
Oh, then my decision to log off at 23:50 GMT and go to bed was a good one (I had wanted to grind for 2 more hours but ended up sleepy as hell). I had been kicked away by WH once yday - at 19:19 - but that was because of 3 new tables popping up at once and freezing the whole client , not a network issue. Meh, standard iPoker variance.
***Official IPOKER/ONGAME/MPN/PARTY/MERGE/REVOLUTION Regulars Thread**** Quote
02-01-2014 , 09:51 PM
Anyone tried a new installation and can tell if it got better?
***Official IPOKER/ONGAME/MPN/PARTY/MERGE/REVOLUTION Regulars Thread**** Quote
02-01-2014 , 11:36 PM
just a +1 that I'm skipping regging anything on ipoker today due to the redic server crashes and zero useful responses or compensation from ipoker anytime they have special promotions. Sucks that it makes zero difference even if 50% of the regs boycotted since the increased field size will make up for it in rake for the sites themselves. you'd think if we make a big enough of a stink they would ****ing do something about it. so sigh
***Official IPOKER/ONGAME/MPN/PARTY/MERGE/REVOLUTION Regulars Thread**** Quote
02-02-2014 , 08:38 AM
Quote:
Originally Posted by DaFooFighter
Anyone tried a new installation and can tell if it got better?
Yea, I did try this and it hasn't crashed since. At least not whilst I was playing. It did crash once in idle. Hard to tell how stable it is now because of the sample size, but I've gone from two crashes on the first day to none since, so worth a try, because it's a cheap fix.
***Official IPOKER/ONGAME/MPN/PARTY/MERGE/REVOLUTION Regulars Thread**** Quote
02-02-2014 , 04:56 PM
Just talked to the support at Winner. The issue is known and the dev team is working on it. Let's hope for a resolution soon.
***Official IPOKER/ONGAME/MPN/PARTY/MERGE/REVOLUTION Regulars Thread**** Quote
02-02-2014 , 05:45 PM
At least they are acknowledging it. I don't like it when people try to take advantage by shifting the blame on to you and hoping you will buy into it.
***Official IPOKER/ONGAME/MPN/PARTY/MERGE/REVOLUTION Regulars Thread**** Quote
02-02-2014 , 08:48 PM
Quote:
Originally Posted by IsaacAsimov
Yea, I did try this and it hasn't crashed since. At least not whilst I was playing. It did crash once in idle. Hard to tell how stable it is now because of the sample size, but I've gone from two crashes on the first day to none since, so worth a try, because it's a cheap fix.
I did it too but it crashed during the first session after maybe 1,5h. Unfortunately I don't think it can be considered a fix...
***Official IPOKER/ONGAME/MPN/PARTY/MERGE/REVOLUTION Regulars Thread**** Quote
02-03-2014 , 09:29 AM
The federal reserve dude confirmed biggest luckbox on IPOKER.
***Official IPOKER/ONGAME/MPN/PARTY/MERGE/REVOLUTION Regulars Thread**** Quote
02-05-2014 , 10:41 PM
the amount of heads up tables some people sit on ongame is absurd
***Official IPOKER/ONGAME/MPN/PARTY/MERGE/REVOLUTION Regulars Thread**** Quote
02-09-2014 , 03:27 PM
Ongame is down. Can't login to any client. "Play in browser" option doesnt work either.
***Official IPOKER/ONGAME/MPN/PARTY/MERGE/REVOLUTION Regulars Thread**** Quote
02-09-2014 , 04:45 PM
im locked out as well
***Official IPOKER/ONGAME/MPN/PARTY/MERGE/REVOLUTION Regulars Thread**** Quote
02-09-2014 , 05:02 PM
Hmmmh suspiciously long for a downtime. Still not twerking

Edit. Oh ET on comments, not so long after all.
***Official IPOKER/ONGAME/MPN/PARTY/MERGE/REVOLUTION Regulars Thread**** Quote
02-09-2014 , 07:01 PM
anybody use hot keys on ipoker? recommendations?
***Official IPOKER/ONGAME/MPN/PARTY/MERGE/REVOLUTION Regulars Thread**** Quote
02-09-2014 , 09:44 PM
The only hotkeys around that I know are gtd to work are TableDroid (rumoured as terrible, but what can we do?). I'm not sure to what extent PokerPad is up-to-date, it used to work at least in the 'table under mouse' mode. I use basic self-written hotkeys just clicking iPoker's built-in buttons, but am too lazy to make them adjust to resizing a table (have tried several times but ran into bugs all the time, idk why).

Here they are, fwiw (unlike the previous version, the one written right now - upon seeing Nick's post - distinguishes iPoker windows from non-iPoker ones and does nothing if the window is non-iPoker, so can be used with other poker clients and hotkeys running):
Code:
; Betsizing script for iPoker by coon74 from 2+2
; to run it, copy it into an .ahk file and install AHK-L from autohotkey.com

; the author is not responsible for any losses caused by its use
; test at play money or nanostake tables first

; for minimum-sized (480x360) tables only!!!
; if you use bigger tables,
; measure your table width 'w' in pixels using Window Spy
; then replace all the numbers (coordinates) below by them multiplied by (w/480)

; Sends hotkeys to table under mouse!!!

SendMode Input
SetDefaultMouseSpeed, 0
CoordMode, Mouse, Relative

~F9:: ; F9 - right mouse button emulation
MouseGetPos,x,y,id
WinGetClass,winclass,ahk_id %id%
if winclass=PTIODEVICE
 Click Right
return             

~RButton::   ; (Speed) Fold (or advance fold checkbox) - right mouse button
MouseGetPos,x,y,id
	WinGetClass,winclass,ahk_id %id%
	if winclass=PTIODEVICE
	{
      ControlClick, x300 y330, ahk_id %id% ; first click traditional Fold
	 	 ;ControlClick, x230 y330, ahk_id %id% and then Speed Fold if it is present             
}
return

~MButton::   ; (Advance) Check or Call - middle mouse button
MouseGetPos,x,y,id
	WinGetClass,winclass,ahk_id %id%
	if winclass=PTIODEVICE
      ControlClick, x360 y330, ahk_id %id%        
return

~F6::   ; F6 - iPoker's left sizing button
  MouseGetPos,x,y,id
	WinGetClass,winclass,ahk_id %id%
	if winclass=PTIODEVICE
	{
	IfWinNotActive, ahk_id %id%
        WinActivate, ahk_id %id%
	Click, 295, 295
IfWinNotActive, ahk_id %id%
        WinActivate, ahk_id %id%	
      Click, 405, 330
	IfWinNotActive, ahk_id %id%
        WinActivate, ahk_id %id%
      MouseMove, %x%, %y%
}
return

~F7::   ; F7 - iPoker's middle sizing button
MouseGetPos,x,y,id
	WinGetClass,winclass,ahk_id %id%
	if winclass=PTIODEVICE
	{
	IfWinNotActive, ahk_id %id%
        WinActivate, ahk_id %id%
	Click, 350, 295
IfWinNotActive, ahk_id %id%
        WinActivate, ahk_id %id%	
      Click, 405, 330
	IfWinNotActive, ahk_id %id%
        WinActivate, ahk_id %id%
      MouseMove, %x%, %y%
	ControlClick, x350 y295, ahk_id %id%
IfWinNotActive, ahk_id %id%
        WinActivate, ahk_id %id%	
      Click, 405, 330
IfWinNotActive, ahk_id %id%
        WinActivate, ahk_id %id%
      MouseMove, %x%, %y%
}	  
return

~F8::   ; F8 - iPoker's right sizing button
 MouseGetPos,x,y,id
	WinGetClass,winclass,ahk_id %id%
	if winclass=PTIODEVICE
	{
	IfWinNotActive, ahk_id %id%
        WinActivate, ahk_id %id%
	Click, 405, 295
IfWinNotActive, ahk_id %id%
        WinActivate, ahk_id %id%	
      Click, 405, 330
	IfWinNotActive, ahk_id %id%
        WinActivate, ahk_id %id%
      MouseMove, %x%, %y%
}	  
return
***Official IPOKER/ONGAME/MPN/PARTY/MERGE/REVOLUTION Regulars Thread**** Quote
02-11-2014 , 12:40 AM
Thanks

I guess I'll give tabledroid a try since everything else I've seen confuses me.
***Official IPOKER/ONGAME/MPN/PARTY/MERGE/REVOLUTION Regulars Thread**** Quote
02-11-2014 , 05:37 AM
Also, afaik Universal Poker Table Organiser has hotkeys too (though its main feature is arranging table positioning ).
***Official IPOKER/ONGAME/MPN/PARTY/MERGE/REVOLUTION Regulars Thread**** Quote
02-11-2014 , 09:58 AM
Stack and Tile
***Official IPOKER/ONGAME/MPN/PARTY/MERGE/REVOLUTION Regulars Thread**** Quote
02-17-2014 , 06:19 AM
wanna publicly thank Betfair for their support and how they handled my request for reimbursement due to technical trouble.

i won a 300bb pot and the table stuck. action was running at other tables, but that one table was stuck/frozen, we were at showdown, all hole cards were shown but the pot wasn't shipped to me. soon after other tables started freezing. at this point i started firing screenshots of all tables, cashier etc...after ~5min the software crashed and i couldnt log in for 2-3 hours. when i logged back in, i noticed that i wasn't rewarded with the pot(s) that i had won.

i sent a complaint/request for reimbursement with a very detailed explanations (After a couple of emails back and forth), and finally after 10-14 i received the reimbursement. they even reimbursed me for another pot which i didnt ask reimbursement for, since i couldn't provide them with the hand ID number.

Betfair handled the situation very professionally and i was very delighted with their decision to reimburse me.
***Official IPOKER/ONGAME/MPN/PARTY/MERGE/REVOLUTION Regulars Thread**** Quote
02-17-2014 , 09:43 AM
great, now they're gonna have to bump their commission to 7%

***Official IPOKER/ONGAME/MPN/PARTY/MERGE/REVOLUTION Regulars Thread**** Quote
02-17-2014 , 10:16 PM
Quote:
Originally Posted by napsus
wanna publicly thank Betfair for their support and how they handled my request for reimbursement due to technical trouble.
Glad to hear, now thank all other skins for simply having fewer technical troubles (Though WH and, reportedly, Titan and Poker770 are not far behind in this respect )
***Official IPOKER/ONGAME/MPN/PARTY/MERGE/REVOLUTION Regulars Thread**** Quote
02-19-2014 , 09:44 AM
Quote:
Originally Posted by dietorellex
Any good regs at ipoker plo50 & 100?
Got a few mates who grind these but don't use 2+2. PM me and ill hook you up
***Official IPOKER/ONGAME/MPN/PARTY/MERGE/REVOLUTION Regulars Thread**** Quote
02-19-2014 , 09:45 AM
Quote:
Originally Posted by napsus
wanna publicly thank Betfair for their support and how they handled my request for reimbursement due to technical trouble.

i won a 300bb pot and the table stuck. action was running at other tables, but that one table was stuck/frozen, we were at showdown, all hole cards were shown but the pot wasn't shipped to me. soon after other tables started freezing. at this point i started firing screenshots of all tables, cashier etc...after ~5min the software crashed and i couldnt log in for 2-3 hours. when i logged back in, i noticed that i wasn't rewarded with the pot(s) that i had won.

i sent a complaint/request for reimbursement with a very detailed explanations (After a couple of emails back and forth), and finally after 10-14 i received the reimbursement. they even reimbursed me for another pot which i didnt ask reimbursement for, since i couldn't provide them with the hand ID number.

Betfair handled the situation very professionally and i was very delighted with their decision to reimburse me.
yeh Betfair are one of the good guys for sure. Lets hope this is the end of all problems like this. The disconnects were just brutal. All working fine for me now...same for you?
***Official IPOKER/ONGAME/MPN/PARTY/MERGE/REVOLUTION Regulars Thread**** Quote
02-19-2014 , 03:11 PM
Quote:
Originally Posted by jonlundy
yeh Betfair are one of the good guys for sure.
Icwudt, Jon (But Paddy is da nuts, giving away so many Irish Open tickets, innit? It seems to freeze the least for me, btw, only several times and for less than a minute each. However, there was a Paddy bug on Feb 12th ~10-11 PM GMT that prevented me from registering in tourneys, not present at some other skins because other people were registering and SnGs were running on the network.)

Last edited by coon74; 02-19-2014 at 03:19 PM.
***Official IPOKER/ONGAME/MPN/PARTY/MERGE/REVOLUTION Regulars Thread**** Quote
02-19-2014 , 05:10 PM
Slowest days of the week on Ipoker; PLO €10 and €20, anyone?
***Official IPOKER/ONGAME/MPN/PARTY/MERGE/REVOLUTION Regulars Thread**** Quote
02-21-2014 , 06:26 AM
So does Ipoker tier's 1 and 2 mean that they have different player pools? If so, what's the PLO traffic on tier 1 mid/low stakes?
***Official IPOKER/ONGAME/MPN/PARTY/MERGE/REVOLUTION Regulars Thread**** Quote

      
m