Page 1 of 2 12 LastLast
Results 1 to 15 of 20
  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)

  3. #2
    HeXel's Avatar
    Join Date
    Apr 2007
    Gender
    male
    Location
    Portugal
    Posts
    1,093
    Reputation
    40
    Thanks
    57
    My Mood
    Amused
    thanks dude u rock

    STICKY THIS NOW

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

    lllolll (02-17-2008),marlo0n (02-18-2008)

  5. #3
    HeXel's Avatar
    Join Date
    Apr 2007
    Gender
    male
    Location
    Portugal
    Posts
    1,093
    Reputation
    40
    Thanks
    57
    My Mood
    Amused
    Quote Originally Posted by atheist View Post
    well...
    last but not least xD
    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(&H519973, "83FD0E")
    519973 = the current fast as address
    83FD0E = the ASM code for the famas speed
    theres a problem when i activate the hack warrock closes

  6. The Following User Says Thank You to HeXel For This Useful Post:

    marlo0n (02-18-2008)

  7. #4
    malin's Avatar
    Join Date
    Jan 2008
    Posts
    418
    Reputation
    11
    Thanks
    16
    because this guy is just copy and pasting
    he cant code shit

  8. The Following User Says Thank You to malin For This Useful Post:

    marlo0n (02-18-2008)

  9. #5
    pac0man00's Avatar
    Join Date
    Jan 2008
    Posts
    3
    Reputation
    10
    Thanks
    2
    same for me, just close

  10. The Following User Says Thank You to pac0man00 For This Useful Post:

    marlo0n (02-18-2008)

  11. #6
    atheist's Avatar
    Join Date
    Feb 2008
    Gender
    male
    Posts
    33
    Reputation
    10
    Thanks
    39
    sorry it dont work xD
    there is a mistake in the button code... i will see
    wait...


    @malin... i didnt copy it... I only used the module generator from unseen...
    but I had to change the ASM module code...

    The button code is coded by me xD

  12. The Following User Says Thank You to atheist For This Useful Post:

    marlo0n (02-18-2008)

  13. #7
    pac0man00's Avatar
    Join Date
    Jan 2008
    Posts
    3
    Reputation
    10
    Thanks
    2
    Quote Originally Posted by atheist View Post
    sorry it dont work xD
    there is a mistake in the button code... i will see
    wait...


    @malin... i didnt copy it... I only used the module generator from unseen...
    but I had to change the ASM module code...

    The button code is coded by me xD
    so is it clean now?

  14. The Following User Says Thank You to pac0man00 For This Useful Post:

    marlo0n (02-18-2008)

  15. #8
    bullcr4sh's Avatar
    Join Date
    Sep 2007
    Gender
    male
    Location
    Где-нибудь в мире
    Posts
    1,852
    Reputation
    12
    Thanks
    631
    My Mood
    Dead
    danta faka

  16. The Following User Says Thank You to bullcr4sh For This Useful Post:

    marlo0n (02-18-2008)

  17. #9
    Teeman's Avatar
    Join Date
    Feb 2008
    Location
    wouldn't you like to know!
    Posts
    91
    Reputation
    10
    Thanks
    4
    Please fix this, your boneshot worked fine which i appreciated

  18. The Following 2 Users Say Thank You to Teeman For This Useful Post:

    lllolll (02-17-2008),marlo0n (02-18-2008)

  19. #10
    atheist's Avatar
    Join Date
    Feb 2008
    Gender
    male
    Posts
    33
    Reputation
    10
    Thanks
    39
    Quote Originally Posted by Teeman View Post
    Please fix this, your boneshot worked fine which i appreciated
    i've fixed it

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

    landerman007 (02-19-2008),marlo0n (02-18-2008)

  21. #11
    K2 Nemico's Avatar
    Join Date
    Jul 2007
    Gender
    male
    Posts
    160
    Reputation
    8
    Thanks
    29
    Quote Originally Posted by atheist View Post
    Code:
    Call WriteASM (&H519977, "83FD0E")
    83FD0E?
    isn't it supposed to be &H83FD0E?
    With an &H?
    Correct me if I'm wrong.
    Last edited by K2 Nemico; 02-17-2008 at 12:14 AM.

  22. The Following User Says Thank You to K2 Nemico For This Useful Post:

    marlo0n (02-18-2008)

  23. #12
    yup's Avatar
    Join Date
    Feb 2008
    Gender
    male
    Posts
    102
    Reputation
    11
    Thanks
    3
    why does this still not work??

  24. The Following User Says Thank You to yup For This Useful Post:

    marlo0n (02-18-2008)

  25. #13
    Koekenbakker's Avatar
    Join Date
    Nov 2007
    Posts
    79
    Reputation
    11
    Thanks
    25
    Because fast as * is a code cave..

  26. #14
    K2 Nemico's Avatar
    Join Date
    Jul 2007
    Gender
    male
    Posts
    160
    Reputation
    8
    Thanks
    29
    it keeps on giving me errors then

  27. #15
    Alen's Avatar
    Join Date
    Oct 2007
    Gender
    male
    Location
    Liquid Generator
    Posts
    27,920
    Reputation
    2548
    Thanks
    4,224
    My Mood
    Fine
    As it seems to malfunction for everyone stop trying to use it!

Page 1 of 2 12 LastLast

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