Ir para conteúdo
Faça parte da equipe! (2024) ×

duvidas AJUDAA <3


lukasl11
 Compartilhar

Posts Recomendados

  • Velha Guarda

Alguns AHKs já foi detectado, como o de double pump e auto box. Mas se você usar outros, você não vai levar ban. Mas de consideração final, não.

vaporwave_tentativa.png

"An infinite cacophony of incomprehensible noise."

Sekai ga owaru mae ni kiru or kisu ❤️

 

🎯 Starlight Softwares Inc | Macros e Cheats privados para games de FPS: Clique aqui

 

 

Link para o comentário
Compartilhar em outros sites

no caso o ahk que eu queria usar era do aimbot :( que o código era esse aqui abaixo

 

init:

#NoEnv

#SingleInstance, Force

#Persistent

#InstallKeybdHook

#UseHook

#KeyHistory, 0

#HotKeyInterval 1

#MaxHotkeysPerInterval 127

version = 1.0

traytip, Sharpshooter %version%, Running in background!, 5, 1

Menu, tray, NoStandard

Menu, tray, Tip, Sharpshooter %version%

Menu, tray, Add, Sharpshooter %version%, return

Menu, tray, Add

Menu, tray, Add, Help, info

Menu, tray, Add, Exit, exit

SetKeyDelay,-1, 1

SetControlDelay, -1

SetMouseDelay, -1

SetWinDelay,-1

SendMode, InputThenPlay

SetBatchLines,-1

ListLines, Off

CoordMode, Pixel, Screen, RGB

CoordMode, Mouse, Screen

PID := DllCall("GetCurrentProcessId")

Process, Priority, %PID%, High

 

EMCol := 0xD82A22

ColVn := 64

AntiShakeX := (A_ScreenHeight // 160)

AntiShakeY := (A_ScreenHeight // 128)

ZeroX := (A_ScreenWidth // 2)

ZeroY := (A_ScreenHeight // 2)

CFovX := (A_ScreenWidth // 8)

CFovY := (A_ScreenHeight // 64)

ScanL := ZeroX - CFovX

ScanT := ZeroY

ScanR := ZeroX + CFovX

ScanB := ZeroY + CFovY

NearAimScanL := ZeroX - AntiShakeX

NearAimScanT := ZeroY - AntiShakeY

NearAimScanR := ZeroX + AntiShakeX

NearAimScanB := ZeroY + AntiShakeY

 

Loop, {

KeyWait, LButton, D

PixelSearch, AimPixelX, AimPixelY, NearAimScanL, NearAimScanT, NearAimScanR, NearAimScanB, EMCol, ColVn, Fast RGB

if (!ErrorLevel=0) {

loop, 10 {

PixelSearch, AimPixelX, AimPixelY, ScanL, ScanT, ScanR, ScanB, EMCol, ColVn, Fast RGB

AimX := AimPixelX - ZeroX

AimY := AimPixelY - ZeroY

DirX := -1

DirY := -1

If ( AimX > 0 ) {

DirX := 1

}

If ( AimY > 0 ) {

DirY := 1

}

AimOffsetX := AimX * DirX

AimOffsetY := AimY * DirY

MoveX := Floor(( AimOffsetX ** ( 1 / 2 ))) * DirX

MoveY := Floor(( AimOffsetY ** ( 1 / 2 ))) * DirY

DllCall("mouse_event", uint, 1, int, MoveX * 1.5, int, MoveY, uint, 0, int, 0)

}

}

}

 

Pause:: pause

return:

goto, init

 

info:

msgbox, 0, Sharpsooter %version%, Made by CelikShadow (my fortnite ign) @ *****`nOverwatch must be running in borderless windowed mode.`nPress pause key to pause this program.`nLeft click automatically aims down target near the center of the screen.`nRecommended for near distance(~15m) and full-auto weapons.

return

 

exit:

exitapp

 

 

eu vi esse scipt em um post , ai eu tenho receio em levar ban :S

Link para o comentário
Compartilhar em outros sites

  • Velha Guarda
no caso o ahk que eu queria usar era do aimbot :( que o código era esse aqui abaixo

 

init:

#NoEnv

#SingleInstance, Force

#Persistent

#InstallKeybdHook

#UseHook

#KeyHistory, 0

#HotKeyInterval 1

#MaxHotkeysPerInterval 127

version = 1.0

traytip, Sharpshooter %version%, Running in background!, 5, 1

Menu, tray, NoStandard

Menu, tray, Tip, Sharpshooter %version%

Menu, tray, Add, Sharpshooter %version%, return

Menu, tray, Add

Menu, tray, Add, Help, info

Menu, tray, Add, Exit, exit

SetKeyDelay,-1, 1

SetControlDelay, -1

SetMouseDelay, -1

SetWinDelay,-1

SendMode, InputThenPlay

SetBatchLines,-1

ListLines, Off

CoordMode, Pixel, Screen, RGB

CoordMode, Mouse, Screen

PID := DllCall("GetCurrentProcessId")

Process, Priority, %PID%, High

 

EMCol := 0xD82A22

ColVn := 64

AntiShakeX := (A_ScreenHeight // 160)

AntiShakeY := (A_ScreenHeight // 128)

ZeroX := (A_ScreenWidth // 2)

ZeroY := (A_ScreenHeight // 2)

CFovX := (A_ScreenWidth // 8)

CFovY := (A_ScreenHeight // 64)

ScanL := ZeroX - CFovX

ScanT := ZeroY

ScanR := ZeroX + CFovX

ScanB := ZeroY + CFovY

NearAimScanL := ZeroX - AntiShakeX

NearAimScanT := ZeroY - AntiShakeY

NearAimScanR := ZeroX + AntiShakeX

NearAimScanB := ZeroY + AntiShakeY

 

Loop, {

KeyWait, LButton, D

PixelSearch, AimPixelX, AimPixelY, NearAimScanL, NearAimScanT, NearAimScanR, NearAimScanB, EMCol, ColVn, Fast RGB

if (!ErrorLevel=0) {

loop, 10 {

PixelSearch, AimPixelX, AimPixelY, ScanL, ScanT, ScanR, ScanB, EMCol, ColVn, Fast RGB

AimX := AimPixelX - ZeroX

AimY := AimPixelY - ZeroY

DirX := -1

DirY := -1

If ( AimX > 0 ) {

DirX := 1

}

If ( AimY > 0 ) {

DirY := 1

}

AimOffsetX := AimX * DirX

AimOffsetY := AimY * DirY

MoveX := Floor(( AimOffsetX ** ( 1 / 2 ))) * DirX

MoveY := Floor(( AimOffsetY ** ( 1 / 2 ))) * DirY

DllCall("mouse_event", uint, 1, int, MoveX * 1.5, int, MoveY, uint, 0, int, 0)

}

}

}

 

Pause:: pause

return:

goto, init

 

info:

msgbox, 0, Sharpsooter %version%, Made by CelikShadow (my fortnite ign) @ *****`nOverwatch must be running in borderless windowed mode.`nPress pause key to pause this program.`nLeft click automatically aims down target near the center of the screen.`nRecommended for near distance(~15m) and full-auto weapons.

return

 

exit:

exitapp

 

 

eu vi esse scipt em um post , ai eu tenho receio em levar ban :S

 

Evite comentar vezes seguidas nos tópicos, isso é propício de advertência. Então, esse aimbot está detectado faz um tempo, e a forma que foi configurado, foi para o Overwatch.

Mais alguma coisa?

vaporwave_tentativa.png

"An infinite cacophony of incomprehensible noise."

Sekai ga owaru mae ni kiru or kisu ❤️

 

🎯 Starlight Softwares Inc | Macros e Cheats privados para games de FPS: Clique aqui

 

 

Link para o comentário
Compartilhar em outros sites

Este tópico está impedido de receber novos posts.
 Compartilhar

×
×
  • Criar Novo...

Informação Importante

Nós fazemos uso de cookies no seu dispositivo para ajudar a tornar este site melhor. Você pode ajustar suas configurações de cookies , caso contrário, vamos supor que você está bem para continuar.