Results 1 to 15 of 15
  1. #1
    almog6666's Avatar
    Join Date
    Feb 2008
    Gender
    male
    Posts
    280
    Reputation
    10
    Thanks
    128
    My Mood
    Fine

    [Request]Tutorial how to make Hack On VB 2008

    Can some 1 please make a Tutorial how to make Hack On VB 2008?
    Or Find 1 for me?
    or give me a source of VB 2008 Hack.. i cant find and i want make!

  2. #2
    ShadowWrath's Avatar
    Join Date
    Jul 2008
    Gender
    male
    Location
    Unknown
    Posts
    1,595
    Reputation
    12
    Thanks
    198
    My Mood
    In Love
    whats VB???
    Quote Originally Posted by dk173 View Post
    i never had a gf -_-
    [IMG]https://i281.photobucke*****m/albums/kk231/drsynyster/ShadowWrath.png[/IMG]
    ^^Made by: Shayne^^
    I love those who can smile in trouble, who can gather strength from distress, and grow brave by reflection. 'Tis the business of little minds to shrink, but they whose heart is firm, and whose conscience approves their conduct, will pursue their principles unto death.
    Leonardo da Vinci

  3. #3
    almog6666's Avatar
    Join Date
    Feb 2008
    Gender
    male
    Posts
    280
    Reputation
    10
    Thanks
    128
    My Mood
    Fine
    Quote Originally Posted by ShadowWrath View Post
    whats VB???
    Visual Basic Program to program programs )) Funny

  4. #4
    ShadowWrath's Avatar
    Join Date
    Jul 2008
    Gender
    male
    Location
    Unknown
    Posts
    1,595
    Reputation
    12
    Thanks
    198
    My Mood
    In Love
    if it dosent have to do with Crossfire think u can put it in the Request Section of the forums.Suggestion/Request/Help - MPGH - MultiPlayer Game Hacking
    Quote Originally Posted by dk173 View Post
    i never had a gf -_-
    [IMG]https://i281.photobucke*****m/albums/kk231/drsynyster/ShadowWrath.png[/IMG]
    ^^Made by: Shayne^^
    I love those who can smile in trouble, who can gather strength from distress, and grow brave by reflection. 'Tis the business of little minds to shrink, but they whose heart is firm, and whose conscience approves their conduct, will pursue their principles unto death.
    Leonardo da Vinci

  5. #5
    almog6666's Avatar
    Join Date
    Feb 2008
    Gender
    male
    Posts
    280
    Reputation
    10
    Thanks
    128
    My Mood
    Fine
    I asked for a tutorial make a hack of CrossFire it does Right place

  6. #6
    ShadowWrath's Avatar
    Join Date
    Jul 2008
    Gender
    male
    Location
    Unknown
    Posts
    1,595
    Reputation
    12
    Thanks
    198
    My Mood
    In Love
    are u asking for some one to make a hack for u or u trying to make a hack for CrossFire?
    Quote Originally Posted by dk173 View Post
    i never had a gf -_-
    [IMG]https://i281.photobucke*****m/albums/kk231/drsynyster/ShadowWrath.png[/IMG]
    ^^Made by: Shayne^^
    I love those who can smile in trouble, who can gather strength from distress, and grow brave by reflection. 'Tis the business of little minds to shrink, but they whose heart is firm, and whose conscience approves their conduct, will pursue their principles unto death.
    Leonardo da Vinci

  7. #7
    almog6666's Avatar
    Join Date
    Feb 2008
    Gender
    male
    Posts
    280
    Reputation
    10
    Thanks
    128
    My Mood
    Fine
    I try make a hack but i dont know how Dude can some 1 give me tut?

  8. #8
    InHuman's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Location
    somewhere with alot of girls
    Posts
    10,684
    Reputation
    655
    Thanks
    1,812
    My Mood
    Stressed
    wrong section
    /moved

  9. #9
    NrN's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Posts
    182
    Reputation
    11
    Thanks
    55
    My Mood
    Amused
    [[NOTE]] : None Of the addresses work anymore, Current finding the updated ones. So the hacks will not work until me or someone else finds the new addresses!

    Hey there. Are you getting sick of antiously waiting for someone to post a new hack for use, then in like one hour getting banned? Well thats over.

    In this tutorial i will show you how to..

    Designing and customizing your very own hacks
    A few examples on how to add stuff such as Unlimited stamina or swimming

    ----------Getting started-----------

    Before we begin here, you will need the following:

    Microsoft Visual Basic 6.0 (2005 edition will not work)
    Baisc Programming ideas
    Ability to read.


    Step ONE.

    Open visual basic and press New Standard Application.
    - Once it is open. Shape your application and get it ready for hack making.

    2. At the top of VB, Press Project > Add module
    - click on module and press Open.

    add the following code to it (It is long, make shure u get it all)

    Quote:
    Code:

    Public Const PROCESS_ALL_ACCESS = &H1F0FFF
    Dim f1holder As Integer
    Dim timer_pos As Long
    'API Declaration
    Public Declare Function GetWindowThreadProcessId Lib "user32" (ByVal hWnd As Long, lpdwProcessId As Long) As Long
    Public Declare Function OpenProcess Lib "kernel32" (ByVal dwDesiredAccess As Long, ByVal bInheritHandle As Long, ByVal dwProcessId As Long) As Long
    Public Declare Function WriteProcessMemory Lib "kernel32" (ByVal hProcess As Long, ByVal lpBaseAddress As Any, lpBuffer As Any, ByVal nSize As Long, lpNumberOfBytesWritten As Long) As Long
    Public Declare Function CloseHandle Lib "kernel32" (ByVal hObject As Long) As Long
    Public Declare Function FindWindow Lib "user32" Alias "FindWindowA" (ByVal Classname As String, ByVal WindowName As String) As Long
    Public Declare Function GetKeyPress Lib "user32" Alias "GetAsyncKeyState" (ByVal key As Long) As Integer
    Public Declare Function ReadProcessMem 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 Function WriteAByte(gamewindowtext As String, address As Long, value As Byte)
    Dim hWnd As Long
    Dim pid As Long
    Dim phandle As Long
    hWnd = FindWindow(vbNullString, gamewindowtext)
    If (hWnd = 0) Then
    MsgBox "The Game Is Not Working", vbCritical, "Error"
    End
    Exit Function
    End If
    GetWindowThreadProcessId hWnd, pid
    phandle = OpenProcess(PROCESS_ALL_ACCESS, False, pid)
    If (phandle = 0) Then
    MsgBox "Can't get ProcessId", vbCritical, "Error"
    Exit Function
    End If
    WriteProcessMemory phandle, address, value, 1, 0&
    CloseHandle hProcess
    End Function
    Public Function WriteAnInt(gamewindowtext As String, address As Long, value As Integer)
    Dim hWnd As Long
    Dim pid As Long
    Dim phandle As Long
    hWnd = FindWindow(vbNullString, gamewindowtext)
    If (hWnd = 0) Then
    MsgBox "The Game Is Not Working", vbCritical, "Error"
    End
    End If
    GetWindowThreadProcessId hWnd, pid
    phandle = OpenProcess(PROCESS_ALL_ACCESS, False, pid)
    If (phandle = 0) Then
    MsgBox "Can't get ProcessId", vbCritical, "Error"
    Exit Function
    End If
    WriteProcessMemory phandle, address, value, 2, 0&
    CloseHandle hProcess
    End Function
    Public Function WriteALong(gamewindowtext As String, address As Long, value As Long)
    Dim hWnd As Long
    Dim pid As Long
    Dim phandle As Long
    hWnd = FindWindow(vbNullString, gamewindowtext)
    If (hWnd = 0) Then
    MsgBox "The Game Is Not Working", vbCritical, "Error"
    End
    Exit Function
    End If
    GetWindowThreadProcessId hWnd, pid
    phandle = OpenProcess(PROCESS_ALL_ACCESS, False, pid)
    If (phandle = 0) Then
    MsgBox "Can't get ProcessId", vbCritical, "Error"
    Exit Function
    End If
    WriteProcessMemory phandle, address, value, 4, 0&
    CloseHandle hProcess
    End Function
    Public Function ReadAByte(gamewindowtext As String, address As Long, valbuffer As Byte)
    Dim hWnd As Long
    Dim pid As Long
    Dim phandle As Long
    hWnd = FindWindow(vbNullString, gamewindowtext)
    If (hWnd = 0) Then
    MsgBox "The Game Is Not Working", vbCritical, "Error"
    End
    Exit Function
    End If
    GetWindowThreadProcessId hWnd, pid
    phandle = OpenProcess(PROCESS_ALL_ACCESS, False, pid)
    If (phandle = 0) Then
    MsgBox "Can't get ProcessId", vbCritical, "Error"
    Exit Function
    End If
    ReadProcessMem phandle, address, valbuffer, 1, 0&
    CloseHandle hProcess
    End Function
    Public Function ReadAnInt(gamewindowtext As String, address As Long, valbuffer As Integer)
    Dim hWnd As Long
    Dim pid As Long
    Dim phandle As Long
    hWnd = FindWindow(vbNullString, gamewindowtext)
    If (hWnd = 0) Then
    MsgBox "The Game Is Not Working", vbCritical, "Error"
    End
    Exit Function
    End If
    GetWindowThreadProcessId hWnd, pid
    phandle = OpenProcess(PROCESS_ALL_ACCESS, False, pid)
    If (phandle = 0) Then
    MsgBox "Can't get ProcessId", vbCritical, "Error"
    Exit Function
    End If
    ReadProcessMem phandle, address, valbuffer, 2, 0&
    CloseHandle hProcess
    End Function
    Public Function ReadALong(gamewindowtext As String, address As Long, valbuffer As Long)
    Dim hWnd As Long
    Dim pid As Long
    Dim phandle As Long
    hWnd = FindWindow(vbNullString, gamewindowtext)
    If (hWnd = 0) Then
    MsgBox "The Game Is Not Working", vbCritical, "Error"
    End
    Exit Function
    End If
    GetWindowThreadProcessId hWnd, pid
    phandle = OpenProcess(PROCESS_ALL_ACCESS, False, pid)
    If (phandle = 0) Then
    MsgBox "Can't get ProcessId", vbCritical, "Error"
    Exit Function
    End If
    ReadProcessMem phandle, address, valbuffer, 4, 0&
    CloseHandle hProcess
    End Function
    Public Function ReadAFloat(gamewindowtext As String, address As Long, valbuffer As Single)
    Dim hWnd As Long
    Dim pid As Long
    Dim phandle As Long
    hWnd = FindWindow(vbNullString, gamewindowtext)
    If (hWnd = 0) Then
    MsgBox "The Game Is Not Working", vbCritical, "Error"
    End
    Exit Function
    End If
    GetWindowThreadProcessId hWnd, pid
    phandle = OpenProcess(PROCESS_ALL_ACCESS, False, pid)
    If (phandle = 0) Then
    MsgBox "Can't get ProcessId", vbCritical, "Error"
    Exit Function
    End If
    ReadProcessMem phandle, address, valbuffer, 4, 0&
    CloseHandle hProcess
    End Function

    Public Function WriteAFloat(gamewindowtext As String, address As Long, value As Single)
    Dim hWnd As Long
    Dim pid As Long
    Dim phandle As Long
    hWnd = FindWindow(vbNullString, gamewindowtext)
    If (hWnd = 0) Then
    MsgBox "The Game Is Not Working", vbCritical, "Error"
    End
    Exit Function
    End If
    GetWindowThreadProcessId hWnd, pid
    phandle = OpenProcess(PROCESS_ALL_ACCESS, False, pid)
    If (phandle = 0) Then
    MsgBox "Can't get ProcessId", vbCritical, "Error"
    Exit Function
    End If
    WriteProcessMemory phandle, address, value, 4, 0&
    CloseHandle hProcess
    End Function

    (I reccomend putting that code in a text file for later use)

    What that long ass code does is lets ur hack edit warrock settings (memory)

    Once that long code is in there.. Just Close out of the module box (it will save automatically)


    Step THREE..

    In visual basic In the general tab at the left side of visual basic. Press Command Button (double click to make one)

    A new command button should show up in your application area..

    After you made the button you probbaly want to make it say something else than Command1 right? Well ok.

    Click on the button once so it is selected. In the Properties box (Right)
    DO NOT CHANGE THE (NAME) OF THE BUTTON
    Change the Caption of the button. As shown here.


    Ok congratultions you made the button but it does nothing..

    So lets make it do something. Lets make it have us Unlimited stamina.

    But before we start doing this, you need to make a new timer.

    That is also in the general tab

    Make one ( do not name it or anything because it does not show up in the finished hack so dont even worry about it just ignore it )

    So after you made the Timer, Double click on it. Enter the following code:
    (This is for unlimited stamina)

    Quote:
    Code:

    Call WriteALong("WarRock", &H7DB120, 1120403456)

    So your wondering what this means.

    Well WriteALong means to write a value inside or warrock.
    Well &H7DB120 is the address for Stamina, and 1120403456 is the maximum amount of stamina.

    What this code does is Freeze the stamina at 1120403456 which means it will
    never go down.

    After you did that.. Make a NOTHER button. Name it OFF or something that means no more or off (duh)

    So you should now have:

    two buttons
    and a timer

    Double click on the first button you made.

    Type in the following code:

    Quote:
    Timer1.Interval = 1
    What that code does is takes the Timer that we made and puts it into gear

    the syntax is like this.
    (timer name).interval = (1/0)
    1 = ON
    0 = OFF

    So it is kind of self explanitory what we will do for the Off button?

    For the de da dees who dont know what to do for the off button..
    well put this code in it..

    Quote:
    Timer1.Interval = 0
    That takes the timer and makes the stamina go back to normal state.

    CONGRATULATIONS you just made an unlimited stamina hack..
    BUT u are probbaly saying "Yea thats cool but i want more!"

    Well you read the right tutorial for that..

    Ok.

    Place your buttons nicely and evenly if you want it to be cool
    Like i said earlier dont worry about the timer as it will not show up.

    ----Winchester Hack----

    1. make a new button

    Name ur button and put this code in it.

    Quote:
    Code:

    Dim shotgun As Long
    Dim shotgun1 As Long
    Call ReadALong("Warrock", &H896E28, shotgun)
    shotgun1 = shotgun + &H4C
    Call WriteALong("Warrock", shotgun1, 34)

    If you see 34 at the end, this is the gun ID
    You can get any gun in the game if you have the proper weapon ID
    but the only problem with that is that all the guns becides the winchester do no damage, The reason for this is because damage is computed by the warrock server. Why does the winchester do damage? I have no idea
    You CAN use the timer concept here, but this is easier and causes less confusion =)

    So you now have a hack that has unlimited stamina, and a winchester hack.

    .WHAT? you are still not satisfied?? well that what i wrote this for..
    ---------MAKING A NO SPREAD / RECOIL HACK--------
    Note, if you are happy from what you just did.. do not do this becuase this is long and causes a lot of confusion.

    Ok. First off you need to make 8 new timers,, no im not high, yes EIGHT
    Make them in order so you can get easy access
    Open the first one and put this code in
    Quote:
    Call WriteALong("WarRock", &H90DC6F, 0)
    Open the second timer and put in
    Quote:
    Call WriteALong("WarRock", &H90DC70, 0)
    Open the third one and put
    Quote:
    Call WriteALong("WarRock", &H90DC71, 0)
    Open the fourth and put
    Quote:
    Call WriteALong("WarRock", &H90DC72, 0)
    Open the fifth and put
    Quote:
    Call WriteALong("WarRock", &H90DC73, 0)
    Open the sixth and put
    Quote:
    Call WriteALong("WarRock", &H90DC77, 0)
    Open the seventh and put
    Quote:
    Call WriteALong("WarRock", &H90DC78, 0)
    Open the eighth and put
    Quote:
    Call WriteALong("WarRock", &H90DC79, 0)
    Now what you want to do is make a new button and name it like
    no spead on
    Dobule click on it and put in this long code.
    Now since we made a timer1 alerady ( For the unlimited stamina) We will not have timer1 in this. We will start with timer2 because that is what we started with when we made the 8 timers.
    So it will be.
    Quote:
    Timer2.Interval = 1
    Timer3.Interval = 1
    Timer4.Interval = 1
    Timer5.Interval = 1
    Timer6.Interval = 1
    Timer7.Interval = 1
    Timer8.Interval = 1
    Timer9.Interval = 1
    that makes us have no spread and no recoil for our guns
    Now you want to make a new button and name it like no spread off
    double click on it and put in ( If you have been paying attention you would know what to put)
    Quote:
    Timer2.Interval = 0
    Timer3.Interval = 0
    Timer4.Interval = 0
    Timer5.Interval = 0
    Timer6.Interval = 0
    Timer7.Interval = 0
    Timer8.Interval = 0
    Timer9.Interval = 0
    ---------SUPERJUMP-----------

    Plese note.. Since visual basic was from 1998, there is no in game hot keys. I am working on something that may change that soon..

    Anyway. To make superjump, you want to put this inside of a button..

    (No timers)

    Dim jump As Long
    Dim jump1 As Long
    Dim jump3 As Single
    Call ReadALong("WarRock", &H896E28, jump)
    jump1 = jump + &H180
    jump3 = 1500
    Call WriteAFloat("WarRock", jump1, jump3)

    ----------------------------------------

    Do you want to know something? you just made a working warrock hack..

    The advantages of making your own is that you will never be detected unless someone reports you OR YOU POST IT ON A FORUM OR SOMETHING if you keep it just to your self you will be never detected.

    Go to File> Save project and save the project just incase you screwed up and you need to fix.

    After that got o File> Make Project1.exe

    Save it somewhere and open and hack!

    If you are running windows vista you must run the hack under Administrator.
    (right click and press Run as administrator) if you dont do this the hack can not hack!

    Enjoy everyone hope it helped you! (hoffe es hat euch geholfen, ist nich von mir)

    hab ich i-wo gefunden


    I take no credit for this, I credit to [Google Moderator]F1R3Bl4D3

  10. #10
    rohanshah1's Avatar
    Join Date
    Jan 2008
    Gender
    male
    Location
    in your heart
    Posts
    168
    Reputation
    10
    Thanks
    14
    My Mood
    Amazed
    i dont vb works at all

  11. #11
    Noxit's Avatar
    Join Date
    Jul 2007
    Gender
    male
    Location
    N:\O\X\I\T.exe
    Posts
    2,017
    Reputation
    24
    Thanks
    640
    My Mood
    Drunk
    Lol there are not so many tutorials about creating hacks indeed, I searched my hole fucking life for them, but I gave up T_T
    --














  12. #12
    Insomniac's Avatar
    Join Date
    Jun 2009
    Gender
    male
    Location
    Seattle, WA
    Posts
    9,769
    Reputation
    1463
    Thanks
    4,294,967,295
    pretty nice i like it

  13. #13
    nuet123's Avatar
    Join Date
    Jan 2009
    Gender
    male
    Location
    Ontario
    Posts
    27
    Reputation
    10
    Thanks
    1
    My Mood
    Happy
    dude vb works its awesome but took me 2 months to learn and 5 months to learn C++ and C# and VB

  14. #14
    Snape's Avatar
    Join Date
    May 2008
    Gender
    male
    Location
    Hogwarts
    Posts
    13,893
    Reputation
    855
    Thanks
    3,033
    Quote Originally Posted by nuet123 View Post
    dude vb works its awesome but took me 2 months to learn and 5 months to learn C++ and C# and VB
    Gratz man, on talking in 3 weeks old thred, good luck, bec you gonna get ban



  15. #15
    Lukas59's Avatar
    Join Date
    Aug 2008
    Gender
    male
    Location
    Linz
    Posts
    2,197
    Reputation
    14
    Thanks
    306
    My Mood
    Amazed
    great work..

Similar Threads

  1. [Detected] Tutorial: How To Make Some CF Hacks Work
    By ARHQA$Y$YW4AYG4y in forum CrossFire Tutorials
    Replies: 6
    Last Post: 10-27-2011, 05:50 PM
  2. [Request]Tutorial how to make Hack On VB 2008
    By almog6666 in forum CrossFire Hacks & Cheats
    Replies: 7
    Last Post: 07-13-2009, 12:42 PM
  3. [REQUEST] Tutorial on how to make hacks.
    By Seth1134 in forum Combat Arms Hacks & Cheats
    Replies: 10
    Last Post: 08-27-2008, 03:46 PM
  4. [Tutorial] How to make you'r first hack in CE!!!
    By Darky in forum WarRock - International Hacks
    Replies: 3
    Last Post: 07-29-2007, 11:02 AM
  5. {Tutorial} How to make a hack with VB
    By ltkort213 in forum WarRock - International Hacks
    Replies: 31
    Last Post: 06-10-2007, 03:15 PM

Tags for this Thread