Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie
Hi there,
There is an issue with role permissions that is being worked on at the moment.
If you are having trouble with access or permissions on regional forums please post here to get access: https://www.boards.ie/discussion/2058365403/you-do-not-have-permission-for-that#latest

Autohotkey

  • 15-07-2006 3:13pm
    #1
    Registered Users, Registered Users 2 Posts: 2,437 ✭✭✭


    I was reading some post before about autohotkey and how it can do tasks automatically using scripts on 2+2, it looks very handy, anyway have finally decided to install the program now, just wondering do any of the boardies use this and any helpful tips etc.


Comments

  • Registered Users, Registered Users 2 Posts: 2,004 ✭✭✭pok3rplaya


    I just found it a few days ago too. It's actually class. Right now I just press one button and Party, PT, PAHud and Party Planner open up. I also have a script that allows me to top up my stacks on all my tables at once with one click and another one which automatically closes all the annoying pop-ups at Party like"You are joining a real money table which does not have disconnect protect etc.."

    It's really handy, get it.


  • Registered Users, Registered Users 2 Posts: 2,437 ✭✭✭luckylucky


    Yeah it looks good I'm playing around with it right now, have got some scripts from overcards.com that seem good but I will need to edit them a fair bit b4 i get em working i think but sure it will be worth it.

    U feel like sharing any of ur scripts then - I'm sure I can return the favour :)


  • Registered Users, Registered Users 2 Posts: 2,004 ✭✭✭pok3rplaya


    I just edited PokerStarter.ahk to make it close PartyPlanner when I want to close all poker apps. Thats it.

    What other things do you want it to do?


  • Registered Users, Registered Users 2 Posts: 2,364 ✭✭✭Mr. Flibble


    I posted this on 2+2 but haven't got any help yet. I want to make a script which will watch my Tribeca buddylist and text me thru a web page when particular players are online. I can do the texting part but can't work out how to get the script to recgonise when a player is online.
    I've tried using Window spy but it doesn't help.

    Any ideas?


  • Registered Users, Registered Users 2 Posts: 2,004 ✭✭✭pok3rplaya


    Woah they must be some good friends! A script already exist to do this on party right? Can you not edit that one?


  • Advertisement
  • Registered Users, Registered Users 2 Posts: 2,437 ✭✭✭luckylucky


    pok3rplaya wrote:
    I just edited PokerStarter.ahk to make it close PartyPlanner when I want to close all poker apps. Thats it.

    What other things do you want it to do?

    Lol heh I'm still trying to figure all this stuff out - have got a couple of scripts working now - there da biz no doubt about it, don't even know what partyplanner is btw I'll confess though have just seen a mention of it in some script or on some posting just b4 i read this reply funnily enough.


  • Registered Users, Registered Users 2 Posts: 2,364 ✭✭✭Mr. Flibble


    pok3rplaya wrote:
    Woah they must be some good friends! A script already exist to do this on party right? Can you not edit that one?

    They're the best, so generous.
    Do you know the name of the party one? I'll try to mod it if I can find it.


  • Registered Users, Registered Users 2 Posts: 3,296 ✭✭✭valor


    Party planner auto resizes and places your tables in a preset order - its the nuts for multitabling


  • Registered Users, Registered Users 2 Posts: 2,004 ✭✭✭pok3rplaya


    confusion.


  • Registered Users, Registered Users 2 Posts: 2,004 ✭✭✭pok3rplaya


    They're the best, so generous.
    Do you know the name of the party one? I'll try to mod it if I can find it.

    Is it fish finder? I'm not sure if thats what it does btw. Just guessing.


  • Advertisement
  • Registered Users, Registered Users 2 Posts: 2,004 ✭✭✭pok3rplaya


    This might help?

    ; Buddy Search

    #s::
    SetTitleMatchMode, 2 ; search for partial window titile matches
    SetMouseDelay, 0

    IfWinNotActive, Search your selected players
    {
    WinActivate, PartyPoker.com: Poker Lobby
    MouseClick, left, 405, 40 ; Click options drop down
    MouseClick, left, 409, 172 ; click player search
    WinActivate, Search your selected players
    WinWaitActive, Search your selected players
    MouseClick, left, 371, 123 ; click buddies button
    sleep, 1000
    send, {down} ; hilight first name in buddy list
    Loop, 18
    send, {space}{down}
    send, !{F4} ; close buddy selection list
    WinActivate, Search your selected players
    MouseClick, left, 458, 86 ; click on search
    SearchNumber:=1
    }
    Else
    {
    WinActivate, Search your selected players
    WinWaitActive, Search your selected players
    MouseClick, left, 460, 143 ; click clear search button
    MouseClick, left, 371, 123 ; click buddies button
    sleep, 1000
    send, {down}
    SearchNumber++
    SearchColumn := ((SearchNumber-1)*3)+1
    send, {right %SearchColumn%} ; hilight name in buddy list
    Loop, 18
    send, {space}{down}
    send, !{F4} ; close buddy selection list
    WinActivate, Search your selected players
    MouseClick, left, 458, 86 ; click on search
    }
    Return


  • Closed Accounts Posts: 251 ✭✭staringelf


    valor wrote:
    Party planner auto resizes and places your tables in a preset order - its the nuts for multitabling

    it is pretty sweet but the nuts for multitabling is MTH - a program i now cannot live without. MTH is the schizzle fo' sho.


  • Registered Users, Registered Users 2 Posts: 2,437 ✭✭✭luckylucky


    Yeah have heard of mth - I must give this a go as well - I presume most of the posters so far musht have heard of the iwitness script, I've been running that, sometimes it seems to work fine but then other times it's just going mental on me - typical thing that happens is it finds and open 4 or 5 tables and then even though there are plenty of more tables that meet the criteria it just cycles through them without opening anymore, do any of ye know why this might be?


  • Registered Users, Registered Users 2 Posts: 3,296 ✭✭✭valor


    Dont really like MTH tbh, Using Planner with AutoHighlighter script is just fine for me


  • Registered Users, Registered Users 2 Posts: 2,004 ✭✭✭pok3rplaya


    luckylucky wrote:
    Yeah have heard of mth - I must give this a go as well - I presume most of the posters so far musht have heard of the iwitness script, I've been running that, sometimes it seems to work fine but then other times it's just going mental on me - typical thing that happens is it finds and open 4 or 5 tables and then even though there are plenty of more tables that meet the criteria it just cycles through them without opening anymore, do any of ye know why this might be?

    That happens me too after the first table opens. No idea why.


Advertisement