NFD Addy + Function?Feel like a nub requesting it, but I just can't get mine working. Cheers. Need it so I can release a shitty nomenu. ---------- Post added at 12:08 PM ---------- Previous post was at 10:17 AM ---------- Solved. Thought my function was wrong but it wasn't. So i've found the correct NFD OFS Anyone else who needs help Function: Code: *(float*)(dwPlayer+OFS_NFD) = -99999.0F; NFD OFFSET: Code: 0x102E0
Are you sure this is the right offset? Maybe try it: Code: *(float*)(dwPlayer+OFS_NFD) = -20000; and change the offset to: Code: 0x000102E0
Originally Posted by TheCamels8 Are you sure this is the right offset? Maybe try it: Code: *(float*)(dwPlayer+OFS_NFD) = -20000; and change the offset to: Code: 0x000102E0 Same as the offset I already posted....
Originally Posted by Zithium Same as the offset I already posted.... sometimes you have to add the '000' before the addy..
Oh, didn't think it mattered. And yeah everything i've put up there works. It's just earlier it wasn't working, so I posted the thread, fixed it and posted.
Try this. Put this on your Thread. I think your are not Newbie in Coding. Try to solve by yourself. Code: void NFD() { DWORD dwPlayerPtr = *(DWORD*)playerpointer; if(dwPlayerPtr != 0) { *(float*)(dwPlayer+0x102E0) = -99999; } }