Merhaba Bana Yardım Lazım Ben Pointblank Kodlarını Kalıcı Olarak Buldum Ama C# Nasil Koyabilirim C# Da Bukadar İlerleyebildim Yardım Edin Lütfen Projemin Kodları Paylasıyorum Lütfen Bana Yardım Edin Nolur
Ben Buraya Kadar İlerleyebildim Anca Buldugum Pointerleri Burdan Nereye Yazmam Gerekli Yardım Edin Lütfen:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Diagnostics;
namespace WTK
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
VAMemory vam = new VAMemory("PointBlank.exe");
private void checkBox1_CheckedChanged(object sender, EventArgs e)
{
if (checkBox1.Checked == true)
{
MessageBox.Show("Hile Aktif Edilmiştir");
timer1.Start();
}
else
{
timer1.Stop();
}
}
ind modul;
private void timer1_Tick(object sender, EventArgs e)
{
int address = vam.ReadInt32((IntPtr)modul + 0x000C9344);
int address1 = vam.ReadInt32((IntPtr)address + 0x90);
int address2 = vam.ReadInt32((IntPtr)address1 + 0xa88);
int address3 = vam.ReadInt32((IntPtr)address2 + 0x58);
int address4 = vam.ReadInt32((IntPtr)address3 + 0x2e0);
int address5 = vam.ReadInt32((IntPtr)address4 + 0x18);
int finaladdress = address5 + 0x120;
vam.WriteInt32((IntPtr)finaladdress, 1);
}
private void modulcek_Tick(object sender, EventArgs e)
{
try
{
Process process = Process.GetProcessesByName("PointBlank.exe")[0];
foreach (ProcessModule module in process.Modules)
{
if (module.FileName.IndexOf("WTK.dll") != -1)
{
modul = module.BaseAddress.ToInt32();
}
{
}
catch
{
{