Post by karuta kun on Oct 19, 2016 13:40:39 GMT
Torso aimbot
>melee to mid range
>best champs: Grohk, Evie, Skye, Ying + all melee when you need an aimbot for them
>Aim is staying on target for best dmg output (with Ying and Grohk) and on torso because Grohk, Ying and some other champs can't do headshots
>favorite: Grokh + all melee
How to use:
1. Download AHK > autohotkey.com/
2. Make a empty AHK file
3. Rightclick > edit
4. Copy and paste the Code
5. Make your changes
6. Run your script and see what happens ingame
7. 1920x1080 as resolution is required to make it work
8. The game must be running in borderless windowed mode
9. Healthbar must be active for it to work correctly
Red are things you can change:
1. DllCall("mouse_event", uint, 1, int, MoveX * 1.53, int, MoveY, uint, 0, int, 0)
>how fast the aimbot aims
2. CFovX := 128
CFovY := 128
>Fov in pixel around crosshair
3. EMCol := 0xFF9B9B
>Hex color code for the red ingame converted from RGB color
www.rgbtohex.net/hextorgb/
4. ColVn := 88
>Color variance (for how much variance in color the script is scanning lower value it will only aim for red higher it will aim for orange also)
5. ZeroY := 528
>Aimspot 528 = Torso
537 = Head
6. Process, Priority, %PID%, High
>you can change it to Normal but High is recommended
7. #HotKeyInterval 1
#MaxHotkeysPerInterval 2500
>you can change it to your preference(computer)
8. loop, 1
>you can change it to higher value but aim gets shaky
Feel free to post your scripts for different champs!!!
>melee to mid range
>best champs: Grohk, Evie, Skye, Ying + all melee when you need an aimbot for them
>Aim is staying on target for best dmg output (with Ying and Grohk) and on torso because Grohk, Ying and some other champs can't do headshots
>favorite: Grokh + all melee
How to use:
1. Download AHK > autohotkey.com/
2. Make a empty AHK file
3. Rightclick > edit
4. Copy and paste the Code
5. Make your changes
6. Run your script and see what happens ingame
7. 1920x1080 as resolution is required to make it work
8. The game must be running in borderless windowed mode
9. Healthbar must be active for it to work correctly
Red are things you can change:
1. DllCall("mouse_event", uint, 1, int, MoveX * 1.53, int, MoveY, uint, 0, int, 0)
>how fast the aimbot aims
2. CFovX := 128
CFovY := 128
>Fov in pixel around crosshair
3. EMCol := 0xFF9B9B
>Hex color code for the red ingame converted from RGB color
www.rgbtohex.net/hextorgb/
4. ColVn := 88
>Color variance (for how much variance in color the script is scanning lower value it will only aim for red higher it will aim for orange also)
5. ZeroY := 528
>Aimspot 528 = Torso
537 = Head
6. Process, Priority, %PID%, High
>you can change it to Normal but High is recommended
7. #HotKeyInterval 1
#MaxHotkeysPerInterval 2500
>you can change it to your preference(computer)
8. loop, 1
>you can change it to higher value but aim gets shaky
Feel free to post your scripts for different champs!!!
init:
#NoEnv
#Persistent
#SingleInstance, Force
#Persistent
#InstallKeybdHook
#UseHook
#KeyHistory, 0
#HotKeyInterval 1
#MaxHotkeysPerInterval 2500
version = 2.0
traytip, Palabot %version%, Running in background! Aimspot = Torso > Aim is staying on target, 5, 1
Menu, tray, NoStandard
Menu, tray, Tip, Palabot %version%
Menu, tray, Add, Palabot %version%, return
Menu, tray, Add
Menu, tray, Add, Help, info
Menu, tray, Add, Exit, exit
SetKeyDelay,-1, 8
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 := 0xFF9B9B
ColVn := 88
AntiShakeX := (A_ScreenHeight // 160)
AntiShakeY := (A_ScreenHeight // 128)
ZeroX := 960
ZeroY := 528
CFovX := 128
CFovY := 128
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, 1 {
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.53, int, MoveY, uint, 0, int, 0)
}
}
}
Return
Pause:: pause
return:
goto, init
info:
msgbox, 0, Palabot %version%`nGame 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.`nTry 1920X1080 as resulution works best for me.
return
exit:
exitapp[/COLOR]