Arkadaşlar merhaba csgo da sadece atolyeler için bir aimbot yazmaya çalıştım üst düzey bir c# bilgim yok ama botu
Linkleri görebilmek için kayıt olmanız gerekmektedir
sitede test ederek yaptım sonrasonda renk kodlarını vs değiştim fakat oyuna girdiğimde renk kodunu bulduğu an yere ateş ediyor tahminimce 2b - 3b farkından dolayı böyle oldu bunu nasıl düzeltebilirim yardımcı olucak var mı ??using System;
using System.Windows.Forms;
using AutoItX3Lib;
using System.Runtime.InteropServices;
using System.Threading;
namespace coloraimbot
{
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)
{
try
{
object pix = au3.PixelSearch(0, 0, 1365, 767, 0x06FFFF);
if (pix.ToString() != "1")
{
object[] pixCoord = (object[])pix;
au3.MouseClick("LEFT", (int)pixCoord[0], (int)pixCoord[1], 1, 1);
}
}
catch { }
}
Thread.Sleep(1);
}
}
}
}
using System.Windows.Forms;
using AutoItX3Lib;
using System.Runtime.InteropServices;
using System.Threading;
namespace coloraimbot
{
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)
{
try
{
object pix = au3.PixelSearch(0, 0, 1365, 767, 0x06FFFF);
if (pix.ToString() != "1")
{
object[] pixCoord = (object[])pix;
au3.MouseClick("LEFT", (int)pixCoord[0], (int)pixCoord[1], 1, 1);
}
}
catch { }
}
Thread.Sleep(1);
}
}
}
}