私はゲームのためにメモリのチートをコードしようとしていますが、私はそれを作ることにしましたので、メニューを作成したいと思います。そして今、私のプログラムはフォームを開いて、同時にチートをしたいと思っています。今やチートはそれをしているか、そうでなければチートが働いていないので、フォームが開いています。 私はnoobのだならば、私は... C#でとても残念かなり新しいです:PC#オープンフォームと同時にfuctionを実行
おかげで、 IzzyMichiel
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Threading;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace ac_client_cheat
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
Main();
}
public static int Pbase = 0x00509B74;
public static int Health = 0xf8;
public static int mgammo = 0x150;
public static int fly = 0x44;
public void Main()
{
VAMemory vam = new VAMemory("ac_client");
int localplayer = vam.ReadInt32((IntPtr)Pbase);
{
while (true)
{
int address = localplayer + fly;
float aimlock = vam.ReadFloat((IntPtr)address);
vam.WriteFloat((IntPtr)address, -5);
address = localplayer + Health;
vam.WriteInt32((IntPtr)address, 1337);
address = localplayer + mgammo;
vam.WriteInt32((IntPtr)address, +1337);
}
}
}
}
}
をあなたはあなたがにShowDialog()を呼び出しているので、あなたのプログラムがブロックされているわけ –
より明確に欲しいものを説明してください? –
いいえ、私は、メモリのハックを行い、フォームを開くが、フォームが開いていない –