Cheat Engine Forum Index Cheat Engine
The Official Site of Cheat Engine
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 


Easy C# & VB.NET Trainer class

 
Post new topic   Reply to topic    Cheat Engine Forum Index -> General Gamehacking
View previous topic :: View next topic  
Author Message
Cless
How do I cheat?
Reputation: 0

Joined: 05 Apr 2012
Posts: 1
Location: 0xFFF8001

PostPosted: Fri Apr 06, 2012 12:02 am    Post subject: Easy C# & VB.NET Trainer class Reply with quote

This is C# trainer class written by me.

C#
Code:
/* C# trainer class.
 * Author : Cless
 */

/*How to use pointer read/write.
 * ////// Example Read ////////////////////////////////////////////////////////////////////////////////////////////////////////////////
 *      this.Text = Trainer.ReadPointerInteger("Game exe name here",0xPointer here,new int[offset count] {0xOffset}).Tostring();
 *      Ex Read.
 *      this.Text = Trainer.ReadPointerInteger("gta_sa",0xB71A38,new int[1]{ 0x5412 }).Tostring();
 *      Or
 *      this.Text = Trainer.ReadPointerInteger("gta_sa",0xB71A38,new int[5]{ 0x540, 0x541, 0x542, 0x543, 0x544, 0x545 }).Tostring();
 * ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
 * ///// Example Write ///////////////////////////////////////////////////////////////////////////////////////////////////////////////
 *      Trainer.WritePointerInteger("Game exe name here", 0xPointer here, new int[offset count] {0xoffset});
 *      Trainer.WritePointerInteger("gta_sa", 0xB71A38, new int[1] { 0x540 }, 1000);
 *      Or
 *      Trainer.WritePointerInteger("gta_sa",0xB71A38,new int[5]{ 0x540, 0x541, 0x542, 0x543, 0x544, 0x545 },10000);
 * ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////     
 */

using System;
using System.Collections.Generic;
using System.Text;
using System.Diagnostics;
using System.Runtime.InteropServices;


 public   class Trainer
    {
     private const int PROCESS_ALL_ACCESS = 0x1F0FFF;
     [DllImport("kernel32")]
     private static extern int OpenProcess(int AccessType, int InheritHandle, int ProcessId);
     [DllImport("kernel32", EntryPoint = "WriteProcessMemory")]
     private static extern byte WriteProcessMemoryByte(int Handle, int Address, ref byte Value, int Size, ref int BytesWritten);
     [DllImport("kernel32", EntryPoint = "WriteProcessMemory")]
     private static extern int WriteProcessMemoryInteger(int Handle, int Address, ref int Value, int Size, ref int BytesWritten);
     [DllImport("kernel32", EntryPoint = "WriteProcessMemory")]
     private static extern float WriteProcessMemoryFloat(int Handle, int Address, ref float Value, int Size, ref int BytesWritten);
     [DllImport("kernel32", EntryPoint = "WriteProcessMemory")]
     private static extern double WriteProcessMemoryDouble(int Handle, int Address, ref double Value, int Size, ref int BytesWritten);


     [DllImport("kernel32", EntryPoint = "ReadProcessMemory")]
     private static extern byte ReadProcessMemoryByte(int Handle, int Address, ref byte Value, int Size, ref int BytesRead);
     [DllImport("kernel32", EntryPoint = "ReadProcessMemory")]
     private static extern int ReadProcessMemoryInteger(int Handle, int Address, ref int Value, int Size, ref int BytesRead);
     [DllImport("kernel32", EntryPoint = "ReadProcessMemory")]
     private static extern float ReadProcessMemoryFloat(int Handle, int Address, ref float Value, int Size, ref int BytesRead);
     [DllImport("kernel32", EntryPoint = "ReadProcessMemory")]
     private static extern double ReadProcessMemoryDouble(int Handle, int Address, ref double Value, int Size, ref int BytesRead);
     [DllImport("kernel32")]
     private static extern int CloseHandle(int Handle);

     [DllImport("user32")]
     private static extern int FindWindow(string sClassName, string sAppName);
     [DllImport("user32")]
     private static extern int GetWindowThreadProcessId(int HWND, out int processId);


     public static string CheckGame(string WindowTitle)
     {
         string result = "";
         checked
         {
             try
             {
                 int Proc;
                 int HWND = FindWindow(null, WindowTitle);
                 GetWindowThreadProcessId(HWND,out Proc);
                 int Handle = OpenProcess(PROCESS_ALL_ACCESS, 0, Proc);
                 if (Handle != 0)
                 {
                     result = "Game is running...";
                 }
                 else
                 {
                     result = "Game is not running...";
                 }
                 CloseHandle(Handle);
             }
             catch
             { }
         }
         return result;
     }
     public static byte ReadByte(string EXENAME, int Address)
     {
         byte Value = 0;
         checked
         {
             try
             {
                 Process[] Proc = Process.GetProcessesByName(EXENAME);
                 if (Proc.Length != 0)
                 {
                     int Bytes = 0;
                     int Handle = OpenProcess(PROCESS_ALL_ACCESS, 0, Proc[0].Id);
                     if (Handle != 0)
                     {
                         ReadProcessMemoryByte(Handle, Address, ref Value, 2, ref Bytes);
                         CloseHandle(Handle);
                     }
                 }
             }
             catch
             { }
         }
         return Value;
     }
     public static int ReadInteger(string EXENAME, int Address)
     {
         int Value = 0;
         checked
         {
             try
             {
                 Process[] Proc = Process.GetProcessesByName(EXENAME);
                 if (Proc.Length != 0)
                 {
                     int Bytes = 0;
                     int Handle = OpenProcess(PROCESS_ALL_ACCESS, 0, Proc[0].Id);
                     if (Handle != 0)
                     {
                         ReadProcessMemoryInteger(Handle, Address, ref Value,4, ref Bytes);
                         CloseHandle(Handle);
                     }
                 }
             }
             catch
             { }
         }
         return Value;
     }
     public static float ReadFloat(string EXENAME, int Address)
     {
         float Value = 0;
         checked
         {
             try
             {
                 Process[] Proc = Process.GetProcessesByName(EXENAME);
                 if (Proc.Length != 0)
                 {
                     int Bytes = 0;
                     int Handle = OpenProcess(PROCESS_ALL_ACCESS, 0, Proc[0].Id);
                     if (Handle != 0)
                     {
                         ReadProcessMemoryFloat((int)Handle, Address, ref Value, 4, ref Bytes);
                         CloseHandle(Handle);
                     }
                 }
             }
             catch
             { }
         }
         return Value;
     }
     public static double ReadDouble(string EXENAME, int Address)
     {
         double Value = 0;
         checked
         {
             try
             {
                 Process[] Proc = Process.GetProcessesByName(EXENAME);
                 if (Proc.Length != 0)
                 {
                     int Bytes = 0;
                     int Handle = OpenProcess(PROCESS_ALL_ACCESS, 0, Proc[0].Id);
                     if (Handle != 0)
                     {
                         ReadProcessMemoryDouble((int)Handle, Address, ref Value, 8, ref Bytes);
                         CloseHandle(Handle);
                     }
                 }
             }
             catch
             { }
         }
         return Value;
     }

     public static byte ReadPointerByte(string EXENAME, int Pointer, int[] Offset)
     {
         byte Value = 0;
         checked
         {
             try
             {
                 Process[] Proc = Process.GetProcessesByName(EXENAME);
                 if (Proc.Length != 0)
                 {
                     int Bytes = 0;
                     int Handle = OpenProcess(PROCESS_ALL_ACCESS, 0, Proc[0].Id);
                     if (Handle != 0)
                     {
                         foreach (int i in Offset)
                         {
                             ReadProcessMemoryInteger((int)Handle, Pointer, ref Pointer, 4,ref Bytes);
                             Pointer += i;
                         }
                         ReadProcessMemoryByte((int)Handle, Pointer, ref Value, 2, ref Bytes);
                         CloseHandle(Handle);
                     }
                 }
             }
             catch
             { }
         }
         return Value;
     }
     public static int ReadPointerInteger(string EXENAME, int Pointer, int[] Offset)
     {
         int Value = 0;
         checked
         {
             try
             {
                 Process[] Proc = Process.GetProcessesByName(EXENAME);
                 if (Proc.Length != 0)
                 {
                     int Bytes = 0;
                     int Handle = OpenProcess(PROCESS_ALL_ACCESS, 0, Proc[0].Id);
                     if (Handle != 0)
                     {
                         foreach (int i in Offset)
                         {
                             ReadProcessMemoryInteger((int)Handle, Pointer, ref Pointer, 4, ref Bytes);
                             Pointer += i;
                         }
                         ReadProcessMemoryInteger((int)Handle, Pointer, ref Value, 4, ref Bytes);
                         CloseHandle(Handle);
                     }
                 }
             }
             catch
             { }
         }
         return Value;
     }
     public static float ReadPointerFloat(string EXENAME, int Pointer, int[] Offset)
     {
         float Value = 0;
         checked
         {
             try
             {
                 Process[] Proc = Process.GetProcessesByName(EXENAME);
                 if (Proc.Length != 0)
                 {
                     int Bytes = 0;
                     int Handle = OpenProcess(PROCESS_ALL_ACCESS, 0, Proc[0].Id);
                     if (Handle != 0)
                     {
                         foreach (int i in Offset)
                         {
                             ReadProcessMemoryInteger((int)Handle, Pointer, ref Pointer, 4, ref Bytes);
                             Pointer += i;
                         }
                         ReadProcessMemoryFloat((int)Handle, Pointer, ref Value, 4, ref Bytes);
                         CloseHandle(Handle);
                     }
                 }
             }
             catch
             { }
         }
         return Value;
     }
     public static double ReadPointerDouble(string EXENAME, int Pointer, int[] Offset)
     {
         double Value = 0;
         checked
         {
             try
             {
                 Process[] Proc = Process.GetProcessesByName(EXENAME);
                 if (Proc.Length != 0)
                 {
                     int Bytes = 0;
                     int Handle = OpenProcess(PROCESS_ALL_ACCESS, 0, Proc[0].Id);
                     if (Handle != 0)
                     {
                         foreach (int i in Offset)
                         {
                             ReadProcessMemoryInteger((int)Handle, Pointer, ref Pointer, 4, ref Bytes);
                             Pointer += i;
                         }
                         ReadProcessMemoryDouble((int)Handle, Pointer, ref Value, 8, ref Bytes);
                         CloseHandle(Handle);
                     }
                 }
             }
             catch
             { }
         }
         return Value;
     }

     public static void WriteByte(string EXENAME, int Address, byte Value)
     {
         checked
         {
             try
             {
                 Process[] Proc = Process.GetProcessesByName(EXENAME);
                 if (Proc.Length != 0)
                 {
                     int Bytes = 0;
                     int Handle = OpenProcess(PROCESS_ALL_ACCESS, 0, Proc[0].Id);
                     if (Handle != 0)
                     {
                         WriteProcessMemoryByte(Handle,Address,ref Value,2,ref Bytes);
                     }
                     CloseHandle(Handle);
                 }
             }
             catch
             { }
         }
     }
     public static void WriteInteger(string EXENAME, int Address, int Value)
     {
         checked
         {
             try
             {
                 Process[] Proc = Process.GetProcessesByName(EXENAME);
                 if (Proc.Length != 0)
                 {
                     int Bytes = 0;
                     int Handle = OpenProcess(PROCESS_ALL_ACCESS, 0, Proc[0].Id);
                     if (Handle != 0)
                     {
                         WriteProcessMemoryInteger(Handle, Address, ref Value, 4, ref Bytes);
                     }
                     CloseHandle(Handle);
                 }
             }
             catch
             { }
         }
     }
     public static void WriteFloat(string EXENAME, int Address, float Value)
     {
         checked
         {
             try
             {
                 Process[] Proc = Process.GetProcessesByName(EXENAME);
                 if (Proc.Length != 0)
                 {
                     int Bytes = 0;
                     int Handle = OpenProcess(PROCESS_ALL_ACCESS, 0, Proc[0].Id);
                     if (Handle != 0)
                     {
                         WriteProcessMemoryFloat(Handle, Address, ref Value, 4, ref Bytes);
                     }
                     CloseHandle(Handle);
                 }

             }
             catch
             { }
         }
     }
     public static void WriteDouble(string EXENAME, int Address, double Value)
     {
         checked
         {
             try
             {
                 Process[] Proc = Process.GetProcessesByName(EXENAME);
                 if (Proc.Length != 0)
                 {
                     int Bytes = 0;
                     int Handle = OpenProcess(PROCESS_ALL_ACCESS, 0, Proc[0].Id);
                     if (Handle != 0)
                     {
                         WriteProcessMemoryDouble(Handle, Address, ref Value, 8, ref Bytes);
                     }
                     CloseHandle(Handle);
                 }
             }
             catch
             { }
         }
     }

     public static void WritePointerByte(string EXENAME, int Pointer, int[] Offset, byte Value)
     {
         checked
         {
             try
             {
                 Process[] Proc = Process.GetProcessesByName(EXENAME);
                 if (Proc.Length != 0)
                 {
                     int Handle = OpenProcess(PROCESS_ALL_ACCESS, 0, Proc[0].Id);
                     if (Handle != 0)
                     {
                         int Bytes = 0;
                         foreach (int i in Offset)
                         {                             
                             ReadProcessMemoryInteger(Handle, Pointer, ref Pointer, 4,ref Bytes);
                             Pointer += i;
                         }
                         WriteProcessMemoryByte(Handle, Pointer, ref Value, 2, ref Bytes);
                     }
                     CloseHandle(Handle);
                 }
             }
             catch
             { }
         }
     }
     public static void WritePointerInteger(string EXENAME, int Pointer, int[] Offset, int Value)
     {
         checked
         {
             try
             {
                 Process[] Proc = Process.GetProcessesByName(EXENAME);
                 if (Proc.Length != 0)
                 {
                     int Handle = OpenProcess(PROCESS_ALL_ACCESS, 0, Proc[0].Id);
                     if (Handle != 0)
                     {
                         int Bytes = 0;
                         foreach (int i in Offset)
                         {
                             ReadProcessMemoryInteger(Handle, Pointer, ref Pointer, 4, ref Bytes);
                             Pointer += i;
                         }
                         WriteProcessMemoryInteger(Handle, Pointer, ref Value, 4, ref Bytes);
                     }
                     CloseHandle(Handle);
                 }
             }
             catch
             { }
         }
     }
     public static void WritePointerFloat(string EXENAME, int Pointer, int[] Offset, float Value)
     {
         checked
         {
             try
             {
                 Process[] Proc = Process.GetProcessesByName(EXENAME);
                 if (Proc.Length != 0)
                 {
                     int Handle = OpenProcess(PROCESS_ALL_ACCESS, 0, Proc[0].Id);
                     if (Handle != 0)
                     {
                         int Bytes = 0;
                         foreach (int i in Offset)
                         {
                             ReadProcessMemoryInteger(Handle, Pointer, ref Pointer, 4, ref Bytes);
                             Pointer += i;
                         }
                         WriteProcessMemoryFloat(Handle, Pointer, ref Value, 4, ref Bytes);
                     }
                     CloseHandle(Handle);
                 }
             }
             catch
             { }
         }
     }
     public static void WritePointerDouble(string EXENAME, int Pointer, int[] Offset, double Value)
     {
         checked
         {
             try
             {
                 Process[] Proc = Process.GetProcessesByName(EXENAME);
                 if (Proc.Length != 0)
                 {
                     int Handle = OpenProcess(PROCESS_ALL_ACCESS, 0, Proc[0].Id);
                     if (Handle != 0)
                     {
                         int Bytes = 0;
                         foreach (int i in Offset)
                         {
                             ReadProcessMemoryInteger(Handle, Pointer, ref Pointer, 4, ref Bytes);
                             Pointer += i;
                         }
                         WriteProcessMemoryDouble(Handle, Pointer, ref Value, 8, ref Bytes);
                     }
                     CloseHandle(Handle);
                 }
             }
             catch
             { }
         }
     }           
    }


This is VB.NET trainer module written by me.

VB.NET
Code:

'VB.NET Module
'Author : Cless
'How to use Read/Write Pointer
'Example Read
'       Me.Text = ReadPointerInteger(Game exe name, &HPointer,&HOffset).ToString()
'
'       Me.Text = ReadPointerInteger("gta_sa", &HB71A38,&H540).ToString()
'       Or
'       Me.Text = ReadPointerInteger("gta_sa", &HB71A38,&H540,&H544).ToString()
'Example Write
'       WritePointerInteger(Game exe name,&HPointer,Value,&HOffset)
'
'       WritePointerInteger("gta_sa",&HB71A38,1000,&H540)
'       Or
'       WritePointerInteger("gta_sa",&HB71A38,1000,&H540, &H544)

Module Trainer
    Private Declare Function ReadMemoryByte Lib "kernel32" Alias "ReadProcessMemory" (ByVal Handle As Integer, ByVal Address As Integer, ByRef Value As Byte, Optional ByVal Size As Integer = 2, Optional ByRef Bytes As Integer = 0) As Byte
    Private Declare Function ReadMemoryInteger Lib "kernel32" Alias "ReadProcessMemory" (ByVal Handle As Integer, ByVal Address As Integer, ByRef Value As Integer, Optional ByVal Size As Integer = 4, Optional ByRef Bytes As Integer = 0) As Integer
    Private Declare Function ReadMemoryFloat Lib "kernel32" Alias "ReadProcessMemory" (ByVal Handle As Integer, ByVal Address As Integer, ByRef Value As Single, Optional ByVal Size As Integer = 4, Optional ByRef Bytes As Integer = 0) As Single
    Private Declare Function ReadMemoryDouble Lib "kernel32" Alias "ReadProcessMemory" (ByVal Handle As Integer, ByVal Address As Integer, ByRef Value As Double, Optional ByVal Size As Integer = 8, Optional ByRef Bytes As Integer = 0) As Double

    Private Declare Function WriteMemoryByte Lib "kernel32" Alias "WriteProcessMemory" (ByVal Handle As Integer, ByVal Address As Integer, ByRef Value As Byte, Optional ByVal Size As Integer = 2, Optional ByRef Bytes As Integer = 0) As Byte
    Private Declare Function WriteMemoryInteger Lib "kernel32" Alias "WriteProcessMemory" (ByVal Handle As Integer, ByVal Address As Integer, ByRef Value As Integer, Optional ByVal Size As Integer = 4, Optional ByRef Bytes As Integer = 0) As Integer
    Private Declare Function WriteMemoryFloat Lib "kernel32" Alias "WriteProcessMemory" (ByVal Handle As Integer, ByVal Address As Integer, ByRef Value As Single, Optional ByVal Size As Integer = 2, Optional ByRef Bytes As Integer = 0) As Single
    Private Declare Function WriteMemoryDouble Lib "kernel32" Alias "WriteProcessMemory" (ByVal Handle As Integer, ByVal Address As Integer, ByRef Value As Double, Optional ByVal Size As Integer = 2, Optional ByRef Bytes As Integer = 0) As Double

    Public Function ReadByte(ByVal EXENAME As String, ByVal Address As Integer) As Byte
        Dim Value As Byte
        If Process.GetProcessesByName(EXENAME).Length <> 0 Then
            Dim Handle As Integer = Process.GetProcessesByName(EXENAME)(0).Handle
            If Handle <> 0 Then
                ReadMemoryByte(Handle, Address, Value)
            End If
        End If
        Return Value
    End Function

    Public Function ReadInteger(ByVal EXENAME As String, ByVal Address As Integer) As Integer
        Dim Value As Integer
        If Process.GetProcessesByName(EXENAME).Length <> 0 Then
            Dim Handle As Integer = Process.GetProcessesByName(EXENAME)(0).Handle
            If Handle <> 0 Then
                ReadMemoryInteger(Handle, Address, Value)
            End If
        End If
        Return Value
    End Function

    Public Function ReadFloat(ByVal EXENAME As String, ByVal Address As Integer) As Single
        Dim Value As Single
        If Process.GetProcessesByName(EXENAME).Length <> 0 Then
            Dim Handle As Integer = Process.GetProcessesByName(EXENAME)(0).Handle
            If Handle <> 0 Then
                ReadMemoryFloat(Handle, Address, Value)
            End If
        End If
        Return Value
    End Function

    Public Function ReadDouble(ByVal EXENAME As String, ByVal Address As Integer) As Double
        Dim Value As Double
        If Process.GetProcessesByName(EXENAME).Length <> 0 Then
            Dim Handle As Integer = Process.GetProcessesByName(EXENAME)(0).Handle
            If Handle <> 0 Then
                ReadMemoryByte(Handle, Address, Value)
            End If
        End If
        Return Value
    End Function

    Public Function ReadPointerByte(ByVal EXENAME As String, ByVal Pointer As Integer, ByVal ParamArray Offset As Integer()) As Byte
        Dim Value As Byte
        If Process.GetProcessesByName(EXENAME).Length <> 0 Then
            Dim Handle As Integer = Process.GetProcessesByName(EXENAME)(0).Handle
            If Handle <> 0 Then
                For Each I As Integer In Offset
                    ReadMemoryInteger(Handle, Pointer, Pointer)
                    Pointer += I
                Next
                ReadMemoryByte(Handle, Pointer, Value)
            End If
        End If
        Return Value
    End Function

    Public Function ReadPointerInteger(ByVal EXENAME As String, ByVal Pointer As Integer, ByVal ParamArray Offset As Integer()) As Integer
        Dim Value As Integer
        If Process.GetProcessesByName(EXENAME).Length <> 0 Then
            Dim Handle As Integer = Process.GetProcessesByName(EXENAME)(0).Handle
            If Handle <> 0 Then
                For Each I As Integer In Offset
                    ReadMemoryInteger(Handle, Pointer, Pointer)
                    Pointer += I
                Next
                ReadMemoryInteger(Handle, Pointer, Value)
            End If
        End If
        Return Value
    End Function

    Public Function ReadPointerFloat(ByVal EXENAME As String, ByVal Pointer As Integer, ByVal ParamArray Offset As Integer()) As Single
        Dim Value As Single
        If Process.GetProcessesByName(EXENAME).Length <> 0 Then
            Dim Handle As Integer = Process.GetProcessesByName(EXENAME)(0).Handle
            If Handle <> 0 Then
                For Each I As Integer In Offset
                    ReadMemoryInteger(Handle, Pointer, Pointer)
                    Pointer += I
                Next
                ReadMemoryFloat(Handle, Pointer, Value)
            End If
        End If
        Return Value
    End Function

    Public Function ReadPointerDouble(ByVal EXENAME As String, ByVal Pointer As Integer, ByVal ParamArray Offset As Integer()) As Double
        Dim Value As Double
        If Process.GetProcessesByName(EXENAME).Length <> 0 Then
            Dim Handle As Integer = Process.GetProcessesByName(EXENAME)(0).Handle
            If Handle <> 0 Then
                For Each I As Integer In Offset
                    ReadMemoryInteger(Handle, Pointer, Pointer)
                    Pointer += I
                Next
                ReadMemoryDouble(Handle, Pointer, Value)
            End If
        End If
        Return Value
    End Function

    Public Sub WriteByte(ByVal EXENAME As String, ByVal Address As Integer, ByVal Value As Byte)
        If Process.GetProcessesByName(EXENAME).Length <> 0 Then
            Dim Handle As Integer = Process.GetProcessesByName(EXENAME)(0).Handle
            If Handle <> 0 Then
                WriteMemoryByte(Handle, Address, Value)
            End If
        End If
    End Sub

    Public Sub WriteInteger(ByVal EXENAME As String, ByVal Address As Integer, ByVal Value As Integer)
        If Process.GetProcessesByName(EXENAME).Length <> 0 Then
            Dim Handle As Integer = Process.GetProcessesByName(EXENAME)(0).Handle
            If Handle <> 0 Then
                WriteMemoryInteger(Handle, Address, Value)
            End If
        End If
    End Sub

    Public Sub WriteFloat(ByVal EXENAME As String, ByVal Address As Integer, ByVal Value As Single)
        If Process.GetProcessesByName(EXENAME).Length <> 0 Then
            Dim Handle As Integer = Process.GetProcessesByName(EXENAME)(0).Handle
            If Handle <> 0 Then
                WriteMemoryFloat(Handle, Address, Value)
            End If
        End If
    End Sub

    Public Sub WriteDouble(ByVal EXENAME As String, ByVal Address As Integer, ByVal Value As Double)
        If Process.GetProcessesByName(EXENAME).Length <> 0 Then
            Dim Handle As Integer = Process.GetProcessesByName(EXENAME)(0).Handle
            If Handle <> 0 Then
                WriteMemoryDouble(Handle, Address, Value)
            End If
        End If
    End Sub

    Public Sub WritePointerByte(ByVal EXENAME As String, ByVal Pointer As Integer, ByVal Value As Byte, ByVal ParamArray Offset As Integer())
        If Process.GetProcessesByName(EXENAME).Length <> 0 Then
            Dim Handle As Integer = Process.GetProcessesByName(EXENAME)(0).Handle
            If Handle <> 0 Then
                For Each I As Integer In Offset
                    ReadMemoryInteger(Handle, Pointer, Pointer)
                    Pointer += I
                Next
                WriteMemoryByte(Handle, Pointer, Value)
            End If
        End If
    End Sub

    Public Sub WritePointerInteger(ByVal EXENAME As String, ByVal Pointer As Integer, ByVal Value As Integer, ByVal ParamArray Offset As Integer())
        If Process.GetProcessesByName(EXENAME).Length <> 0 Then
            Dim Handle As Integer = Process.GetProcessesByName(EXENAME)(0).Handle
            If Handle <> 0 Then
                For Each I As Integer In Offset
                    ReadMemoryInteger(Handle, Pointer, Pointer)
                    Pointer += I
                Next
                WriteMemoryInteger(Handle, Pointer, Value)
            End If
        End If
    End Sub

    Public Sub WritePointerFloat(ByVal EXENAME As String, ByVal Pointer As Integer, ByVal Value As Single, ByVal ParamArray Offset As Integer())
        If Process.GetProcessesByName(EXENAME).Length <> 0 Then
            Dim Handle As Integer = Process.GetProcessesByName(EXENAME)(0).Handle
            If Handle <> 0 Then
                For Each I As Integer In Offset
                    ReadMemoryInteger(Handle, Pointer, Pointer)
                    Pointer += I
                Next
                WriteMemoryFloat(Handle, Pointer, Value)
            End If
        End If
    End Sub

    Public Sub WritePointerDouble(ByVal EXENAME As String, ByVal Pointer As Integer, ByVal Value As Double, ByVal ParamArray Offset As Integer())
        If Process.GetProcessesByName(EXENAME).Length <> 0 Then
            Dim Handle As Integer = Process.GetProcessesByName(EXENAME)(0).Handle
            If Handle <> 0 Then
                For Each I As Integer In Offset
                    ReadMemoryInteger(Handle, Pointer, Pointer)
                    Pointer += I
                Next
                WriteMemoryDouble(Handle, Pointer, Value)
            End If
        End If
    End Sub
End Module


Sorry for my bad english.


Last edited by Cless on Tue Apr 24, 2012 3:03 am; edited 1 time in total
Back to top
View user's profile Send private message MSN Messenger
atom0s
Moderator
Reputation: 198

Joined: 25 Jan 2006
Posts: 8517
Location: 127.0.0.1

PostPosted: Sun Apr 08, 2012 3:55 pm    Post subject: Reply with quote

Using OpenProcess in .NET is unneeded. You can get a full-access handle from the Process namespace already.
_________________
- Retired.
Back to top
View user's profile Send private message Visit poster's website
Display posts from previous:   
Post new topic   Reply to topic    Cheat Engine Forum Index -> General Gamehacking All times are GMT - 6 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You can download files in this forum


Powered by phpBB © 2001, 2005 phpBB Group

CE Wiki   IRC (#CEF)   Twitter
Third party websites