Hello.

I want to read a simple adress and show the value in a textbox.
For writing, i used this:

Code:
void SetDisableSpeedhack(){
	 DWORD wert1 = *(DWORD*)BasePointer1; 
     if(wert1 > 0){
       wert1 = *(DWORD*)(wert1 + Points6);
       wert1 += Points7;

       *(WORD*)wert1 = 16256 ; 
    }
				
}
But i want to read, and not use offsets, because its not a Pointer.
How can i do it?
Thank you!
Regards, René