Results 1 to 14 of 14
  1. #1
    floris12345!'s Avatar
    Join Date
    May 2007
    Gender
    male
    Location
    gasdhf
    Posts
    63
    Reputation
    10
    Thanks
    13

    Please help me with stamina hack (VB6)

    i have tried very much times to make a stamina hack in visual basic
    but it wont work for me ?
    Can someone make a tutorial for me (Maybe with printscreens)
    because i followed this link: Making WarRock hack in Visual Basic 6 - Putfile.com

    and the latest addresses got i from this link: https://www.mpgh.net/forum/33-visual_..._vb6_help.html

    can somebody help me please ??

  2. #2
    wr194t's Avatar
    Join Date
    Jul 2007
    Gender
    male
    Location
    Guess.
    Posts
    3,016
    Reputation
    21
    Thanks
    361
    My Mood
    Hot
    ON button:
    Code:
    Timer1.Enabled = True
    OFF button:
    Code:
    Timer1.Enabled = False
    Timer1:
    Code:
    Call WriteALong("WarRock", &H8C4AFC, 1120403456)
    Make sure the timer's Interval is 1, and Enabled False. To change these click on the timer, and go to properties (you should see properties on the right side of the screen).

  3. #3
    floris12345!'s Avatar
    Join Date
    May 2007
    Gender
    male
    Location
    gasdhf
    Posts
    63
    Reputation
    10
    Thanks
    13
    Quote Originally Posted by wr194t View Post
    ON button:
    Code:
    Timer1.Enabled = True
    OFF button:
    Code:
    Timer1.Enabled = False
    Timer1:
    Code:
    Call WriteALong("WarRock", &H8C4AFC, 1120403456)
    Make sure the timer's Interval is 1, and Enabled False. To change these click on the timer, and go to properties (you should see properties on the right side of the screen).

    thanks for helping me
    where did you get the codes from ???
    from my link ??

  4. #4
    wr194t's Avatar
    Join Date
    Jul 2007
    Gender
    male
    Location
    Guess.
    Posts
    3,016
    Reputation
    21
    Thanks
    361
    My Mood
    Hot
    Quote Originally Posted by floris12345! View Post
    thanks for helping me
    where did you get the codes from ???
    from my link ??
    I got the stamina address and value from another forum I visit. The rest of the coding I just already knew.

  5. #5
    floris12345!'s Avatar
    Join Date
    May 2007
    Gender
    male
    Location
    gasdhf
    Posts
    63
    Reputation
    10
    Thanks
    13
    thanks for helping me but what do people mean
    on the sites whit codes with : freeze it to 1 or -1 or something else ???

  6. #6
    wr194t's Avatar
    Join Date
    Jul 2007
    Gender
    male
    Location
    Guess.
    Posts
    3,016
    Reputation
    21
    Thanks
    361
    My Mood
    Hot
    It means freeze a value to an address like stamina:

    &H8C4AFC, 1120403456 <-- You freeze this value to the address, so your stamina stays full.

  7. #7
    floris12345!'s Avatar
    Join Date
    May 2007
    Gender
    male
    Location
    gasdhf
    Posts
    63
    Reputation
    10
    Thanks
    13
    im sorry thats to difficult to understand
    the adress is like this : Call WriteALong("WarRock", &H8C4AFC
    and thisshould be the value: 1120403456)

    or not ? bbut what are the changes when i freeze the value to 1 or something
    else

  8. #8
    radnomguywfq3's Avatar
    Join Date
    Jan 2007
    Gender
    male
    Location
    J:\E\T\A\M\A\Y.exe
    Posts
    8,858
    Reputation
    381
    Thanks
    1,823
    My Mood
    Sad
    Quote Originally Posted by floris12345! View Post
    im sorry thats to difficult to understand
    the adress is like this : Call WriteALong("WarRock", &H8C4AFC
    and thisshould be the value: 1120403456)

    or not ? bbut what are the changes when i freeze the value to 1 or something
    else
    Think of it like this. There are a billion houses in your computer, each house has a number in it, and each house has an address. When you freeze that address to 1120403456, your putting the number 1120403456 in the house with the address of 8C4AFC. Now, when you run on warrock, warrock changes that number to a lower number. WarRock reads the sames houses number to see how much stamina you have left. When you freeze it. You write to that house 1000 times a second, therefore freezing it



    There are two types of tragedies in life. One is not getting what you want, the other is getting it.

    If you wake up at a different time in a different place, could you wake up as a different person?


  9. #9
    floris12345!'s Avatar
    Join Date
    May 2007
    Gender
    male
    Location
    gasdhf
    Posts
    63
    Reputation
    10
    Thanks
    13
    so when i freeze it to 1 it look
    like this : Call WriteALong("WarRock", &H8C4AFC, 1) ????

  10. #10
    wr194t's Avatar
    Join Date
    Jul 2007
    Gender
    male
    Location
    Guess.
    Posts
    3,016
    Reputation
    21
    Thanks
    361
    My Mood
    Hot
    Quote Originally Posted by floris12345! View Post
    so when i freeze it to 1 it look
    like this : Call WriteALong("WarRock", &H8C4AFC, 1) ????
    That's correct.

  11. #11
    olie122333's Avatar
    Join Date
    Oct 2007
    Gender
    male
    Posts
    438
    Reputation
    10
    Thanks
    20

    TOUTORIAL:- (for idiots)

    Quote Originally Posted by floris12345! View Post
    im sorry thats to difficult to understand
    the adress is like this : Call WriteALong("WarRock", &H8C4AFC
    and thisshould be the value: 1120403456)

    or not ? bbut what are the changes when i freeze the value to 1 or something
    else
    TOUTORIAL:-

    0. Make a "Standard EXE" project.
    1. Make a new timer.
    2. Make 2 new buttons.
    3. Change the buttons captions to be "Stamina On" and "Stamina Off".
    4. Double click the "Stamina On" button. A code window will appear.
    5. Copy and Paste This code:-
    Code:
    Timer1.Interval = 1
    6. Close that window. You do not need to save. (ONLY THE CODE WINDOW - NOT VB6!)
    7. Double click the "Stamina Off" button.
    8. Another code window appears.
    9. Copy and paste this code:-
    Code:
    Timer1.Interval = 0
    10. Close that window. You do not need to save. (ONLY THE CODE WINDOW - NOT VB6!)
    11. Double click the timer icon.
    12. Copy and paste this code:-
    Code:
    Call ZHQELUYIN("WarRock", &H8C4AFC, 1120403456)
    13. FINALLY, make a new module and add it to your project. I will PM you a API code - when you revieve it copy and paste the code into the module.

    Click Start, Build Project1
    Select a file name.
    YOU HAVE MADE YOUR FIRST (noobie) HACK!!!

  12. #12
    8oo73l2's Avatar
    Join Date
    Nov 2007
    Gender
    male
    Posts
    25
    Reputation
    10
    Thanks
    0
    YOU HAVE MADE YOUR FIRST (noobie) HACK!!!


    A question:
    Code:
    Private Sub Command1_Click()
    Timer1.Interval = 1
    End Sub
    Code:
    Private Sub Command2_Click()
    Timer1.Interval = 0
    End Sub
    Code:
    Private Sub Timer1_Timer()
    Call WriteALong("WarRock", &HAddress, value)
    End Sub
    Is this the right way for an anti kick? (I alrdy got the address) Do I need a value for it? And do I need to set Enabled to False or True?

  13. #13
    wr194t's Avatar
    Join Date
    Jul 2007
    Gender
    male
    Location
    Guess.
    Posts
    3,016
    Reputation
    21
    Thanks
    361
    My Mood
    Hot
    Anti Kick is a 6 byte NOP:
    Code:
    WriteAByte("WarRock", &H4FBA15, &H90)
    WriteAByte("WarRock", &H4FBA16, &H90)
    WriteAByte("WarRock", &H4FBA17, &H90)
    WriteAByte("WarRock", &H4FBA18, &H90)
    WriteAByte("WarRock", &H4FBA19, &H90)
    WriteAByte("WarRock", &H4FBA1A, &H90)
    This goes in a button.

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

    8oo73l2 (01-15-2008)

  15. #14
    8oo73l2's Avatar
    Join Date
    Nov 2007
    Gender
    male
    Posts
    25
    Reputation
    10
    Thanks
    0
    Wow, great thanks..

Similar Threads

  1. Guys! Please help me with corndog hack!
    By darukam in forum Combat Arms Hacks & Cheats
    Replies: 5
    Last Post: 08-09-2009, 05:01 PM
  2. Help with stamina hack creation please...
    By Jaybird94 in forum WarRock - International Hacks
    Replies: 11
    Last Post: 03-06-2008, 12:16 AM
  3. HELP me with warrock hacks please.
    By aznfan123 in forum WarRock - International Hacks
    Replies: 11
    Last Post: 01-29-2008, 12:27 PM
  4. Please... Help me with this D3D Hook!
    By nukeist_ in forum C++/C Programming
    Replies: 7
    Last Post: 12-22-2007, 08:02 PM
  5. please help me with U.Ammo and invisible
    By Scottsmith in forum WarRock - International Hacks
    Replies: 3
    Last Post: 06-04-2007, 02:33 PM