美神恶魔 发表于 2020-3-28 20:32

全境封锁2 自动连发/自动射击/后坐力补偿 AHK脚本

原作者外网,debug了一下,修复了自动射击开关并且把自动射击的判定按键改为鼠标右键Rbutton
原帖搜auto-fire/auto-recoil关键词

将J添加为游戏左键射击按键
侧键mouse-4是自动连发,O/ctrl+O调整连发速度
小键盘+-调整后坐力补偿
F3脚本开关/F4自动射击开关

脚本里调整自动射击的识别范围与颜色
默认1080P下,鼠标中心左右50像素,上下10像素
分辨率越高请增加像素增大识别范围
0x3636F4是颜色R244 G54 B54
如果增大区域依旧不能自动射击,请截图提取准星RGB数值替换

使用方法,下载autohotkey,右键脚本Run Script开启后可测试,点击鼠标左键,会自动往下移动,按住侧键会自动按频率输入JJJJJJJJ

**** Hidden Message *****
全代码如下,可自行复制保存为.ahk文件
;#####################
;#=====Commands====#
;#####################
SetWorkingDir %A_ScriptDir%
#NoEnv
#InstallKeybdHook
#InstallMouseHook
#KeyHistory 0
#UseHook
#MaxThreadsPerHotkey 1
#MaxThreads 30
#MaxThreadsBuffer on
SendMode Input
ListLines, Off
PID := DllCall("GetCurrentProcessId")
Process, Priority, %PID%, High
SendMode Input
CoordMode, Pixel, Screen
CoordMode, Mouse, Screen

;#####################
;#====Initialization====#
;#####################
global _enabled := 0
global _autofire := 0
global _downVal = 2
global _rightVal = 0
global _rampdown = 1
global _shotdelay=0
global _readytofire = 1
global _timerRunning = 0
global crosshairX =
global crosshairY =

;####################
;#=====Hotkeys=====#
;####################
~F3:: ; Turn script on/off
_enabled := ! _enabled
_autofire = 0
ShowToolTip("Script Enabled= "_enabled)
return

~F4:: ;Change triggerbot to singleshot OR enable autofire if you also turn up duration with o / ctrl-o
_autofire := ! _autofire
ShowToolTip("Autofire= "_autofire)
return

~NumpadAdd:: ; Adds compensation.
_downVal := _downVal + 1
ShowToolTip("Downward compensation= " . _downVal)
return

~NumpadSub:: ; Substracts compensation.
if _downVal > 0
{
      _downVal := _downVal - 1
      ShowToolTip("Downward compensation= " . _downVal)
}
return

~^NumpadAdd:: ; Adds right adjust
_rightVal := _rightVal + 1
ShowToolTip("Right(+)/Left(-)= " . _rightVal)
return

~^NumpadSub:: ; Adds left adjust
_rightVal := _rightVal - 1
ShowToolTip("Right(+)/Left(-)= " . _rightVal)
return

~o:: ; Single shot timer up (zero is always fire)
_shotdelay := _shotdelay + 25
ShowToolTip("Single Shot Delay up= " _shotdelay)
Return

~^o:: ; Single shot timer down (zero is always fire)
if _shotdelay > 0
{
      _shotdelay := _shotdelay - 25
      ShowToolTip("Single Shot Delay down= " _shotdelay)
}
return

~LButton::lessrecoil()
~RButton::lessrecoil_triggerbot();"RButton" is mouse 2.If you change this, make sure you replace every RButton in the script.
~Joy10::lessrecoil_triggerbot_xbox()

;####################
;======Functions======
;####################
lessrecoil()
{
      While GetKeyState("LButton")
      {
                sleep 10
                if _enabled
                {
                        ApplyReduction()
                }
                sleep 10
      }
      return
}
;==================
lessrecoil_triggerbot()
{
      While GetKeyState("RButton")
      {
                {
                        if _enabled
                        {
                              if CrosshairCheck()
                              {
                                        TryToFire()
                                        ApplyReduction()
                              }
                        }
                }
      }
      Send, {j up}
      sleep 10
      _timerRunning = 0
      _readytofire = 1
      return
}
;==================
lessrecoil_triggerbot_xbox()
{
      While GetKeyState("Joy10")
      {
                {
                        if _enabled
                        {
                              if CrosshairCheck()
                              {
                                        TryToFire()
                                        ApplyReduction()
                              }
                        }
                }
      }
      Send, {j up}
      sleep 10
      _timerRunning = 0
      _readytofire = 1
      return
}
;==================
ApplyReduction()
{
      DllCall("mouse_event",uint,1,int,_rightVal,int,_downVal,uint,0,int,0)
      Sleep 20
      DllCall("mouse_event",uint,1,int,_rightVal,int,_downVal,uint,0,int,0)
      Sleep 20
      return
}
;==================
CrosshairCheck() ; returns as "true" if either autofire, or crosshair is found.
{
      if _autofire = 0
                return false
      else
      {
                crosshairX =
                MouseGetPos, mX, mY
                x1 :=(mX-50)
                x2 :=(mX+50)
                y1:=(mY-10)
                y2 :=(mY+10)
                PixelSearch, crosshairX, crosshairY, x1, y1, x2, y2, 0x3636F4, 0, Fast
      }
      if crosshairX > 0 ;this will be set to either the x coord of the red found, or "1" if the triggerbot is turned off.
      {
                return true
      }
      else{
                Send, {j up}
                sleep 10
                return false
      }
}
;==================
TryToFire()
{
      if _shotdelay = 0
      {
                Send, {j down}
                return
      }
      else
      {
                if _readytofire = 1
                {
                        Send, {j up}
                        sleep 25
                        Send, {j down}
                        _readytofire = 0
                        ShotTimer()
                        return
                }
                else
                {
                        ShotTimer()
                        return
                        
                }
                ShotTimer()
                if _shotdelay > 0
                {
                        Send, {j up}
                        ShotTimer()
                        Sleep 20
                }
                else
                {
                        _readytofire = 1
                }
      }
}
;==================
ShotTimer()
{
      
      if _timerRunning = 0
      {
                SetTimer, ShotWait, %_shotdelay%
                _timerRunning = 1
                return
      }
      else
                return
      ShotWait:
      SetTimer, ShotWait, Off
      _timerRunning = 0
      _readytofire = 1
      return
}
;==================
ShowToolTip(Text)
{
      ToolTip, %Text%
      SetTimer, RemoveToolTip, 3000
      return
      RemoveToolTip:
      SetTimer, RemoveToolTip, Off
      ToolTip
      return
}
;==================






djzhux 发表于 2021-1-2 20:07

666666666666

rq412834 发表于 2021-1-2 20:37

6666666666666666

YouyuPlus 发表于 2021-1-2 21:30

66666666666666666

卧丨槽 发表于 2021-1-5 18:10

66666666~~~~

liusu4408 发表于 2021-1-6 11:40

:):):):):):):):)

哥留的不眼泪, 发表于 2021-1-6 23:58

谢谢风向

lccb1 发表于 2021-1-8 14:13

阿萨德阿萨德按时

zrh740650 发表于 2021-1-10 03:38

1111111111111111111111

一个最大的孩子 发表于 2021-1-10 19:56

感谢分享

12286038 发表于 2021-1-12 13:26

好耶,666

1666923369 发表于 2021-1-15 10:53

6666666666666

wlllqj 发表于 2021-1-15 14:44

能用就好!

永州CC 发表于 2021-1-16 14:01

66666666666666666

jswxjbw 发表于 2021-1-17 10:51

感谢分享~!!!~!~!~!~!~!

qazwsx97979 发表于 2021-1-18 05:40

感谢分享

lj98311 发表于 2021-1-20 16:19

感谢分享!

asqwguo 发表于 2021-1-20 18:08

https://bbs.3dmgame.com/static/image/smiley/grapeman/30.gif{:3_129:}

s5571 发表于 2021-1-20 21:09

电饭锅电饭锅和法国金龟换酒

I_love_who? 发表于 2021-1-21 01:41

6666666666666666666

q464953279 发表于 2021-1-22 04:17

qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq

fxlong 发表于 2021-1-22 10:49

感谢分享

adfaawdawdaw 发表于 2021-1-23 23:06

66666666666666666666666

士力架丶 发表于 2021-1-25 17:23

看看      

丿Halo士官长 发表于 2021-1-25 23:38

6666666666

黑毛茎长 发表于 2021-1-30 21:14

感谢分享!!!!!!!!!!

魂断风吟 发表于 2021-1-31 20:19

666666看一下

hello丶ai 发表于 2021-2-1 13:04

666
66666

老衲,醉過醉過 发表于 2021-2-1 18:17

666666666666

a78564 发表于 2021-2-1 19:18

而安慰我很绝望将课文和wk
页: [1] 2 3 4 5 6 7 8 9 10
查看完整版本: 全境封锁2 自动连发/自动射击/后坐力补偿 AHK脚本