Sensitivity SigScan/Pattern

Posts 17 of 7 · Page 1 of 1
Sensitivity SigScan/Pattern
Just wondering if anyone has the pattern for the sensitivity convar, I can find it myself with CE but if anyone has it on hand, that'd be great.
m_pSensitivity = mem->FindPatternArr(Client.dwBase, Client.dwSize, "xxxxxxxxxxx", 11, 0x6A, 0x01, 0x51, 0xC7, 0x04, 0x24, 0x17, 0xb7, 0xd1, 0x38, 0xb9) + 11;
m_pSensitivity = mem->r<DWORD>(m_pSensitivity) - Client.dwBase;
m_dwSensitivity = m_pSensitivity + 0x2C;
@maxtvm Don't you need to XOR and do some other stuff?

The update XOR'd most values.
Quote Originally Posted by ActualCheats View Post
@maxtvm Don't you need to XOR and do some other stuff?

The update XOR'd most values.
Yeah, you need to do some xor shit. They xored the convar values if i remember correctly.
Quote Originally Posted by ActualCheats View Post
@maxtvm Don't you need to XOR and do some other stuff?

The update XOR'd most values.
Value xored.

i use this functions:
Code:
        float GetSensitivity() {
		DWORD sens_ptr = Client.dwBase + Offsets->m_pSensitivity;
		DWORD sens_value_xored = Mem.Read<DWORD>(Client.dwBase + Offsets->m_dwSensitivity);
		DWORD Value = sens_ptr ^ sens_value_xored ;
		return *(float*)&Value;
	}
	
	void SetSensitivity(float Value) {
		DWORD sens_ptr = Client.dwBase + Offsets->m_pSensitivity;
		DWORD sens_value_xored = *(int*)&Value ^ sens_ptr;
		Mem.Write<DWORD>(Client.dwBase + Offsets->m_dwSensitivity, sens_value_xored );
	}
Can someone describe in detail, in order, how to start to get the usual value m_dwSensitivity. Some guide, for example how to use this function on top
Posts 17 of 7 · Page 1 of 1

Post a Reply

Similar Threads

Tags for this Thread

None

Need help?