Because getting the real call address requires math.
for example:
(IDK if this works in everywhere, just do the math.)
Code:
// gta_sa.exe+4244DA - E8 E2910000 - call gta_sa.exe+42D6C1
// you need to get the value of this (gta_sa.exe+4244DA) plus 1 // E8E2910000
// the value will be 000091E2
// now if you add 4244DA + 000091E2 + 5
// you'll get the real value 42D6C1
Originally Posted by akbargain
Because getting the real call address requires math.
for example:
(IDK if this works in everywhere, just do the math.)
Code:
// gta_sa.exe+4244DA - E8 E2910000 - call gta_sa.exe+42D6C1
// you need to get the value of this (gta_sa.exe+4244DA) plus 1 // E8E2910000
// the value will be 000091E2
// now if you add 4244DA + 000091E2 + 5
// you'll get the real value 42D6C1