Poker Night at the Inventory

Poker Night at the Inventory

Not enough ratings
Autohotkey Part 2
By biTTy
Thanks to Pokerdan99 for the original program

Now you won't have the annoying "Okay Game" popup halting you in your tracks.
In the latest autohotkey download there is a "Window Spy" link that can help change your mouse coordinates in the program below.
I ran the game in a window so I refer to the Mouse Position: Window
   
Award
Favorite
Favorited
Unfavorite
Main
OkayGame() - Click,x,y refers to the "Okay" Button when you won one of the prizes
ClickCall() - Click,x,y refers to the "Call/Check" Button
SkipDialogue() - Click,Right,x,y refers to a right click somewhere not important
DealNewGame() - Click,x,y refers to the "Deal New Game" button

I will adjust this if i find any more breaks with the looping
______________________________________________________________________

; This script will keep playing Poker Night at the Inventory

SetDefaultMouseSpeed,0
WinWaitActive Poker Night at the Inventory
Run()

; To stop the application at any time, simply press the Escape button
Escape::ExitApp

;Run the whole application indefinitely
Run() {
while true {
ClickCall()
SkipDialogue()
DealNewGame()
SkipDialogue()
OkayGame()
Sleep,500
}
}

OkayGame()
{
Click,1110,710
}

ClickCall()
{
Click,374,883
}

SkipDialogue()
{
Click, right, 374, 883
}

DealNewGame()
{
Click,796,881
}
7 Comments
𝕟𝕫𝟙 27 Jul, 2024 @ 1:28am 
:auimp:English:
I will activate items from Poker Night at the Inventory - both the first and second parts are available - on your account.:hfwrench:
Please check my profile description for details.
I’ve done this for several people and have never had a negative review.:auyay:
You’ll get the best price on Steam and fast service!:Rouble:
Activating any single part costs 1 key, and activating both parts costs 2 keys.

Russian::Vata:
Активирую предметы из Poker Night at the Inventory на ваш аккаунт - обе части в наличии.:RussianBottle:
Прочитайте описание профиля для подробностей.
Делал это для нескольких человек, негативных отзывов не было.
Цена самая лучшая на Steam, и все будет сделано быстро!:Rouble:
Активация одной части - 1 ключ, обе части - 2 ключа.
Schema F 9 Oct, 2023 @ 2:35am 
straight g using ahk
MagicMaster667 3 Feb, 2021 @ 9:31am 
You're a real hero, man. Thanks alot! :mafia:
DragonDeathKnightX 15 Jun, 2020 @ 7:50am 
THANKS this script helped a lot!
Casidian 4 Sep, 2018 @ 4:38pm 
I need help with this script.
biTTy  [author] 4 Sep, 2018 @ 3:30pm 
glad to hear!
Jace 4 Sep, 2018 @ 9:32am 
Thank you for this, for whatever reason when I tried using the original script the mouse would always be just above the call button, even if I moved the coordinates down. Finally got this to work on a 1600x900 resolution. Thanks again, it saved me a lot of mindless repetitiion.