level 2
我会有猫的😂
楼主
本來想继续写的但是坑爹啊 试着运行老是弹聊天框
win10 64系统
#IfWinActive ahk_class LaunchUnrealUWindowsClient
RButton::
SetTimer, FrakenA, 0
SetTimer, FrakenB, 0
FrakenA:
if ( GetColor(2000,889)=="0x18376D" ) ;
{
send 4
}
return
FrakenB:
if ( GetColor(2126,883)=="0x4C6F96" ) ;
{
send T
}
return
RButton up::
SetTimer, FrakenA, OFF
SetTimer, FrakenB, OFF
GetColor(x,y)
{
PixelGetColor, color, x, y, RGB
StringRight color,color,10 ;
return color
}
return