I've been with VB for quite a while now. It is easy, I have gotten the basics down, I just wanna know what type of skills I need to hack games. Like reverse engineering? Or what.
Thanks in advance :D
Thanks in advance :D
WriteInteger("gameclient", addy, value)
Memory Editing? I don't think that's possible these days as Xtrap doesn't allow all that.Quote:
For hacking games you maybe have to choose an other language, such as Phyton or C#. I think you should try it with "memoryediting" first.
Memory Editing? I don't think that's possible these days as Xtrap doesn't allow all that.Quote:
For hacking games you maybe have to choose an other language, such as Phyton or C#. I think you should try it with "memoryediting" first.
C++ is easy. I do know that, but I have more of a grip with VB.net that's why I thought that it'll be faster and easier. Whenever I just look at C++. I already figure out that this is hard. -_-Quote:
You shoud move to C#, learn the syntax and do some memory editing trainers with it.
Then you can move to C++ to do more advanced stuff.
I know that C# and VB are pretty much the same (.NET), but if you learn C#, moving to C++ will be way easier than VB to C++ (and trust me I know what I'm talking about, I did this mistake).
Well, I already have those tutorials but I was just wondering C++ or VB.net? >_<Quote:
I'd suggest the Lenas Reversing for Newbies series, it's a series of various tutorial, starting with simple jz / jmp patches and ending with some unpacking of pretty well packed applications.
It's not for VB .NET but you'll need reversing skills if your intention is higher than simply editing some memory via "WriteInteger".
You'll find it with google. :)
And thats why you should use c++ and not vb. Should be easyer to work around xtrap with c++ then with vb.Quote:
Memory Editing? I don't think that's possible these days as Xtrap doesn't allow all that.
No problem actually. I just wanted to know if VB.net has enough control or not. But I guess in the end it comes down to me and my choice.Quote:
And thats why you should use c++ and not vb. Should be easyer to work around xtrap with c++ then with vb.
And yes in the end its your choice. But my opinion is, that it is easyer with c++ then with vb.
Edit : Sry was already said... Didnt read everything ;(
You could also write a wrapper using C++/CLI, that should save you quite some marshalling and it's probably more easy to handle native function calls.Quote:
Unless you have to write a dll, VB.net handles all this stuff quiet well. But bear in mind that using a managed language to do low level stuff requires more effort than a native solution.
It comes down to including winapi header and calling the functions directly vs doing shitty and expensive p/invoke workarounds.