Results 1 to 14 of 14
  1. #1
    wr194t's Avatar
    Join Date
    Jul 2007
    Gender
    male
    Location
    Guess.
    Posts
    3,016
    Reputation
    21
    Thanks
    361
    My Mood
    Hot

    [Tutorial] How to set hotkeys to more advanced hacks.

    Hello again. You may remember my last tutorial: How to set hotkeys to basic hacks

    In this tutorial i am going to show you how to set hotkeys to hacks like:

    Super Jump/Sky Stormer
    NFD (No Fall Damage)
    Weapons
    Swim

    Lets start with Super Jump. So this is what your Super Jump code will probably look like:

    Code:
    Dim JSER As Long
    Dim JSER1 As Long
    Dim JSER2 As Single
    Call ReadALong("WarRock", &HAddress, JSER)
    JSER1 = JSER + &HOffset
    JSER2 = Text1.Text (Or a value.)
    Call WriteAFloat("WarRock", JSER1, JSER2)
    Ok make a timer with a interval of 1, enabled true and use this code:

    Code:
    If GetKeyPress (vbKeyMButton) Then
    Dim JSER As Long
    Dim JSER1 As Long
    Dim JSER2 As Single
    Call ReadALong("WarRock", &HAddress, JSER)
    JSER1 = JSER + &HOffset
    JSER2 = Text1.Text (Or a value.)
    Call WriteAFloat("WarRock", JSER1, JSER2)
    Note: If you hold the middle mouse button you will stay in the air which is like Sky Stormer.

    NFD (No Fall Damage):

    Code:
    Dim NFD As Long
    Dim NFD1 As Long
    Call ReadALong("Warrock", &HAddress, NFD)
    NFD1 = NFD + &HOffset
    Call WriteAFloat("Warrock", NFD1, -2000)
    You will need 2 timers (1 timer for On and another for Off.)

    Both timers intervals should be 1 and both enabled true.
    Now for the On kotkey:

    Code:
    If GetKeyPress (vbKeyControl) And GetKeyPress (vbKeyN) Then
    Timer?.Enabled = True (? = Whatever the timer number is with your NFD code.)
    And for Off:

    Code:
    If GetKeyPress (vbKeyControl) And GetKeyPress (vbKeyM) Then
    Timer?.Enabled = False
    Dim NFD As Long
    Dim NFD1 As Long
    Call ReadALong("Warrock", &HAddress, NFD)
    NFD1 = NFD + &HOffset
    Call WriteAFloat("Warrock", NFD1, 0)
    Weapons:

    Code:
    Dim Shotgun1 As Long
    Dim Shotgun2 As Long
    Call ReadALong("Warrock", &HAddress, NFD)
    Shotgun2 = Shotgun1 + &HOffset
    Call WriteAFloat("Warrock", Shotgun2, Value)
    I imagine that this code is in a button so this one can be really simple:

    Code:
    If GetKeyPress (vbKeyControl) And GetKeyPress (vbKeyA) Then Command?_Click (? = Whatever the Command button number is with your Weapons code.
    Last but not least Swim:

    Code:
    Dim SSwim1 As Long
    Dim SSwim2 As Long
    Call ReadALong("Warrock", &HAddress, NFD)
    SSwim2 = SSwim1 + &HOffset
    Call WriteAFloat("Warrock", SSwim2, 4)
    Setting hotkeys to Swim is the same as NFD.

    +rep me if this tutorial was helpful/useful to you.

    Credits: wr194t (AKA 5c0tt.)
    Last edited by wr194t; 10-27-2007 at 01:27 PM.

  2. The Following 6 Users Say Thank You to wr194t For This Useful Post:

    araz (12-17-2007),branso (12-07-2007),K2 Nemico (12-31-2007),kingliwa (05-20-2009),mpghhackersrock123 (11-01-2007),|Uli| (10-22-2009)

  3. #2
    olie122333's Avatar
    Join Date
    Oct 2007
    Gender
    male
    Posts
    438
    Reputation
    10
    Thanks
    20
    lol i still cant give you a rep as apparently i "need to share them round" (message given by the forum software)

  4. #3
    wr194t's Avatar
    Join Date
    Jul 2007
    Gender
    male
    Location
    Guess.
    Posts
    3,016
    Reputation
    21
    Thanks
    361
    My Mood
    Hot
    It's alright. That message just means that you need to +rep other people before you can +rep me again.

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

    kingliwa (05-20-2009)

  6. #4
    Feniks's Avatar
    Join Date
    Sep 2007
    Posts
    45
    Reputation
    10
    Thanks
    0
    What i must to add for command button on super jump
    I added the code for timer
    And command button is empty

  7. #5
    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 Feniks View Post
    What i must to add for command button on super jump
    I added the code for timer
    And command button is empty
    Your command button should be like this:
    Code:
    Dim JSER As Long
    Dim JSER1 As Long
    Dim JSER2 As Single
    Call ReadALong("WarRock", &HAddress, JSER)
    JSER1 = JSER + &HOffset
    JSER2 = Text1.Text (Or a value.)
    Call WriteAFloat("WarRock", JSER1, JSER2)
    And your hotkey timer should be like this:
    Code:
    If GetKeyPress (vbKeyMButton) Then
    Dim JSER As Long
    Dim JSER1 As Long
    Dim JSER2 As Single
    Call ReadALong("WarRock", &HAddress, JSER)
    JSER1 = JSER + &HOffset
    JSER2 = Text1.Text (Or a value.)
    Call WriteAFloat("WarRock", JSER1, JSER2)
    End If

  8. #6
    Feniks's Avatar
    Join Date
    Sep 2007
    Posts
    45
    Reputation
    10
    Thanks
    0
    When i played on Marien I clicked on command button of super-jump i felt to underground and hotkey doesnt work

  9. #7
    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 Feniks View Post
    When i played on Marien I clicked on command button of super-jump i felt to underground and hotkey doesnt work
    What did you set the value as? Post your code.

  10. #8
    Feniks's Avatar
    Join Date
    Sep 2007
    Posts
    45
    Reputation
    10
    Thanks
    0
    Command Button:
    Code:
    Private Sub Command1_Click()
    Dim JSER As Long
    Dim JSER1 As Long
    Dim JSER2 As Single
    Call readalong(&H129EF90, JSER)
    JSER1 = JSER + &H178
    JSER2 = Text1.Text
    Call writeafloat(JSER1, 2000)
    End Sub
    Timer (Enabled - False, Interval - 1)
    Code:
    Private Sub Timer1_Timer()
    If GetKeyPress(vbKeyMButton) Then
    Dim JSER As Long
    Dim JSER1 As Long
    Dim JSER2 As Single
    Call readalong(&H129EF90, JSER)
    JSER1 = JSER + &H178
    JSER2 = Text1.Text
    Call writeafloat(JSER1, 2000)
    End If
    End Sub
    Text1.textbox
    Code:
    2000

  11. #9
    wr194t's Avatar
    Join Date
    Jul 2007
    Gender
    male
    Location
    Guess.
    Posts
    3,016
    Reputation
    21
    Thanks
    361
    My Mood
    Hot
    That all seems correct. It could be the address or offset, I'm not too sure.

  12. #10
    Feniks's Avatar
    Join Date
    Sep 2007
    Posts
    45
    Reputation
    10
    Thanks
    0
    Hotkey doesnt working! Because when i clicked on command button i am jumped!! How i can fix this problem?

  13. #11
    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 Feniks View Post
    Hotkey doesnt working! Because when i clicked on command button i am jumped!! How i can fix this problem?
    Have you tried this for the hotkey:
    Code:
    If GetKeyPress(vbKeyMButton) Then Command1_Click

  14. #12
    martinleemet's Avatar
    Join Date
    May 2008
    Gender
    male
    Posts
    0
    Reputation
    10
    Thanks
    0
    why hacks dount work in me computer

  15. #13
    Hispiforce's Avatar
    Join Date
    Apr 2007
    Gender
    male
    Posts
    5,222
    Reputation
    258
    Thanks
    536
    My Mood
    Cool
    Because your a choob that bumps threads.

  16. #14
    Sp4rt4n's Avatar
    Join Date
    May 2007
    Gender
    male
    Location
    ZM_SPACESTATION nigguh.
    Posts
    581
    Reputation
    11
    Thanks
    41
    thread bumper.....just stfu and leave
    uʍop əpısdn ədʎʇ ʇuɐɔ sqoou
    Whatever happened to sex, drugs, & rock 'n roll?
    now we just have aids, crack, and techno.


    haters gunna hate while they keep drinkin that hatorade.



Similar Threads

  1. [Tutorial] How to set hotkeys to your basic hacks.
    By wr194t in forum Visual Basic Programming
    Replies: 4
    Last Post: 11-08-2007, 03:44 AM
  2. Replies: 8
    Last Post: 07-09-2007, 03:15 PM
  3. [Tutorial] How To Mack HotKeys On VB
    By TheRedEye in forum WarRock - International Hacks
    Replies: 32
    Last Post: 06-23-2007, 10:24 PM
  4. [Tutorial]How to set all maps FREE
    By tony94 in forum WarRock - International Hacks
    Replies: 18
    Last Post: 05-30-2007, 12:26 PM
  5. Replies: 13
    Last Post: 02-09-2006, 10:25 PM