Page 1 of 2 12 LastLast
Results 1 to 15 of 16
  1. #1
    th9end's Avatar
    Join Date
    Jul 2008
    Gender
    male
    Location
    Galesburg,IL,61401
    Posts
    145
    Reputation
    10
    Thanks
    36
    My Mood
    Mellow

    Talking [[TUTORIAL]] How to make your OWN warrock hacks

    [[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


    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)

    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.

    [IMG]https://i712.photobucke*****m/albums/ww130/timtag1190/imageone.jpg[/IMG]

    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)


    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:

    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..

    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.


    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

    Call WriteALong("WarRock", &H90DC6F, 0)
    Open the second timer and put in

    Call WriteALong("WarRock", &H90DC70, 0)
    Open the third one and put

    Call WriteALong("WarRock", &H90DC71, 0)
    Open the fourth and put

    Call WriteALong("WarRock", &H90DC72, 0)
    Open the fifth and put

    Call WriteALong("WarRock", &H90DC73, 0)
    Open the sixth and put

    Call WriteALong("WarRock", &H90DC77, 0)
    Open the seventh and put

    Call WriteALong("WarRock", &H90DC78, 0)
    Open the eighth and put

    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.

    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)

    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!

    credits: jdogg4232, and me
    Last edited by th9end; 08-17-2009 at 09:25 AM.

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

    Judschien (08-18-2009),perestroika57 (08-17-2009),smoke341 (09-18-2009),xTMx (08-17-2009)

  3. #2
    gchronic's Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    Canada, The king of Marijuana harversting.
    Posts
    83
    Reputation
    10
    Thanks
    5
    My Mood
    Relaxed
    Leeched over another forum.
    That's the first result you get when you type "How to make your own WarRock hacks" in Google, And this post was posted in 2006.


    [IMG]https://i283.photobucke*****m/albums/kk287/redremedy747/steamgif0tvvj8sv8.gif[/IMG]

    Respect List :

    Zhaoyun for his hacks
    Drowsy for cleaning up over 9000 of my temp files
    Obama/Liz/Hood For being 1337 mods.
    Dave for making this website
    KillerID for his thread on basics of C++ hacking

  4. #3
    dgbyud's Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    middle of nowhere
    Posts
    74
    Reputation
    10
    Thanks
    65
    My Mood
    Angry
    Leeched

    i once tried this method and i failed epically

    Click here for some more hooks!

    [img]https://************.com/sig/004/DoP3b0y420.jpg[/img]

    RESPECT LIST:
    THEWEEDKing
    [MPGH]Dave84311
    [MPGH]Obama
    Mat17
    [MPGH]Liz
    Hyak
    TheSpecialist
    DarkAngel

    My Dream Is BIG

    [x]Make a hack
    [o] 10 Post
    [o] 25 Post
    [o] 50 Post
    [o] 100 Post
    [o] 200 Post
    [o]Trusted member
    [o]Special Member
    [o]Become VIP
    [x]10 thanks
    [o]25 thanks
    [o]50 thanks
    [o]100+ thanks
    [o]10 profile Views
    [x]25 profile Views
    [o]100 profile views
    [o]200+ Profile views
    [x]Called A hacker when not hacking
    [x]called a hacker when hacking . .................................................. ...............press the thanks button

  5. #4
    DrowSySworD's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Posts
    131
    Reputation
    11
    Thanks
    23
    Off Topic: Visual Basic 6, and any other Visual Basic sucks for creating hacks, Visual Studio 2003 = Way To Go. Visual Basic is good for other things though.
    __________________________________________________ __________________________
    On Topic: Give credits, stop trying to get credits from leeching. It annoys me very much.
    -Thank you.
    Last edited by DrowSySworD; 08-16-2009 at 08:42 PM.

  6. #5
    gchronic's Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    Canada, The king of Marijuana harversting.
    Posts
    83
    Reputation
    10
    Thanks
    5
    My Mood
    Relaxed
    Quote Originally Posted by DrowSySworD View Post
    __________________________________________________ __________________________
    On Topic: Give credits, stop trying to get credits from leeching. It annoys me very much.
    -Thank you.
    Well said.


    [IMG]https://i283.photobucke*****m/albums/kk287/redremedy747/steamgif0tvvj8sv8.gif[/IMG]

    Respect List :

    Zhaoyun for his hacks
    Drowsy for cleaning up over 9000 of my temp files
    Obama/Liz/Hood For being 1337 mods.
    Dave for making this website
    KillerID for his thread on basics of C++ hacking

  7. #6
    Duterador's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Posts
    45
    Reputation
    10
    Thanks
    26
    My Mood
    Blah
    good job i think this is the best tutorial ^^

    you are the best !

    Help me raise my Habamon!
    Last edited by Duterador; 08-17-2009 at 07:34 AM.

  8. #7
    twoupdoe's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Location
    Pittsburgh,Pa
    Posts
    196
    Reputation
    10
    Thanks
    34
    My Mood
    Bitchy
    dude you epically fail stop leaching hacks and make your own!!!!!!!
    with menu while in game anstead of leaching pic to dude
    [IMG]https://i673.photobucke*****m/albums/vv91/twoupdoe/Wiz_Khalifa_Sig_by_Froz9_edited-1.jpg[/IMG]

  9. #8
    SolidHero's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    Belgium
    Posts
    57
    Reputation
    10
    Thanks
    1
    My Mood
    Aggressive
    he is fking noob! NOOB!!

  10. #9
    twoupdoe's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Location
    Pittsburgh,Pa
    Posts
    196
    Reputation
    10
    Thanks
    34
    My Mood
    Bitchy
    dude your a choob lol and im a newb he shouldnt be a member lol have those poost prbaly spam and leached hacks that dont wrok just are screenshots noob!
    [IMG]https://i673.photobucke*****m/albums/vv91/twoupdoe/Wiz_Khalifa_Sig_by_Froz9_edited-1.jpg[/IMG]

  11. #10
    zhaoyun333's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Posts
    396
    Reputation
    11
    Thanks
    1,125
    Im pretty sure Visual Basic is detected............
    There are five possible operations for any army. If you can fight, fight; if you cannot fight, defend; if you cannot defend, flee; if you cannot flee, surrender; if you cannot surrender, die." - Sima Yi

  12. #11
    th9end's Avatar
    Join Date
    Jul 2008
    Gender
    male
    Location
    Galesburg,IL,61401
    Posts
    145
    Reputation
    10
    Thanks
    36
    My Mood
    Mellow
    Visual Basic isnt a hack

  13. #12
    perestroika57's Avatar
    Join Date
    Nov 2008
    Gender
    male
    Location
    Spain
    Posts
    32
    Reputation
    10
    Thanks
    2
    My Mood
    Yeehaw
    LOL THANKS!!!!! i do a xray hack (after 1 hour -.-) but it works and not get crahs!!!!

  14. #13
    th9end's Avatar
    Join Date
    Jul 2008
    Gender
    male
    Location
    Galesburg,IL,61401
    Posts
    145
    Reputation
    10
    Thanks
    36
    My Mood
    Mellow
    well i hope i helped you

  15. #14
    DrowSySworD's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Posts
    131
    Reputation
    11
    Thanks
    23
    YOU didn't help anyone, you leeched.

  16. #15
    Duterador's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Posts
    45
    Reputation
    10
    Thanks
    26
    My Mood
    Blah
    THATS A GOOD POST ^^.

    IM MAKING A NEW HACK WITH THIS TUTORIAL ^^ .


    Click Here For: FREE WARROCK VIP HACKS!

Page 1 of 2 12 LastLast

Similar Threads

  1. how to make your own hack!
    By blue213321 in forum WarRock - International Hacks
    Replies: 1
    Last Post: 04-25-2009, 04:38 PM
  2. {TUT} How to make your own opk hack
    By mandog10 in forum Combat Arms Hacks & Cheats
    Replies: 28
    Last Post: 08-13-2008, 02:44 PM
  3. [Tutorial] How to make your own undetected module in VB6
    By markfracasso11 in forum Visual Basic Programming
    Replies: 17
    Last Post: 10-15-2007, 09:34 AM
  4. [Tutorial] How to make your own undetected module in VB6
    By markfracasso11 in forum WarRock - International Hacks
    Replies: 22
    Last Post: 09-25-2007, 05:35 AM
  5. (TUT)how to make your own warrock menu
    By aprill27 in forum WarRock - International Hacks
    Replies: 0
    Last Post: 09-21-2007, 03:46 PM

Tags for this Thread