How to tinker with code in a DLL?

1

The bar code is being generated through a class from a DLL downloaded from the internet. I need to change this barcode, but this class is blocked. How can I play a game?

    
asked by anonymous 05.08.2015 / 22:50

1 answer

5

First, it is unlikely that you will need to tamper with the barcode. This is something standardized and if it is ready, tinkering will probably only spoil.

Locked class is a term that I do not know but I will understand that you can not manipulate it for some reason.

If you only have a DLL and there is no way to access an API, it has little to do.

You can not help much with so little information. We do not even know what you're talking about.

If you do not have the code, you can decompile it, move what you need, and recompile. But it's not so simple, the code gets pretty bad, it's not easy to tweak it and depending on the case you're doing something illegal.

If you have the code you do not need any gambiarra, just change the code you have.

    
05.08.2015 / 23:00