Log in

Coding FAQs

Q: Where would I find cards that are not in the /src/cards c files? I want to look at some other already exsisting cards in their raw c format. Take for instance Ancestrial recall where would I find it decompiled into raw c text? or how do I decompile it?

A: Form the tutorial, you should know how to fine the ASM code for any card. (look on the Magic.exe tab for the code pointer, and then click the '...' button to view the code.

There is also a decompiled version of Manalink 2.01. It can be found here: http://www.savefile.com/files/2088274

To find the code for a specific card, search for the address of the code pointer. You'll find a sub with that name. That's the code. Of course, since decompiling saves no symbolic information, such as variable names, the code isn't always too helpful.