PDA

View Full Version : Help Converting line to Offset


snipester
23rd December 2006, 21:51
Hi I am having trouble converting 2142 No Fade Nametag line to an Offset.

03FD3262 F0:42 LOCK INC EDX
03FD3264 66: PREFIX DATASIZE:
03FD3265 66:E6 3E OUT 3E,AL
03FD3268 3333 XOR ESI,DWORD PTR DS:[EBX]
03FD326A B3 3E MOV BL,3E
03FD326C 0000 ADD BYTE PTR DS:[EAX],AL
03FD326E 60 PUSHAD
03FD326F 41 INC ECX


I don't know exactly what to do with the Colons ( : ) i tried making an Opsearch hex to scan for it.

F0 42 66 E6 ?? 33 33 B3 3E 00 00 60 41 9A ?? ?? ?? ?? 00 80 28 00

That did not work. I am making a hack in ASM and i need the offset to edit the code properly. I want to turn it into something like the nametag offset:

dwRendDX9Base + 0x1404F5

If someone could help me converting this that would be great, or if there is another way. The line i need to get to is 03FD3262 . i know that 3262 is static and all that changes from each base is the FD.
I know what the code is to stop the nametags from faading but in the ASM file it requires the offset( as far as i know) if any1 can give me any help that would be great. Thanks
§nipester

bithunter_2007
17th February 2007, 04:08
possibly that can help you...
http://www.mpcforum.com/showthread.php?p=1686097#post1686097

good luck

bh_07