Open Side Menu Go to the Top
Register
***The OFFICIAL 2013 Microgaming Regulars Thread*** ***The OFFICIAL 2013 Microgaming Regulars Thread***

09-01-2013 , 05:51 PM
Quote:
Originally Posted by PeoplesElbow
is this still the case with hem? I just moved to Prima 100nl, I can only get one HUD up the rest dont show

thanks
yes and I don't think there is a hope w/ hm2 and pt
problem is that hud on that one table is not accurate as it's showing stats and hands from all anonymous tables you curently play
09-02-2013 , 06:05 AM
they were looking into a fix for HEM but were warned off by MG so they canned it.
09-02-2013 , 11:21 AM
Is there any Program or script, i can buy or download for free in order i can have at least the autotimebanking working ?

TY!
09-02-2013 , 12:37 PM
anyone calculated when you should opt in for jackpot?
09-02-2013 , 01:05 PM
Quote:
Originally Posted by Nordino
It looks like you guys are serious and not trying to troll me, so I am going to make a guess that standard tables have better features than the Blaze poker tables have??

There is a lot of things that really piss me off with the Blaze tables that could easily be fixed:

1) No miniview possible

2) If you tile tables and have 2 screens, they will be allocated between the 2 screens and not on one screen

3) If you make a custom table layout, it will work only the first time you open tables. If you quit and rejoin a table it will always appear overlapping another table.

4) NOTES!!! Its ****ing impossible to take notes of players. This is Blaze poker and you HAVE to take notes while you are at the table with the player you want to take note of. If you click the note button and move on to the next hand while writing, then notes are not saved.

5) It shouldnt take 5 clicks to take a note or color code a player! Jesus.

6) I have experienced notes taken on a few players appear on OTHER players. Insane.

Probably a lot of other flaws too that I cant remember right now. This is just after 1 day of play.
Yes,Blaze poker is kinda new for microgaming,so wouldnt recommend u playing there for the reasons u stated(although have to admit fishes are A LOT @ 50nl)Normal tables are pretty good and way more superior than the blaze ones
Quote:
Originally Posted by PeoplesElbow
is this still the case with hem? I just moved to Prima 100nl, I can only get one HUD up the rest dont show

thanks
Yes,ppls,HM2 won't be releasing any fix on that soon,but AFAIK PT4 is working fine with the anon tables,you just have to manually place it on the different players.
Im playing @ 100nl aswell,PM Me with ur sn if u want so we can stay away from each other ..and maybe discuss some hands/lines etc?
Cheers
ps: ALEXXXXANDER it wouldve been worth to opt in when it was 200K euros+,now its just a waste of money.IT barely gets over 15-20k-ish
09-02-2013 , 02:49 PM
Hi,

Anyone had any problems with missing handhistories from the blaze heads-up tables? I played there for the first time today and my HEM and accountbalance at unibet is off with about 1000€.
09-03-2013 , 04:56 PM
Most HHs dont get recorded in the MG HH file, only winning ones. Thats probably the reason why you think you have won 1000 euros more than you actually have.
09-05-2013 , 04:45 AM
So is there any way to know how many hands you've played in a day/month/overall?
09-05-2013 , 04:20 PM
Quote:
Originally Posted by jlevu
So is there any way to know how many hands you've played in a day/month/overall?
ask support to send your hand histories and/or playing audit.
09-05-2013 , 04:36 PM
As I understand it, the hh don't get saved so support could not send them to you?
09-05-2013 , 05:24 PM
I'm not 100% sure (maybe like 90%) if it was on MG but I remember once that I asked them for the last 5k hands I played and they sent me some excel file w/ hh in it. I tried for a few days to somehow import it into HM2 but didn't have any luck
09-05-2013 , 08:39 PM
Can anyone else confirm, please, that the top-up errors seem to occur less but are still not solved? And I am once again missing thousands from my account at the end of the day after experiencing top up issues on betsafe.
09-05-2013 , 09:31 PM
just happened to me first was the top up error and even when i opted to top up my stack remain the same after that i was ending my session and all the money from 4 tables was stuck.this was on betsafe.their site is all messed up now and when i try to login some script errors appear.anyone having the same problem?
09-06-2013 , 01:10 AM
They are running maintenance. I am sure everything will be fixed after that, including any $$ missed from your accounts.
09-06-2013 , 01:47 AM
Yeah I've had those weird script issues happen on and off for years at different skins. Same problem with website. We'll see what happens tomorrow.
09-06-2013 , 02:34 AM
Quote:
Originally Posted by DragonRib
Is there any Program or script, i can buy or download for free in order i can have at least the autotimebanking working ?

TY!
this... all of the ones i found via search didn't work.
09-06-2013 , 07:26 AM
Quote:
Originally Posted by gwai lo
this... all of the ones i found via search didn't work.
Sure they work.

This one works in Miniview, Racetrack View, Blaze tables, NL, Play Money. Don't know if it works in Real Money tables, PLO, MTT, SNG, etc, because i didn't test it, but it should work. It doesn't work on Arcade View.


Code:
;Prima Auto Time Bank v0.1
;writen by boske @ 2+2 forums

;settings
clearChat := 1 ;set to 0 for use with the grabber

;start of code
#persistent
#NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
#SingleInstance Force
SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.

SysGet, border, 32
SysGet, caption, 4
caption := border + caption
tableSize := 0
SetControlDelay -1

player_action = bet, called, raised, went all-in, posted, wins, returned, folded, shows, mucked, checked

SetTimer, UpdateTables, 1000
return

UpdateTables:
SetTitleMatchMode 2
winget, tables, list, ahk_class GFX_INT_DLG_WINDOW_GAME

loop, %tables%
{


	id := tables%a_index%
	clicked_%id% := clicked_%id%

	WinGetTitle, title, ahk_id%id%
	
        StringReplace, title, title, €, $, All
	StringReplace, title, title, Ł,$,All
	


        if(!hero)
	{
	  StringMid, hero, title, InStr(title, " - $")-1, , L

	  StringTrimLeft, hero, hero, InStr(hero, " - ", true, 0)+2
	}


	tablename := SubStr(title,Instr(title, "$"))
	tablename := SubStr(tablename,Instr(tablename, " ")+3)
	StringLeft, tablename, tablename, Instr(tablename,"[")-2

	WinGet, maximized, MinMax, ahk_id %id%
	if (maximized = -1)
		continue ;check other tables

	tablesize := GetTableSize(id)
	
	checkTable(id)
	
}
return

checkTable(id)
{
	global tablesize, hero, player_action, ClearChat
	
	ControlGetText, hh, RichEdit20W1, ahk_id%id%
	if(ClearChat)
	{
	  ControlSetText, RichEdit20W1, , ahk_id%id% ; blank the chat so any changes to the chatbox can be easily detected and appended in future SetText commands
	}

	loop, Parse, hh, `n
	{
		if InStr(a_loopfield, "posted small blind")
		{
			first_line := a_index ; first line of current hand
		}

		if(InStr(a_loopfield, hero) && InStr(a_loopfield, "to respond"))
		{
; > hero, you have 10 seconds to respond
			StringTrimLeft, timeleft, a_loopfield, InStr(a_loopfield, "have ")+4
			timeleft := SubStr(timeleft, 1, InStr(timeleft, " ")-1)
;msgbox %timeleft%
			if(timeleft == 10 && clicked_%id% == 0)
			{
			  timeNeeded := 1
			}
		}
		else
		{ ;only if last action
			if( a_loopfield contains player_action )
			{
				timeNeeded := 0
				clicked_%id% := 0
			}
		}
	}
	if(timeNeeded)
	{	
		clickTimeBank(id)
		clicked_%id% := 1
	}
	if(ClearChat)
	{
		loop, Parse, hh, `n
		{
			if(a_index >= first_line) ;current hand
			{
				if (hh3 == "")
				  hh3 := a_loopfield	
				else
				  hh3 := hh3 . "`n" . a_loopfield ; append lines of active hand
			}
		}

		;detect changes to the chatbox since blanked
		ControlGetText, hh4, RichEdit20W1, ahk_id%id%
		If hh4 <> ""
		  hh3 := hh3 . hh4 ; append any changes in the chatbox to hh3

		ControlSetText, RichEdit20W1, %hh3%, ahk_id%id%
	}
}

clickTimeBank(id)
{
	global tablesize, border

	if(tablesize == 2)
	{
		PostLeftClick(345,200,id,0)
	}
	if(tablesize == 3)
	{
		PostLeftClick(440,395,id,0)
	}
	if(tablesize == 1)
	{
		x := 440
		y := 400
		WinGetPos, , ,w , , ahk_id %id%
		w := w - (2*border)
		factor := w/808

		x := Round(x*factor)
		y := Round(y*factor)
		
		PostLeftClick(x,y,id,0)
	}


}


;returns 1 if normal table, 2 if mini table, 3 if large table
getTableSize(id)
{
	WinGetPos, , ,w ,h , ahk_id %id%

	if (h == 367)
		return 2
	if (w == 1024)
		return 3
	else
		return 1
}


;Juks rocks
PostLeftClick(x, y, table_id, activate=0) {
; ### JUK: Send the down left click, then the mouse-up messages.
; NOTE: This is relative to the top left of the client area and NOT the top left of the
;       window (ie: It *doesn't* include the title-bar like AHK's MouseClick does!!!).
If activate
 WinActivate, ahk_id%table_id%
PostMessage, 0x201, 0x0001, ((y<<16)^x), , ahk_id%table_id%
PostMessage, 0x202 , 0, ((y<<16)^x), , ahk_id%table_id%
}
09-06-2013 , 10:51 AM
Is the poker club down for all of u or is it just me?Cant exchange my points for cash
09-06-2013 , 08:08 PM
This is usually not my style, but holy **** KurcaBaka is an awful player.
09-07-2013 , 03:04 AM
I think you're gonna have to provide us with some HHs here buddy
09-07-2013 , 06:34 AM
What are the best/safest MG skins and what type of rakeback deal can I expect?
09-07-2013 , 09:40 AM
Quote:
Originally Posted by Invoker
This is usually not my style, but holy **** KurcaBaka is an awful player.

Sure is... Long as he keeps joining 10 20 i dont care how much suckouts he can do.
09-07-2013 , 09:40 AM
Quote:
Originally Posted by KlNG KONG
What are the best/safest MG skins and what type of rakeback deal can I expect?
They are all one big happy familey
09-07-2013 , 10:17 AM
Quote:
Originally Posted by imfromsweden
I think you're gonna have to provide us with some HHs here buddy
Why would I point out his leaks if he's on 2p2? seems like a stupid idea. He just has terrible manners, hit'n run me HU several times, so think he deserved to know how terrible weak his game is, but he probably already knows that rakeback pro ftw.
09-07-2013 , 12:00 PM
Hey guys first post here (been lurking around quite a bit) sorry for essay..

tl;dr: Has any1 had problems with microgaming not paying you for your SnG challenge efforts and saying u were not on the list when u were removed from it?

I've been on the 24h poker skin for a few months now and all was going fine until this month when a problem arose with regards to the SnG challenge that microgaming/certain skins were running (the promo similar to the stars bop).

After placing 6th (5-9.99limit) 3rd (10-19.99limit) 26th (30+limit) for a total of 296 euro(not much i know but still) for the August challenge month I was removed from the list on the 1st September when I went back to check where I had finished up.

To this date I have not been paid yet and was told by 24h poker support that I was not on the lists microgaming had sent them. I was also told (by 24h support) prior to this that the reason I was not on the list was because 24h poker had pulled out of the promotion from September onward.

Some important evidence to this issue is that I am not even on the lists for the July month. In that month I was paid around 105 euros for my efforts which proves that I was on that list.

I'll stop here as its a bit of a long post oops! If any1 has any info/similar problems please get in touch

      
m