安装 Steam
登录
|
语言
繁體中文(繁体中文)
日本語(日语)
한국어(韩语)
ไทย(泰语)
български(保加利亚语)
Čeština(捷克语)
Dansk(丹麦语)
Deutsch(德语)
English(英语)
Español-España(西班牙语 - 西班牙)
Español - Latinoamérica(西班牙语 - 拉丁美洲)
Ελληνικά(希腊语)
Français(法语)
Italiano(意大利语)
Bahasa Indonesia(印度尼西亚语)
Magyar(匈牙利语)
Nederlands(荷兰语)
Norsk(挪威语)
Polski(波兰语)
Português(葡萄牙语 - 葡萄牙)
Português-Brasil(葡萄牙语 - 巴西)
Română(罗马尼亚语)
Русский(俄语)
Suomi(芬兰语)
Svenska(瑞典语)
Türkçe(土耳其语)
Tiếng Việt(越南语)
Українська(乌克兰语)
报告翻译问题









[code]
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; Script for auto playing Poker Night at the Inventory (800x600 resolution required)
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
CoordMode, Mouse, Client
SetDefaultMouseSpeed, 0
Loop {
IfWinActive, Poker Night at the Inventory
{
; Click call
Click, 200, 500
Sleep 5
; Skip dialogue
Click, right, 200, 500, 5
; Deal new match
Click, 400, 500
Sleep, 501
}
}
; Press Pause key to pause script(replace with #p for windows key + p), ESC to exit.
Pause::Pause
Escape::ExitApp
[code]
This worked for me.
; 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()
SkipReward()
Sleep 500
}
}
ClickCall()
{
Click 180,500
Sleep 5
}
SkipDialogue()
{
Click 180,500, "Right"
sleep 1
Click 180,500, "Right"
sleep 1
Click 180,500, "Right"
sleep 1
Click 180,500, "Right"
sleep 1
Click 180,500, "Right"
sleep 1
}
DealNewGame()
{
Click 550,510
sleep 5
}
SkipReward()
{
Click 555,420
Sleep 1
}
#Requires AutoHotkey v2.0
; 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()
Sleep 500
}
}
ClickCall()
{
Click 169,537
Sleep 1
}
SkipDialogue()
{
Click 182, 520, "Right"
Sleep 1
}
DealNewGame()
{
Click 550,510
Sleep 1
}
I'll tell how long it took me. Works like a charm though!