Join Date: Jun 2010 
					Posts: 35 
					User-Rating: 
					
			 
		 | 
		
			Hallo kann man in VB einen sv_cheats 1 bypasser coden ?
  Ich hab mir schonmal einen in AutoIT geschrieben könnte man das irgentwie imwandeln zu VB oder kann mir irgentwer nen Code senden ? 
  mein AutoIT Bypasser:
 TEXT Code: #include <ButtonConstants.au3> #include <GUIConstantsEx.au3> #include <NomadMemory.au3> #include <StaticConstants.au3> #include <WindowsConstants.au3> #Region ### START Koda GUI section ### Form= $Form1 = GUICreate("Form1", 117, 135, 192, 124) $Label1 = GUICtrlCreateLabel("Bypasser", 8, 8, 83, 17) $Button1 = GUICtrlCreateButton("ON", 8, 32, 81, 41) $Button2 = GUICtrlCreateButton("OFF", 8, 80, 81, 41) GUISetState(@SW_SHOW) #EndRegion ### END Koda GUI section ###   $open = _MemoryOpen(ProcessExists("hl2.exe"))   While 1    $nMsg = GUIGetMsg()    Switch $nMsg 	  Case $GUI_EVENT_CLOSE 		 Exit   		 Case $Button1   		 _MemoryWrite (0xADRESSE,$open,1,"dword")   		 Case $Button2   		 _MemoryWrite (0xADRESSE,$open,0,"dword")      EndSwitch WEnd	     
 
 
  
		 |