How to Win Any PC Game

I have just discovered a quick way to beat any game that involves virtual currency – thanks to a request to me by a certain “leetkiss” on a freelancing website. I am very impressed by leetkiss’ understanding of reusable software patterns and C++ Interop and the clean code that he writes. He has written most of the software and is only missing one small piece now – one that he wants to outsource.

Even though I am too busy to take up his project, I am thinking of buying the program from him, once he gets it developed, so that I can be rich in the few MMORPGs that I play.

Here’s his complete request, please leave a comment if you can do this for him and I will get you in touch:

Hey

I want a program made, that can do the following:

The program will be called “Game Cheater” and It will make a troublesome PC GAME easier to win by helping you find the memory address where a desired quantity (like amount of money) is located so ou can change that quantity.

The program will find a hex address based on the input parameters you set and edit these addresses to my desired quantity.

Example (changing the money variable in a GAME from $50 to $999999999):

Call changeMemory(search_string, replace_String)

Call changeMemory(“$50”, “$999999999”)

It needs to be a .DLL file ( C++ )

I need to be able to use the DLL in my VB6 program. Here is ALL of the source code from my VB6:

Private Sub Command1_Click()
search_string = “$50”
replace_string = “$9999999”
changeMemory(search_string, replace_String)
End Sub