Ok thanks and i tried that pointer code and couldnt get it to work: WriteMemory(Of Integer)(ReadMemory(Of Integer)(&H14765B1D0) + &H10 + &H14, 0) (this is for force host)
Can someone help me fix this code im trying to write a pointer with a 10 offset thats a float but idk the code i took a byte pointer and tried to change it to single but it didnt work :C
Dim FOVCalcFound
Dim FOVCalc
FOVCalc = ReadAddress(&H141939D80, 8)
FOVCalcFound = dec2baseN(FOVCalc, 16)
Dim value As Single = Single.Parse(FOVCalcFound, Globalization.NumberStyles.HexNumber)
value += 16
FOVCalcFound = Hex(value)
W4Bytes("&H" + FOVCalcFound, +5)
Can someone tell me how to search for a memory address by its value?
I just don't seem to find anything online.
Thanks.