Quote:
Originally Posted by Farming Inc.
he wont use , he always stay BETA :D but i do ibot autoupdating version with x50 handling ;)
|
btw replace your handling modifier with this, I kinda screwed up the last one :D
Code:
Func _HandlingHack($Toggle = True, $Modifier = 10)
If ProcessExists("nfsw.exe") Then
$PID = ProcessExists("nfsw.exe")
$MemoryAccess = _MemoryOpen($PID)
$BaseAddress = _MemoryModuleGetBaseAddress($PID, "nfsw.exe")
$Address = $BaseAddress + 0x448288
Switch $Toggle
Case True
If $AllocatedADDR <> 0 Then _MemoryVirtualFreeEx($MemoryAccess[1], $AllocatedADDR, 128, $MEM_DECOMMIT)
$AllocatedADDR = _MemoryVirtualAllocEx($MemoryAccess[1], 0, 128, $MEM_COMMIT, $PAGE_EXECUTE_READWRITE)
$WriteADDR = Hex($AllocatedADDR)
$WriteADDR = (StringRight($WriteADDR, 2) & StringMid($WriteADDR, 5, 2) & StringMid($WriteADDR, 3, 2) & StringLeft($WriteADDR, 2))
_WriteFloat($MemoryAccess, $AllocatedADDR, $Modifier)
_WriteBytes($MemoryAccess, ($Address + 3), "05")
_WriteBytes($MemoryAccess, ($Address + 4), $WriteADDR)
Case False
_WriteBytes($MemoryAccess, ($Address + 3), "86 E4 00 00 00")
_WriteBytes($MemoryAccess, ($Address + 7), "F3 0F 59 86")
If $AllocatedADDR <> 0 Then _MemoryVirtualFreeEx($MemoryAccess[1], $AllocatedADDR, 128, $MEM_DECOMMIT)
EndSwitch
_MemoryClose($MemoryAccess)
EndIf
EndFunc ;==>_Handling