Memory Editing. Are pointers required?
I was wondering if Modern Warfare 3 uses static memory addresses or if I need to go find pointers.
Game functions yes,
Some dvars are dynamic as well.
Usually there's something like:
DWORD * Dvar = RegisterDvar(DvarName);
Aka the dword "Dvar" is a pointer to the actual offset which makes finding pointers easier as the "Dvar" offset never changes, just the location of the structure.