- Katılım
- 22 May 2021
- Mesajlar
- 1,473
- Beğeniler
- 333
C# Paladins TriggerBot Source Code:
1-C# Windows Form Application(.NET Framework) ile yeni bir proje oluşturun
2-Size verdiğim dll dosyasını projeye ekleyin
3-Size verdiğim kodu yapıştırın
1-C# Windows Form Application(.NET Framework) ile yeni bir proje oluşturun
2-Size verdiğim dll dosyasını projeye ekleyin
3-Size verdiğim kodu yapıştırın
Linkleri görebilmek için kayıt olmanız gerekmektedir
C#:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using System.Windows.Forms;
using AutoItX3Lib;
namespace PaladinsKeK
{
public partial class Form1 : Form
{
[DllImport("user32.dll")]
static extern short GetAsyncKeyState(Keys vkey);
object pixel;
int newCol;
AutoItX3 au3 = new AutoItX3();
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
Thread mn = new Thread(Main);
mn.Start();
}
private void Main()
{
while (true)
{
if (GetAsyncKeyState(Keys.XButton2)<0)
{
newCol = GrabColor();
if (newCol > 700000)
{
au3.MouseClick("LEFT");
Thread.Sleep(10);
}
Thread.Sleep(10);
}
}
}
int GrabColor()
{
pixel = au3.PixelGetColor(961, 527);
return Int32.Parse(pixel.ToString());
}
}
}