Results 1 to 15 of 19

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 boneshot hack with vb

    Ok...
    First 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 Declare 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
    Then make a button with this code:
    Code:
    Call WriteASM(&H004A1F34, "31C0")
    004A1F34 = The new boneshot address (Address by thimo... Thank him a lot!!!)
    31C0 = The ASM code (XOR EAX,EAX)
    That was it...
    Last edited by atheist; 02-10-2008 at 02:26 PM.

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

    ledzepfan1 (02-10-2008),legolas5 (02-11-2008),marc5656 (02-11-2008),poisonpower (02-22-2008)

Similar Threads

  1. Can anyone find/make a BoneShot Hack for WR ???
    By tombradley1992 in forum WarRock - International Hacks
    Replies: 5
    Last Post: 05-28-2008, 08:43 PM
  2. [tut for noobs] How to make a fast as hack with vb
    By atheist in forum WarRock - International Hacks
    Replies: 19
    Last Post: 02-19-2008, 04:15 AM
  3. [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
  4. [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
  5. [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

Tags for this Thread