Page 1 of 2 12 LastLast
Results 1 to 15 of 18
  1. #1
    killakk626's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Location
    In a lovely place ♥
    Posts
    392
    Reputation
    9
    Thanks
    84
    My Mood
    Bored

    TUT on making warrock hacks

    Thank me if this helped credits to jdogg4232

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

  2. The Following 5 Users Say Thank You to killakk626 For This Useful Post:

    beteasta3 (07-14-2009),Edraco (07-15-2009),SammyDoge1 (07-15-2009),Trymenub (07-15-2009),wippnb0y (07-14-2009)

  3. #2
    beteasta3's Avatar
    Join Date
    Nov 2008
    Gender
    male
    Location
    Have You Checked You'r Sister's Room?
    Posts
    472
    Reputation
    9
    Thanks
    86
    My Mood
    Devilish
    Well when i used to play and code for warrock there were module makers whered they go?
    [IMG]https://i488.photobucke*****m/albums/rr247/beteasta1/naruto2.png[/IMG]
    [img]https://www.danasof*****m/sig/231698.jpg[/img]
    Press The Thanks Button..Can't Hurt!!

  4. #3
    killakk626's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Location
    In a lovely place ♥
    Posts
    392
    Reputation
    9
    Thanks
    84
    My Mood
    Bored
    thats the cheat engine you need an undected cheat engine to find the code for the hacks and right now there are some good ones posted by alboeagle right now so check it out

  5. #4
    wippnb0y's Avatar
    Join Date
    May 2009
    Gender
    male
    Posts
    33
    Reputation
    10
    Thanks
    3
    My Mood
    Twisted
    I think you made my nose bleed

  6. #5
    Try_Be_Hacker's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Posts
    17
    Reputation
    9
    Thanks
    2
    this tut made like last 3 years!
    and now is cant make warrock hack with VB6

  7. #6
    killakk626's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Location
    In a lovely place ♥
    Posts
    392
    Reputation
    9
    Thanks
    84
    My Mood
    Bored
    just anykind of visualy basic but just not 2005 anyother one will work

  8. #7
    Trymenub's Avatar
    Join Date
    Jun 2009
    Gender
    male
    Posts
    149
    Reputation
    8
    Thanks
    4
    My Mood
    Angry
    Can someone gimme a d/l link for visual basic...i downlaod it...and i dunno where file is...i tried searching for it but still didnt work...plez help...

  9. #8
    Foxey Freddie's Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    The Netherlands
    Posts
    27
    Reputation
    10
    Thanks
    12
    lmao vb6 is detected, I used to make hacks with that one.

  10. #9
    askigoswami's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Posts
    76
    Reputation
    11
    Thanks
    17
    My Mood
    Twisted
    hacks made in visual basic (any version) dont work no more!! Guys if u really wanna code your own hacks check the d3d tutorials in the programming section under c/c++

  11. #10
    Puffin's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Posts
    1,360
    Reputation
    41
    Thanks
    70
    nice copy+paste fail..

  12. #11
    Chuck Norris's Avatar
    Join Date
    Jan 2008
    Gender
    male
    Location
    Between my ears
    Posts
    1,703
    Reputation
    86
    Thanks
    456
    My Mood
    Angelic
    OMFG visual basic is detected shit.
    “Those who control the past, control the future: who controls the present controls the past” ~ George Orwell

    Its me, Dreamgun

  13. #12
    kostman's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Location
    My mother's belly
    Posts
    178
    Reputation
    10
    Thanks
    68
    My Mood
    Goofy
    Too Long DiDn't ReAd....


    Kostman is watching...

  14. #13
    Monkey H4X's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Posts
    22
    Reputation
    10
    Thanks
    46
    My Mood
    Cool
    What? VB6 is patched.

    LOL
    Monkey H4X Site
    Do you want get best War Rock cheat's?
    Send me PM.

    I'am cheat coder
    I create War Rock cheats in C++.

  15. #14
    killakk626's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Location
    In a lovely place ♥
    Posts
    392
    Reputation
    9
    Thanks
    84
    My Mood
    Bored
    try a different visual basics except for 2005

  16. #15
    kostman's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Location
    My mother's belly
    Posts
    178
    Reputation
    10
    Thanks
    68
    My Mood
    Goofy
    LoLz I ThInK VisUaL BaSiC WoRkS cAuSe nAeRoN uSeS iT!!


    Kostman is watching...

Page 1 of 2 12 LastLast

Similar Threads

  1. How to make warrock hacks =)
    By killakk626 in forum Programming Tutorials
    Replies: 6
    Last Post: 05-23-2009, 09:00 AM
  2. [Request] How To Make Warrock Hacks
    By iTZ BOOGEY in forum WarRock - International Hacks
    Replies: 0
    Last Post: 05-09-2009, 07:21 PM
  3. Video tutorial: Making WarRock hack in Visual Basic
    By Darky in forum Visual Basic Programming
    Replies: 5
    Last Post: 02-12-2009, 02:47 PM
  4. I need a torturial on vb8 for making warrock hacks
    By redzayas32 in forum Programming Tutorial Requests
    Replies: 3
    Last Post: 08-29-2008, 09:25 AM
  5. How do you make warrock hacks??
    By araz in forum WarRock - International Hacks
    Replies: 13
    Last Post: 12-17-2007, 11:23 AM

Tags for this Thread