NomadMemory Byte[Hex]

01/10/2014 20:08 Trojan55#1
Hello All, My friend is a C++ programmer he told me i need to patch an adress
he told me that "0x30" = 1 Byte in Hex
it may be integer write here is my code :
Code:
	If $Flash = 1 Then
		_MemoryWrite(0x54890A,$open,0x3F,"BYTE")
	Elseif $Flash = 0 Then
		_MemoryWrite(0x54890A,$open,0x30,"BYTE")
	EndIf
Can anyone help me?
It's anti-flash.
01/10/2014 22:21 butter123#2
you are comparing a number with a size.
0x30=110000=48
whereas 1 byte has 8 bit, is able to hold 256 numbers and can be displayed with 2 hex numbers
01/11/2014 08:46 Trojan55#3
So i can't execute it or? Here is his code C++
int antiFlashAdr = 0x54890A;
char antiFlashON[] = { 0x30 };
char antiFlashOFF[] = { 0x3F };
can u make it autoit?

Any C++ and Autoit programmer could help me?

Uh come one anybody?

GUYS HELPPPPPPPPPPPPPPPPPPPPPPPPP
01/12/2014 12:29 Trojan55#4
No help?
01/13/2014 10:19 Lawliet#5
Maybe you have to add the antiflashadr to the baseadr of your target?