安装 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(越南语)
Українська(乌克兰语)
报告翻译问题









There's a balance between the mouse and sleep settings to maintain consistency. Somehow clicking twice made everything vastly more stable. Anyhow, I left in the debug and other stuff I was using in case somebody wants to mod it further, a couple of years from now:
-----
#InstallKeybdHook
#InstallMouseHook
CoordMode, Window
PixelX := 925
PixelY := 256
PixelX2 := 938
PixelY2 := 283
FrameSleepTime := 100
MouseSleepTime := 50
MouseSpeed := 3
MouseClicks := 2
NextButtonX := 939
NextButtonY := 551
F1::
loop
{
Sleep, FrameSleepTime
;PixelGetColor, color, PixelX, PixelY, RGB ; Stops on a 1 or 2 in the 10's place
PixelGetColor, color, PixelX2, PixelY2, RGB ; Stops on a 2 in the 10's place
If (color = 0x59493F)
{
MouseClick, Left, NextButtonX-5, NextButtonY, MouseClicks, MouseSpeed
Sleep, MouseSleepTime
MouseClick, Right, NextButtonX+5, NextButtonY, MouseClicks, MouseSpeed
Sleep, MouseSleepTime
}
else
{
MsgBox "Got it. Color = %color%"
Reload
}
}
F2::Reload
F3::
{
MouseGetPos, MouseX, MouseY
PixelGetColor, color, %MouseX%, %MouseY%
MsgBox The color at the current cursor position is %color%.
}
----
#InstallKeybdHook
#InstallMouseHook
CoordMode, Window
F1::
loop
{
PixelGetColor, color, 1374, 380, RGB ; Stops on a 1 or 2 in the 10's place
;PixelGetColor, color, 1243, 373, RGB ; Stops on a 2 in the 10's place
If (color = 0x4F493F)
{
Click down, 1425, 525
Sleep 100
Click up
Sleep 100
SendInput {Enter, down}
Sleep 1000
}
else
{
Reload
}
}
F2::Reload
I still have an issue though.. It keeps putting the mouse cursor back on the reroll button regularly but it doesn't seem to actualy lick, it just moves the cursor there.. Any idea why?
Thank you very much.