NeganW
Uzman Üye
- Katılım
- 28 Eki 2021
- Mesajlar
- 568
- Beğeniler
- 174
Hepsini Video ile anlattım basit işe yarayacak bir aimbot iyi kullanımlar.
VİDEO LİNKİ :
Umarım işinize yarar
AutoIt :
KODLAR :
konuyu yanlış açmış olabilirim kusura bakmayın modlar nereye açıyim bilemedim
VİDEO LİNKİ :
Umarım işinize yarar
AutoIt :
Linkleri görebilmek için kayıt olmanız gerekmektedir
KODLAR :
Kod:
using System;
using System.Windows.Forms;
using AutoItX3Lib;
using System.Runtime.InteropServices;
using System.Threading;
namespace pasterlarınaq//Burayı Değişireyi Unutma
{
public partial class Form1 : Form
{
AutoItX3 au3 = new AutoItX3();
[DllImport("user32.dll")]
static extern short GetAsyncKeyState(Keys vKey);
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
Thread AB = new Thread(AIMBOT) { IsBackground = true };
AB.Start();
}
void AIMBOT()
{
while (true)
{
if (GetAsyncKeyState(Keys.CapsLock) < 0)//tuş ataması
{
try
{
object pix = au3.PixelSearch(660, 377, 1258, 795, 0xFFDBC3);//renk ve boyutlar buraya gelecek
if (pix.ToString() != "1")
{
object[] pixCoord = (object[])pix;
au3.MouseClick("LEFT", (int)pixCoord[0], (int)pixCoord[1], 1, 1);
}
}
catch { }
}
Thread.Sleep(1);
}
}
}
}