Results 1 to 15 of 20

Threaded View

  1. #1
    atheist's Avatar
    Join Date
    Feb 2008
    Gender
    male
    Posts
    33
    Reputation
    10
    Thanks
    39

    Exclamation [tut for noobs] How to make a fast as hack with vb

    well... i have fixed it now... i used a wrong address...

    give me the thanks button!!!

    1. you need a WriteASM module:
    Code:
    Option Explicit
    
    Public Declare Function E073507F Lib "user32" Alias "GetWindowThreadProcessId" (ByVal hWnd As Long, lpdwID As Long) As Long
    Public Declare Function BFE4EA63 Lib "kernel32" Alias "OpenProcess" (ByVal dwDesiredAccess As Long, ByVal bInheritHandle As Long, ByVal dwID As Long) As Long
    Public Declare Function C92B60B8 Lib "kernel32" Alias "WriteProcessMemory" (ByVal hProcess As Long, ByVal lpBaseAddress As Any, lpBuffer As Any, ByVal nSize As Long, lpNumberOfBytesWritten As Long) As Long
    Public Declare Function E3CA2100 Lib "kernel32" Alias "CloseHandle" (ByVal hObject As Long) As Long
    Public Decl83FD12are Function F79F1CC6 Lib "user32" Alias "FindWindowA" (ByVal Classname As String, ByVal WindowName As String) As Long
    Public Declare Function EF17592B Lib "kernel32" Alias "ReadProcessMemory" (ByVal hProcess As Long, ByVal lpBaseAddress As Any, ByRef lpBuffer As Any, ByVal nSize As Long, lpNumberOfBytesWritten As Long) As Long
    Public Declare Function E98B718D Lib "user32" Alias "GetAsyncKeyState" (ByVal key As Long) As Integer
    
    'WriteAByte
    Public Function WriteAByte(DDC50B45 As Long, F6109BFB As Byte)
    	Dim B4AFE7C6 As Long
    	Dim D8013DDD As Long
    	Dim BBEB130B As Long
    
    	B4AFE7C6= F79F1CC6(vbNullString, "WarRock")
    
    	If (B4AFE7C6= 0) Then
    		Exit Function
    	End If
    
    	E073507F B4AFE7C6,BBEB130B
    
    	D8013DDD= BFE4EA63(&H1F0FFF, False,BBEB130B)
    
    	If (D8013DDD= 0) Then
    		    Exit Function
    	End If
    
    	C92B60B8 D8013DDD,DDC50B45,F6109BFB,1, 0&
    
    	E3CA2100 D8013DDD
    End Function
    
    'WriteASM
    Public Function WriteASM(Address As Long, ASM As String)
    	Dim i As Integer
    	Dim i2 As Integer
    
    	i2 = 1
    	While i < (Len(ASM) / 2)
    		Call WriteAByte(Address + i,  Val("&H" & Mid$(ASM, i2, 2)))
    		i = i + 1
    		i2 = i2 + 2
    	Wend
    End Function
    2. Make a button (you have to click the button every time you equip a new weapon) or timer (hotkeys would be fine) with this code:
    Code:
    Call WriteASM (&H519977, "83FD0E")
    519977 = the right address
    83FD10 = the ASM code (OE is for the weapon speed, if you use 0E its fast as famas but with a higher value = faster)
    Last edited by atheist; 02-11-2008 at 02:47 PM.

  2. The Following 14 Users Say Thank You to atheist For This Useful Post:

    Bigfoot1995 (10-21-2008),haxor3312 (02-16-2008),HeXel (02-10-2008),K2 Nemico (02-12-2008),kkookk (05-11-2008),landerman007 (02-13-2008),ledzepfan1 (02-10-2008),marlo0n (02-18-2008),olli-pekka (02-17-2008),PlSlYlClHlO (06-03-2009),poisonpower (02-18-2008),TimeCode (02-11-2008),X-STUFF (05-19-2008),ysannifeh (02-19-2008)

Similar Threads

  1. [tut for noobs]How to make a boneshot hack with vb
    By atheist in forum WarRock - International Hacks
    Replies: 18
    Last Post: 02-19-2008, 07:20 AM
  2. [tut for noobs] How to make a invi hack with vb
    By atheist in forum WarRock - International Hacks
    Replies: 14
    Last Post: 02-15-2008, 03:36 AM
  3. [tut for noobs] How to make a anti kick hack with vb
    By atheist in forum WarRock - International Hacks
    Replies: 3
    Last Post: 02-13-2008, 09:17 AM
  4. [tut] new tut for starting hackers... again, making advanced hacks i guess
    By blackdrag0 in forum WarRock - International Hacks
    Replies: 21
    Last Post: 06-27-2007, 06:28 PM
  5. How to make a working NFV Hack
    By System79 in forum Game Hacking Tutorials
    Replies: 1
    Last Post: 09-04-2006, 04:56 AM

Tags for this Thread