本文轉貼來源&作者 (Copying Published Source) | Nept Nept is offline |
在AHK觸發BOT
檢測周圍敵人的顏色。
檢查頂部和底部。
調整你的資源
"ResX" and "ResY"
下載附加的圖像文件
所有站內附件皆會附上安全掃描報告 請會員查看純淨度百分比後判斷使用
相關檔案須知: 取得檔案前,請先詳細閱讀文章內容 避免不必要錯誤與誤會發生。 也可多參考文章討論樓層內容 了解附件檔案相關討論資訊。
鼠標5按住激活。
可以追溯到上瀏覽的按鈕。- #Persistent
- #NoTrayIcon
- #KeyHistory, 0
- #NoEnv
- #HotKeyInterval 1
- #MaxHotkeysPerInterval 127
- #InstallKeybdHook
- #UseHook
- #SingleInstance, Force
- SetKeyDelay, -1, 6
- SetControlDelay, -1
- SetMouseDelay, -1
- SetWinDelay,-1
- SetBatchLines,-1
- ListLines, Off
- ResX = 1920
- ResY = 1080
- CenterX := ResX * .5
- CenterY := ResY * .5
- XFoV := 4
- YFoV := 1000
- LeftPoint := CenterX - XFoV
- RightPoint := CenterX + XFoV
- TopPoint := CenterY - YFoV
- BottomPoint := CenterY + YFoV
- Loop {
-
- GetKeyState, Mouse2,XButton1, P
-
- If ( Mouse2 == "D" ){
-
- ImageSearch, Lside , Uside , LeftPoint, TopPoint, CenterX, CenterY, *Trans800000 *70 trigger1.png
- ImageSearch, Rside , Dside , CenterX, CenterY, RightPoint, BottomPoint, *Trans800000 *70 trigger1.png
- If ( (Dside - Uside) > 0) {
- MouseClick, left
- Sleep 150 ; time between shots
- }}}
-
- RShift::
- ExitApp
複製代碼
|