Uzman Üye
AimAssist çalışmıyor fakat hileden kaldırmadım , Python biliyorsanız kodlarıyla oynayıp kendiniz çalışır hale getirebilirsiniz.
Hilenin çalışabilmesi için bilgisayarınızda son sürüm Python yüklü olmalıdır.
Özellikler:
TriggerBot(Ctrl+Alt)
-Auto Mode(Ctrl+1)
-Sniper Mode(Ctrl+2)
BunnyHop(Ctrl+3)
---AimAssist(Ctrl+4) ÇALIŞMIYOR---
Hilede ban yeme olasılığınız düşük çünkü hilede Read/WriteProcessmemory kullanmadım, oyuna direk müdahelede bulunmuyor.
Not:Rakiplerin rengini Mor yapmalısınız.
----------------------------------------------------
English:
AimAssist is not working but i did not removed it from cheat. If you know Python language, you can try to fix it
Cheat does not uses Read/WriteProcessMemory so you wont get banned.
Note:You should make enemy color Purple
--------------------------------------------
Usage:
1-Download Python's latest version.(Dont forget to Select : ADD TO PATH : Option.)
2-Download and exract the cheat
3.Run the Roblox.py-Roblox.exe
If you want to use it as .exe, use pyinstaller.
--------------------------------------------
ABOUT AIMBOT:
-I shared the aimbot as a whole another topic but it didn't got approved so i decidet to share the source code here.
How to do it ? Well, copy and paste the code into notepad, save it as .py file.
Create a config.ini file and write these. You can-must change the sensitivty.
-- .ini dosyası oluştur ve içine şunları kopyala. sensitivityi kendine göre değiştir.
Kod:
[config]
sensitivity=0.7
Also it must be in the same folder with the Valorant Triggerbot , BunnyHop 's files and config.ini.
-- Alttaki kodları .py dosyası olarak kaydet ve Triggerbot hilesi ve config dosyası ile aynı klasöre koy
-Mss, PIL , configparser modüllerini ve Interception driverini pcne kur.
And install all modules that in the beginning of code.
Finally, install Interception Driver.
Code:
-- Alttaki kodları .py dosyası olarak kaydet ve Triggerbot hilesi ve config dosyası ile aynı klasöre koy
-Mss, PIL , configparser modüllerini ve Interception driverini pcne kur.
And install all modules that in the beginning of code.
Finally, install Interception Driver.
Code:
Python:
import win32gui
import mss
import PIL.ImageGrab
import PIL.Image
from interception import *
import configparser
#convert valorantsens to paladins (valorantsens / 0.819) * 6.258
#check config
config = configparser.ConfigParser()
config.read("config.ini")
sensitivity = float(config.get("config","sensitivity"))
sensitivity = int((sensitivity / 0.819) * 6.258)
S_HEIGHT = 1920
S_WIDTH = 1080
CENTER_X = 959
CENTER_Y = 539
offset_X = 2
bLeftButton = False
hWnd = win32gui.FindWindow(None,"VALORANT ")
class Found(Exception):
pass
def grab(x,y,w,h):
with mss.mss() as sct:
box = (x, y, w, h)
img = sct.grab(box)
return PIL.Image.frombytes('RGB',img.size,img.bgra,'raw','BGRX')
def approx(r,g,b):
if(r >= 210 and g >= 110 and b >= 250 and r <= 255 and g <= 150 and b <= 255):
return True
else:
return False
def aimassist():
c = interception()
c.set_filter(interception.is_mouse,interception_mouse_state.INTERCEPTION_MOUSE_LEFT_BUTTON_DOWN.value | interception_mouse_state.INTERCEPTION_MOUSE_LEFT_BUTTON_UP.value)
while True:
device = c.wait()
stroke = c.receive(device)
if(stroke.state == interception_mouse_state.INTERCEPTION_MOUSE_LEFT_BUTTON_DOWN.value):
bLeftButton = True
while(bLeftButton):
img = grab(886,474,1031,608)
try:
for x in range(0,(1031-886)):
for y in range(0,(608-474)):
r,g,b = img.getpixel((x,y))
if approx(r,g,b) and x != 0 and y != 0:
newX = (886 + x) - CENTER_X # distance between crosshair and ennemy
raise Found
except Found:
if type(stroke) is mouse_stroke:
if(newX >= 50):
stroke.x = abs(int(((newX - 5) / sensitivity) * offset_X))
elif(newX <= 49):
stroke.x = int(((newX + 5) / sensitivity) * offset_X)
c.send(device,stroke)
device2 = c.wait2(0)
if device2 != 0 and interception.is_mouse(device2):
stroke2 = c.receive(device2)
if(stroke2.state == 2):
stroke.state = interception_mouse_state.INTERCEPTION_MOUSE_LEFT_BUTTON_UP.value
c.send(device,stroke)
c.send(device2,stroke2)
break
c.send(device,stroke)
print(f"Offset X: {offset_X}")
aimassist()
-------------------------------------------------------------------------------------------------
Download
PY Files :
Executable :
VirusTotal
PY Files :
--IDK whey some antiviruses says its a virus, its just a pixel triggerbot.
Executable :
Download
PY Files :
Bağlantıları görmek için lütfen
Giriş Yap
Executable :
Bağlantıları görmek için lütfen
Giriş Yap
VirusTotal
PY Files :
Bağlantıları görmek için lütfen
Giriş Yap
--IDK whey some antiviruses says its a virus, its just a pixel triggerbot.
Executable :
Bağlantıları görmek için lütfen
Giriş Yap
Son düzenleme: