Quantcast
Channel: NextGenUpdate
Viewing all articles
Browse latest Browse all 27691

Windows [RELEASE] PC [Trainer - Memory Editor] Library - DLL

$
0
0
Before we start if you are going to use the Reead functions you must:

- Add using System.IO;
- Run final .exe as Administrator!

NOTE :
Code:

This includes some example source code but also source code from programs ive made so PLEASE don´t leech!
Use it to learn on how to use the DLL and to study!

FAQ :
Code:

Q : What .NET FrameWork Do I need?
A : Atleast .NET FrameWork 4.0 :(

Q : So ... what Visual Studio do I need???
A : (I THINK) You can use from 2010 and up!

How to load into the project :
Code:

On the top of your Visual Studio 'tab' you should see 'Project'
Press the 'Project' tab
Press 'Add Reference'
Browse till the DLL
Add it
And now study the source code example =)
***Dont forget to add using System.IO if you are going to use read functions!***

Hey everyone!
Today I am releasing a library / DLL that I have been working on that last few days.....
So let´s start...


Video :
Download : https://www.mediafire.com/?cog0dsufyc784br
Virus Scan : https://www.virustotal.com/en/file/0...is/1390689842/

This is a Release + Tutorial :p
The included video is Release only (I did made a tutorial but it was 71 minutes long.....)

Ok!

So first what this does?
This allows you to easily create PC Trainers / Hacks / Memory Editors..
This contains both Read and Write functions!

This will work for .NET (C# and VB) I did made one for C++ but it was easier to make then to use :p .. and its supposed to be the complete oposite so.... yeah....

So let´s start for C#!

C# DEVELOPERS! :

PasteBin example files :

C# FULL Commented Example File : [C#] C# : /*Made by : MW2TopTenWORLD Library created to ease up PC Trainers and s - Pastebin.com
C# All Clients Tool : [C#] using System; using System.Collections.Generic; using System.ComponentModel; - Pastebin.com

So let´s start!

Add 'using PC_Memory_Editor___Trainer_Library;'
on Partial class add 'MW2TopTenWORLDMemEditor MemEditor = new MW2TopTenWORLDMemEditor();'

Functions :

Code:

WriteInt - Writes an Integer number to the desired offset
MemEditor.WriteInt(string ProcessName, long OffsetToWrite, long WhatToWrite);
Example : MemEditor.WriteInt("iw4mp", 0x01B2C8723, 999999999); //or ..723, Convert.ToInt64(textBox1.Text);

WriteFloat - Writes a Float value to the desired offset
MemEditor.WriteFloat(string ProcessName, long OffsetToWrite, string WhatToWrite);

WriteString - Writes text to the desired offset
MemEditor.WriteString(string ProcessName, long OffsetToWrite, string WhatToWrite);

WriteByte - Writes a byte to the desired offset
MemEditor.WriteByte(string ProcessName, long OffsetToWrite, byte[] Buffer);

WriteDouble - Writes a double to the desired offset
MemEditor.WriteDouble(string ProcessName, long OffsetToWrite, double WhatToWrite);

READ Functions :

How to use : (make sure you have using System.IO;)

READCODE;
textBoxX.Clear();
textBoxX.Text = Convert.ToString(File.ReadAllText(@"tmp.txt");
File.Delete(@"tmp.txt");

ReadInt - Reads an integer from desired offset to a file
MemEditor.ReadInt(string ProcessName, long OffsetToWrite, int LengthToRead); (usually set length as 9!)

ReadFloat - Reads a float from desired offset to a file
MemEditor.ReadFloat(string ProcessName, long OffsetToWrite, int LengthToRead); (usually set length as 4)

ReadString - Reads text from desired offset to a file
MemEditor.ReadString(string ProcessName, long OffsetToWrite, int LengthToRead); (usually set length as whatever the max chars for what you reading is! (example max chars for class name is 15)

ReadByte - Reads byte from desired offset to a file
MemEditor.ReadByte(string ProcessName, long OffsetToWrite, int LengthToRead);

ReadDouble - Reads a double from desired offset to a file
MemEditor.ReadDouble(string ProcessName, long OffsetToWrite, int LengthToRead);


That´s it for C#!!


VB DEVELOPERS :

Paste Bin Examples :

VB Example file : [VisualBasic] VB (I Dont code VB so... just giving one example , the rest should be similiar t - Pastebin.com

Sorry I dont code VB so its not nearly as detailed as the C# one ;(

Add 'Imports PC_Memory_Editor___Trainer_Library' to the imports

Create a Dim 'Dim MemEditor AsNew MW2TopTenWORLDMemEditor'

Now just check the example file..

The functions are the same as C#... I am sorry for not giving much support on VB ;(

Thats all for VB...



Thank you :) and hope you guys enjoyed this release! Hope this helps you ALOT!

Bye!

Viewing all articles
Browse latest Browse all 27691

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>