Open Side Menu Go to the Top
Register
888/Party/StarsCaption 888/Party/StarsCaption

07-29-2022 , 03:00 PM
Quote:
Originally Posted by Annuit20
Hey LikeAA,

But is it possible to use the small Player-Pots or more important just big cards on the non simplified tablke size?
I don't know, sorry.

You can use cxmConverter to unpack any 888 layout file. There are no default controls to convert cjs files, but you can rename tableConfiguration.cjs to .cxm and then use cxmConverter to unpack it.

As for cards back - I don't know too, but I think you can try to find files you need somewhere in layout files.
888/Party/StarsCaption Quote
07-29-2022 , 05:51 PM
Hey,

that cjs to cxm will help me. I uses the converter to try change in tableoptions but this had no affect.
Thank you!
888/Party/StarsCaption Quote
07-30-2022 , 08:50 AM
Hey,

it does the trick. Thank you!
One thing would be nice if you can integrated into 888Caption: move heros Stack to under cards. Atm i use a Hud to cover the origin and use a second Hud with hero stack formula (can't find the file to edit it).
But now its nicely playable for me anyways.
The family will complete with the last missing 888Caption
btw is there any triple subscription option?

Last edited by Annuit20; 07-30-2022 at 08:58 AM.
888/Party/StarsCaption Quote
07-30-2022 , 10:30 AM
Quote:
Originally Posted by LikeAA
Can you show me how this buttons panel looks at this moment?
I can test StarsCaption on playmoney tables only now and there are no fast deposit button
1st hand one table:


2nd hand one table


3rd hand two tables



but i think works ok just now with 1.03c version
888/Party/StarsCaption Quote
07-31-2022 , 12:45 PM
Hey, just to let you know. I think version 1.03c has a bug where new tables are sometimes being loaded into replayer slot.
(Can't use hotkeys, hud not being displayed)
I downgraded to version 1.03 and everything is ok.
888/Party/StarsCaption Quote
07-31-2022 , 01:52 PM
Quote:
Originally Posted by co'ka
Hey, just to let you know. I think version 1.03c has a bug where new tables are sometimes being loaded into replayer slot.
(Can't use hotkeys, hud not being displayed)
I downgraded to version 1.03 and everything is ok.
Hi
Yes, some users have reported this.
You can try to choose different option in Options / Replayer slot / vDetect. These are various algorithms by which the program determines the replayer. Unfortunately on the new tables none of them work 100% correctly, but I will try to make some improvements tomorrow in options 3 and 4.
888/Party/StarsCaption Quote
07-31-2022 , 03:16 PM
any chance you can allow us to shrink or crop party poker's lobby.

it is a monster size
888/Party/StarsCaption Quote
07-31-2022 , 04:01 PM
Hey,

one super big annoying think.
If I use the bring table to foreground option in 888Caption the hud flickers. Less when coming from a other 888 Window but huge when come from other window.
I try and use these ahk and with this there is zero flicker but it has other down sides.
Please try to remove this flicker!

Spoiler:

Code:

#Persistent


hover_task_buttons  = 0 ; hover over taskbar button to activate window
  hover_task_group  = 0 ; hover to select (or exit) from a window-group menu
                        ; (for Windows' "Group similar taskbar buttons" feature)
hover_task_min_info = 0 ; only show info for minimized windows, don't activate
hover_start_button  = 1 ; hover over start button to open start menu
hover_min_max       = 0 ; minimize or maximize by hovering over the min/max buttons
hover_any_window    = 1 ; activate any window by hovering (except the taskbar)

hover_no_buttons    = 0 ; ignore hover if a mouse button is in the down state

hover_delay       = 0 ; hover delay, from when the mouse stops moving

; WORKS, BUT NOT PERFECTLY: (brings the window forward, then puts it back in place)
hover_keep_zorder   = 0 ; don't bring windows forward, only activate them

;
; DisableHover - since menus aren't usually truly "activated", if any
;   window in the DisableHover group *EXISTS*, hover will be ignored.
;
GroupAdd, DisableHover, ahk_class #32768

; I'm not certain whether this class is used only for menus;
; if not, you may need to comment out this line.
GroupAdd, DisableHover, ahk_class MozillaDropShadowWindowClass


CoordMode, Mouse, Screen
SetTimer, hovercheck, 10
return


; Don't consider it hovering if the mouse was clicked.
; However, clicking and then moving a small amount will still trigger hover.
~LButton::
~RButton::
~MButton::
    MouseGetPos, lastx, lasty
return


hovercheck:
    MouseGetPos, x, y
    if (x != lastx or y != lasty)
    {
        SetTimer, hovering, % -hover_delay
        lastx := x
        lasty := y

        if (remove_ttip_on_move)
        {
            ToolTip
            remove_ttip_on_move := false
        }
    }
return


hovering:
    if (hover_no_buttons && (GetKeyState("LButton") or GetKeyState("RButton")))
        return
   
    if (WinExist("ahk_group DisableHover"))
        return

; hover over taskbar button to activate window:
    if (hover_task_buttons)
    {   ; hovering over taskbar button.
        if (GetMouseTaskButton(win))
        {
            if (win)
            {
                if (hover_task_min_info)
                {
                    WinGet, min_max, MinMax, ahk_id %win%
                    if (min_max = -1)
                    {
                        WinGetTitle, ti, ahk_id %win%
                        ToolTip, %ti% (minimized)
                        remove_ttip_on_move := true
                        return
                    }
                }
                if (hover_keep_zorder)
                {
                    JustActivate(win)
                    return
                }
                WinActivate, ahk_id %win%
            }
            ; May be a group button ("Group similar taskbar buttons")
            else
                Click
            return
        }
        else if (hover_task_group && WinActive("ahk_class Shell_TrayWnd"))
        {   ; Check if we are hovering over a toolbar window,
            ; possibly a list of grouped buttons/windows.
            MouseGetPos,,, win, ctl, 2
            ctl_parent := DllCall("GetParent", "uint", ctl) ; get control parent
            WinGetClass, ctl, ahk_id %ctl%                  ; get control class
            WinGetClass, ctl_parent, ahk_id %ctl_parent%    ; get parent class
            WinGetClass, win, ahk_id %win%                  ; get window class
            if (win="BaseBar"                       ; probably a button group menu
                || (win="Shell_TrayWnd"             ; taskbar
                 && ctl_parent="MSTaskSwWClass"))   ; task buttons
                Click
            ; (The win="BaseBar" check excludes the system notification area.)
            return
        }
    }
; hover over start button to open start menu:
    if (hover_start_button && !WinActive("ahk_class DV2ControlHost")) ; Start Menu
    {
        MouseGetPos,,, win, ctl
        WinGetTitle, ti, ahk_id %win%
        WinGetClass, cl, ahk_id %win%
        if (A_OSVersion = "WIN_VISTA" && (cl = "Button" && ti = "Start"))
            or (cl = "Shell_TrayWnd" && ctl = "Button1")
        {
            Click
            return
        }
    }
; hover over minimize, maximize or help buttons on titlebar:
    if (hover_min_max)
    {
        MouseGetPos, x, y, win, ctl, 2
        SendMessage, 0x84,, (x & 0xFFFF) | (y & 0xFFFF) << 16,, % "ahk_id " (ctl ? ctl : win)
        if ErrorLevel in 8,9  ; min,max (titlebar)
        {
            Click
            return
        }
    }
; hover over any window to focus:
    if (hover_any_window)
    {
        ifWinExist, ahk_id %win% ahk_class Shell_TrayWnd
            return  ; don't activate the taskbar
        MouseGetPos,,, win
        if (!WinActive("ahk_id " win)) {
            if (hover_keep_zorder)
                JustActivate(win)
            else
                WinActivate, ahk_id %win%
        }
    }
return


JustActivate(hwnd)
{
    if (WinActive("ahk_id " hwnd))
        return
   
    ; Get the window which hwnd is positioned after, so hwnd's position
    ; in the z-order can be restored after activation.   
    hwnd_prev := GetPrevWindow(hwnd)
    ; DllCall("GetWindow","uint",hwnd,"uint",3) would be simpler,
    ; but doesn't work right since it usually gets an invisible window
    ; which moves when we activate hwnd.
   
    ; Repositioning a window in the z-order sometimes sets AlwaysOnTop.
    WinGet, OldExStyle, ExStyle, ahk_id %hwnd%
   
    ;WinActivate, ahk_id %hwnd%  ; -- best to use SetWinDelay,-1 if using WinActivate.
    DllCall("SetForegroundWindow", "uint", hwnd)
    DllCall("SetWindowPos", "uint", hwnd, "uint", hwnd_prev
        , "int", 0, "int", 0, "int", 0, "int", 0
        , "uint", 0x13)  ; NOSIZE|NOMOVE|NOACTIVATE (0x1|0x2|0x10)
   
    ; Note NOACTIVATE above: if this is not specified, SetWindowPos activates
    ; the window, bringing it forward (effectively ignoring hwnd_prev...)

    ; Check if AlwaysOnTop status changed.   
    WinGet, ExStyle, ExStyle, ahk_id %hwnd%
    if (OldExStyle ^ ExStyle) & 0x8
        WinSet, AlwaysOnTop, Toggle
}

; Like GetWindow(hwnd, GW_HWNDPREV), but ignores invisible windows.
GetPrevWindow(hwnd)
{
    global GetPrevWindow_RetVal

    static cb_EnumChildProc
    if (!cb_EnumChildProc)
        cb_EnumChildProc := RegisterCallback("GetPrevWindow_EnumChildProc","F")

    ; Set default in case enumeration fails.
    GetPrevWindow_RetVal := DllCall("GetWindow", "uint", hwnd, "uint", 3)
   
    ; Enumerate all siblings of hwnd.
    hwnd_parent := DllCall("GetParent", "uint", hwnd)
    DllCall("EnumChildWindows", "uint", hwnd_parent, "uint", cb_EnumChildProc, "uint", hwnd)
   
    ; Return the last visible window before hwnd.
    return GetPrevWindow_RetVal
}
GetPrevWindow_EnumChildProc(test_hwnd, hwnd)
{
    global GetPrevWindow_RetVal
    ; Continue until hwnd is enumerated.
    if (test_hwnd = hwnd)
        return false
    ; Remember the last visible window before hwnd.
    if (DllCall("IsWindowVisible", "uint", test_hwnd))
        GetPrevWindow_RetVal := test_hwnd
    return true
}


; Gets the index+1 of the taskbar button which the mouse is hovering over.
; Returns an empty string if the mouse is not over the taskbar's task toolbar.
;
; Some code and inspiration from Sean's TaskButton.ahk
GetMouseTaskButton(ByRef hwnd)
{
    MouseGetPos, x, y, win, ctl, 2
    ; Check if hovering over taskbar.
    WinGetClass, cl, ahk_id %win%
    if (cl != "Shell_TrayWnd")
        return
    ; Check if hovering over a Toolbar.
    WinGetClass, cl, ahk_id %ctl%
    if (cl != "ToolbarWindow32")
        return
    ; Check if hovering over task-switching buttons (specific toolbar).
    hParent := DllCall("GetParent", "Uint", ctl)
    WinGetClass, cl, ahk_id %hParent%
    if (cl != "MSTaskSwWClass")
        return

   
    WinGet, pidTaskbar, PID, ahk_class Shell_TrayWnd

    hProc := DllCall("OpenProcess", "Uint", 0x38, "int", 0, "Uint", pidTaskbar)
    pRB := DllCall("VirtualAllocEx", "Uint", hProc
        , "Uint", 0, "Uint", 20, "Uint", 0x1000, "Uint", 0x4)

    VarSetCapacity(pt, 8, 0)
    NumPut(x, pt, 0, "int")
    NumPut(y, pt, 4, "int")
   
    ; Convert screen coords to toolbar-client-area coords.
    DllCall("ScreenToClient", "uint", ctl, "uint", &pt)
   
    ; Write POINT into explorer.exe.
    DllCall("WriteProcessMemory", "uint", hProc, "uint", pRB+0, "uint", &pt, "uint", 8, "uint", 0)

;     SendMessage, 0x447,,,, ahk_id %ctl%  ; TB_GETHOTITEM
    SendMessage, 0x445, 0, pRB,, ahk_id %ctl%  ; TB_HITTEST
    btn_index := ErrorLevel
    ; Convert btn_index to a signed int, since result may be -1 if no 'hot' item.
    if btn_index > 0x7FFFFFFF
        btn_index := -(~btn_index) - 1
   
   
    if (btn_index > -1)
    {
        ; Get button info.
        SendMessage, 0x417, btn_index, pRB,, ahk_id %ctl%   ; TB_GETBUTTON
   
        VarSetCapacity(btn, 20)
        DllCall("ReadProcessMemory", "Uint", hProc
            , "Uint", pRB, "Uint", &btn, "Uint", 20, "Uint", 0)
   
        state := NumGet(btn, 8, "UChar")  ; fsState
        pdata := NumGet(btn, 12, "UInt")  ; dwData
       
        ret := DllCall("ReadProcessMemory", "Uint", hProc
            , "Uint", pdata, "UintP", hwnd, "Uint", 4, "Uint", 0)
    } else
        hwnd = 0

       
    DllCall("VirtualFreeEx", "Uint", hProc, "Uint", pRB, "Uint", 0, "Uint", 0x8000)
    DllCall("CloseHandle", "Uint", hProc)


    ; Negative values indicate seperator items. (abs(btn_index) is the index)
    return btn_index > -1 ? btn_index+1 : 0


}
F9::Pause
888/Party/StarsCaption Quote
07-31-2022 , 10:16 PM
On 888caption, i use the hotkey spacebar to cycle forward in the hotkeys/basic hotkeys tab. But when i press the spacebar, it doesn't work? It shows the word Space on it in cycle forward. Is there a reason why that doesn't work? Stars work with it. I believe I had this similar issue a while back on partycaption and I think you said you couldn't use the spacebar as they hotkey for that? Or is it something else? Because the spacebar was fine for that hotkey on 888.
888/Party/StarsCaption Quote
08-01-2022 , 03:09 AM
Quote:
Originally Posted by teddybloat
any chance you can allow us to shrink or crop party poker's lobby.

it is a monster size
Ok I'll think about it.

For now you can try to use Table manager 2 in StarsCaption for this. TM2 can resize windows less than the minimum size, so you can create a table type a and slot specifically for partypoker lobby:



Also turn off this table type for all slots except this one (in Slot options / Use for table types)
888/Party/StarsCaption Quote
08-01-2022 , 03:11 AM
Quote:
Originally Posted by Annuit20
Hey,

one super big annoying think.
If I use the bring table to foreground option in 888Caption the hud flickers. Less when coming from a other 888 Window but huge when come from other window.
I try and use these ahk and with this there is zero flicker but it has other down sides.
Please try to remove this flicker!
Hi
If you have HUD / Hovering HUD enabled, then try to disable it.
Restart tables or 888Caption after it if you have any tables opened.
888/Party/StarsCaption Quote
08-01-2022 , 03:15 AM
Quote:
Originally Posted by PaulyJames200x
On 888caption, i use the hotkey spacebar to cycle forward in the hotkeys/basic hotkeys tab. But when i press the spacebar, it doesn't work? It shows the word Space on it in cycle forward. Is there a reason why that doesn't work? Stars work with it. I believe I had this similar issue a while back on partycaption and I think you said you couldn't use the spacebar as they hotkey for that? Or is it something else? Because the spacebar was fine for that hotkey on 888.
Hi
In 888Caption cycling hotkeys work for table in stack only.
If you need these hotkeys for all tables, then you can try to use hotkeys in StarsCaption. Configure Table manager 2 to arrange 888poker tables, and turn on Hotkeys / Cycle tables / Cycle mode / Across Table manager 2 tables.
888/Party/StarsCaption Quote
08-01-2022 , 12:56 PM
Hey, starscaption is randomly locking up my keyboard and not allowing me to type. I'll open the client and everything will be working fine, then randomly (seemingly) after awhile I can't type anymore.

Has anyone experienced this?
888/Party/StarsCaption Quote
08-01-2022 , 01:59 PM
bachelder, keyboard stops working in all programs?

Does closing StarsCaption help?

Try to check, maybe one of Ctrl / Alt / Win keys is locked (press and release each of these keys on your keyboard, and check if it helps).
888/Party/StarsCaption Quote
08-01-2022 , 02:48 PM
Quote:
Originally Posted by Nitti Vitti
regarding spins registrator:

would that may be possible if you open 2 instances of starscaption:

first version: normal queue, sees all tables
second version: only opens the other tables - only sees it's own tables


first sees: 4+2 tables - so keeps it at 6 max
second: sees 2 -> keep it that way, if it drops it adds another one (but that way will never open another one, unless one is finished)


don't think that works .... but hey ... you never know
1) anything come out of that?

2) where to best renew my license (was it at hand2note somewhere?)

3) under table panels: you have "min startstack bb+"

is it possible to have "max startstack bb+" (and avg startstack bb+)

cheers!
888/Party/StarsCaption Quote
08-01-2022 , 03:11 PM
Quote:
Originally Posted by LikeAA
bachelder, keyboard stops working in all programs?

Does closing StarsCaption help?

Try to check, maybe one of Ctrl / Alt / Win keys is locked (press and release each of these keys on your keyboard, and check if it helps).
after I close the program the keyboard will continue to be locked and I have to restart my computer to correct it. But yeah it only locks up while using starscaption. It doesnt have to do with the ctrl/alt/windows key. It's not just the keyboard that glitches out, if I left click a file with my mouse I can't open it unless I right click the file and click open from the pop-up menu.

I really don't want to uninstall and re-install the program because it took a long time to set it up.
888/Party/StarsCaption Quote
08-02-2022 , 02:00 AM
Quote:
Originally Posted by Nitti Vitti
1) anything come out of that?

2) where to best renew my license (was it at hand2note somewhere?)

3) under table panels: you have "min startstack bb+"

is it possible to have "max startstack bb+" (and avg startstack bb+)

cheers!
Hi

1) Sorry, no. I don't see an easy way to implement this unfortunately.

2) It depends on what way you can use for payment.
If you have USDT / BTC / other crypto, then I can accept it directly,
If you want to pay by Skrill, use Hand2NoteProTools,
If you want to pay by Paypal, use PokerEnergy,
etc.

3) Ok I'll try to add [maxStartStack_bb+] and [avStartStack_bb+]
888/Party/StarsCaption Quote
08-02-2022 , 02:09 AM
Quote:
Originally Posted by bachelder
after I close the program the keyboard will continue to be locked and I have to restart my computer to correct it. But yeah it only locks up while using starscaption. It doesnt have to do with the ctrl/alt/windows key. It's not just the keyboard that glitches out, if I left click a file with my mouse I can't open it unless I right click the file and click open from the pop-up menu.

I really don't want to uninstall and re-install the program because it took a long time to set it up.
In any case, try pressing and releasing the left Ctrl, then right Ctrl, left Alt, right Alt, etc.

Until you check it, you won't know if it's the cause or something else.
I don't mean that it's a mechanical problem in your keyboard. Some programs can block keyboard events, and StarsCaption does this too (and I think PokerStars client too).
If the system detected the Ctrl being pressed, but missed the releasing, then all subsequent presses will occur as if the control is still pressed. You won't be able to type in this mode, and mouse clicks won't work properly either, because the left mouse click is different from the control-click.

If this really helps, then you can look for the reason why this is happening.

Perhaps the program or poker client is not configured to run as admin, you can also try some other things.

As for re-install, you can save the settings (via Options / Save settings backup) before it.
888/Party/StarsCaption Quote
08-02-2022 , 09:52 AM
In starscaption I am having an issue in the last couple of days that my hotkey will not open the replayer. Just wondering if anyone else is having the issue. It was working fine until now.
888/Party/StarsCaption Quote
08-02-2022 , 11:35 AM
Quote:
Originally Posted by soinana
In starscaption I am having an issue in the last couple of days that my hotkey will not open the replayer. Just wondering if anyone else is having the issue. It was working fine until now.
Try to install StarsCaption v1.03d if you have any other version.

Let me know if it helps.
888/Party/StarsCaption Quote
08-02-2022 , 03:00 PM
The betting hotkeys and cycle across check mark worked earlier. But now it doesn't on 888?
888/Party/StarsCaption Quote
08-03-2022 , 01:30 AM
Quote:
Originally Posted by PaulyJames200x
The betting hotkeys
Do you mean 888Caption or StarsCaption betting hotkeys?

Quote:
Originally Posted by PaulyJames200x
cycle across check mark worked earlier. But now it doesn't on 888?
Do you mean Hotkeys / Cycle tables / Cycle mode / Across Table manager 2 tables in StarsCaption for 888 tables?
Does Table manager 2 enabled and it configured to arrange 888 tables?
888/Party/StarsCaption Quote
08-03-2022 , 02:10 AM
I went to starscaption, hotkeys tab, basic hotkeys... cycle tables... i have the word space on cycle forward because I want the spacebar to do that. Then on cycle mode next to it... I have it on Across Table Manager 2 tables. This is on starscaption.



When you mentioned this earlier, it worked on 888 with the 888 tables. But now it doesn't. The spacebar doesn't work for some reason for this. I have starscaption and 888caption opened when playing on 888... reason being I use table manager 2 on starscaption for table management on 888.



On 888caption, hotkeys tab and basic hotkeys... where it shows cycle forward... it shows space there since that is the hotkey i want to cycle. The thing is a while back, the spacebar always worked for 888 tables when cycling forward back then. I remember whether I played on stars/888 at the same time or 888 only or 888/party at the same time, the spacebar worked for 888 tables unless I'm making a mistake? By default, what is checked on cycle mode? In stack or across ps tables? Back then I don't recall ever changing anything to that.
888/Party/StarsCaption Quote
08-03-2022 , 06:06 AM
Quote:
Originally Posted by PaulyJames200x
On 888caption, hotkeys tab and basic hotkeys... where it shows cycle forward... it shows space there since that is the hotkey i want to cycle. The thing is a while back, the spacebar always worked for 888 tables when cycling forward back then. I remember whether I played on stars/888 at the same time or 888 only or 888/party at the same time, the spacebar worked for 888 tables unless I'm making a mistake? By default, what is checked on cycle mode? In stack or across ps tables? Back then I don't recall ever changing anything to that.
Why do you have Space there if you have it configured for cycle tables in StarsCaption?
Turn off this hotkey in 888Caption.
888/Party/StarsCaption Quote
08-03-2022 , 07:10 AM
There are a couple of tags/OnClick options available relating to spin registration in StarsCaption for the General HUD that I'd very much appreciate being added to the PartyCaption version, if possible. Specifially; Tags- [SpinsReg_state], [SpinsReg_number] / OnClick- 'Toggle Spins Registrator', 'Increase Spins to keep playing', 'Decrease Spins to keep playing'. Cheers
888/Party/StarsCaption Quote

      
m