Open Side Menu Go to the Top
Register
Playing Poker at Work Playing Poker at Work

10-15-2008 , 08:09 PM
Does anyone know any programs to assist in playing poker at work?

I four table at stars, and if my boss comes into the office, instantly closing the entire program (and losing my note filled tables, stacks, etc) seems to be the safest way of not getting caught.

Otherwise, just sitting out at tables is risky because the tables pop up when prompted for action. Or they see the program in the side bar.

Ideally a program would minimize the program, without closing it, but override any prompts.

Any advice?
Playing Poker at Work Quote
10-15-2008 , 11:49 PM
You could try:
http://www.wickss.com/ahk/starshotkeys/

You can bind hotkeys to Sit out on all tables, and Close All tables, not sure if this will work for your situation.
Playing Poker at Work Quote
10-15-2008 , 11:52 PM
degen imo
Playing Poker at Work Quote
10-16-2008 , 03:22 AM
You could easily let an AHK script hide/unhide lobby + tables with a hotkey imo. I'll have a look.


edit:
OK for Stars:

Code:
;StarsStealthMode
; AutoHotkey Version: 1.0.47.1
; Language:       English
; Platform:       Win9x/NT
; Author:         Everlong@2p2 / Calling_St@Stoxpoker
;
; Script Function: Hide / Unhide Stars with Hotkey

#NoEnv 
SendMode Input
SetWorkingDir %A_ScriptDir%
;======================================================
F5::
SetTitleMatchMode, 2
GroupAdd, Stars, PokerStars Lobby
GroupAdd, Stars, ahk_class PokerStarsTableFrameClass
GroupAdd, Stars, Lobby
WinHide, ahk_group Stars
SetTimer, reminder, 120000
return

F7::
WinShow, ahk_group Stars
SetTimer, reminder, off
return

reminder:
msgbox, Don't forget astronomy!
return
;=========================================================
~^!Q::
ExitApp
return ; Global exit command for Poker-related Scripts

I also wanted to add that I think our society is screwed.

Last edited by Everlong; 10-16-2008 at 03:33 AM.
Playing Poker at Work Quote
10-16-2008 , 06:10 AM
Quote:
Originally Posted by Everlong



I also wanted to add that I think our society is screwed.
most of the people still think its 100% gambling game, and thats why its still hard for me to tell people i play poker as a second job
Playing Poker at Work Quote
10-16-2008 , 01:15 PM
Quote:
Originally Posted by Everlong
reminder:
msgbox, Don't forget astronomy!
return
?
Playing Poker at Work Quote
10-16-2008 , 03:29 PM
Quote:
Originally Posted by LawJik
?
in case you forget and don't want to blind out in you 5K HU SNG
Playing Poker at Work Quote

      
m