Results 1 to 7 of 7
  1. #1
    Death526's Avatar
    Join Date
    May 2007
    Gender
    male
    Location
    In the bed with your mom. We have the door locked so dont try to come in
    Posts
    341
    Reputation
    11
    Thanks
    3

    superjump, swim, and no fall damage

    Ok here are the addresses

    Superjump : 008B5288 + 180

    No Fall Damage : 008B5288 + 26C

    Swim : 008B5288 + 54

    First person to give me completely filled out code other than timer number will get their credits in every trainer i make also could u put the hot keys as

    superjump = control + 1

    No Fall Damage = Control + 2

    Swim = control + 3

    If u can thank u so much

  2. #2
    unseenss's Avatar
    Join Date
    Jun 2007
    Posts
    426
    Reputation
    12
    Thanks
    3
    Code:
    Private Sub sj_Click()
        Dim addy As Long
        Dim Addy2 As Long
        
        Call ReadALong("WarRock", Weapon_Address, addy)
        
        Addy2 = addy + SJ_Offset
        
        Call WriteAFloat("WarRock", Addy2, Val(SJ_H.Text))
    End Sub
    Code:
    Private Sub fall_Click()
        If timer5.Enabled = False Then timer5.Enabled = True Else timer5.Enabled = False
    End Sub
    Code:
    Private Sub swim_Click()
            Dim addy As Long
        Dim Addy2 As Long
        Dim HOn As Long
        
        Call ReadALong("Warrock", Weapon_Address, addy)
        Addy2 = addy + Pos_Offset
        
        Call ReadALong("Warrock", Addy2, HOn)
        
        If HOn = 4 Then Call WriteALong("Warrock", Addy2, 0) Else Call WriteALong("Warrock", Addy2, 4)
    End Sub
    Code:
    Private Sub Timer5_Timer()
        Dim addy As Long
        Dim Addy2 As Long
        
        Call ReadALong("WarRock", NFD_Address, addy)
        Addy2 = addy + nfd_Offset
        Call WriteALong("WarRock", Addy2, -100)
    End Sub
    Code:
    Private Sub Timer1_Timer()
        If  GetKeyPress(vbKeyControl) And GetKeyPress(vbKey3) Then swim_Click
        If  GetKeyPress(vbKeyControl) And GetKeyPress(vbKey2) Then fall_Click
        If  GetKeyPress(vbKeyControl) And GetKeyPress(vbKey1) Then sj_Click
    End Sub
    Credits:
    gameglitchers.******

  3. #3
    Death526's Avatar
    Join Date
    May 2007
    Gender
    male
    Location
    In the bed with your mom. We have the door locked so dont try to come in
    Posts
    341
    Reputation
    11
    Thanks
    3
    Quote Originally Posted by unseenss View Post
    Code:
    Private Sub sj_Click()
        Dim addy As Long
        Dim Addy2 As Long
        
        Call ReadALong("WarRock", Weapon_Address, addy)
        
        Addy2 = addy + SJ_Offset
        
        Call WriteAFloat("WarRock", Addy2, Val(SJ_H.Text))
    End Sub
    Code:
    Private Sub fall_Click()
        If timer5.Enabled = False Then timer5.Enabled = True Else timer5.Enabled = False
    End Sub
    Code:
    Private Sub swim_Click()
            Dim addy As Long
        Dim Addy2 As Long
        Dim HOn As Long
        
        Call ReadALong("Warrock", Weapon_Address, addy)
        Addy2 = addy + Pos_Offset
        
        Call ReadALong("Warrock", Addy2, HOn)
        
        If HOn = 4 Then Call WriteALong("Warrock", Addy2, 0) Else Call WriteALong("Warrock", Addy2, 4)
    End Sub
    Code:
    Private Sub Timer5_Timer()
        Dim addy As Long
        Dim Addy2 As Long
        
        Call ReadALong("WarRock", NFD_Address, addy)
        Addy2 = addy + nfd_Offset
        Call WriteALong("WarRock", Addy2, -100)
    End Sub
    Code:
    Private Sub Timer1_Timer()
        If  GetKeyPress(vbKeyControl) And GetKeyPress(vbKey3) Then swim_Click
        If  GetKeyPress(vbKeyControl) And GetKeyPress(vbKey2) Then fall_Click
        If  GetKeyPress(vbKeyControl) And GetKeyPress(vbKey1) Then sj_Click
    End Sub
    Credits:
    gameglitchers.******


    thanks but thats 2 complicated i need something that is completely filled in. like the addresses in and offsets and all that stuff
    Last edited by Death526; 08-04-2007 at 11:29 PM.

  4. #4
    unseenss's Avatar
    Join Date
    Jun 2007
    Posts
    426
    Reputation
    12
    Thanks
    3
    <<deleted>>
    Last edited by unseenss; 08-04-2007 at 11:50 PM.

  5. #5
    unseenss's Avatar
    Join Date
    Jun 2007
    Posts
    426
    Reputation
    12
    Thanks
    3
    that is completley filled in...dont you know about constants?,or you could just replace the _ADDY with the actual address and the _OFFSET with the offset...if you cant do that...thats sad
    Last edited by unseenss; 08-04-2007 at 11:53 PM.

  6. #6
    Death526's Avatar
    Join Date
    May 2007
    Gender
    male
    Location
    In the bed with your mom. We have the door locked so dont try to come in
    Posts
    341
    Reputation
    11
    Thanks
    3
    Quote Originally Posted by unseenss View Post
    that is completley filled in...dont you know about constants?,or you could just replace the _ADDY with the actual address and the _OFFSET with the offset...if you cant do that...thats sad
    every addy there i got to fill in with address?

  7. #7
    NetNavi's Avatar
    Join Date
    May 2007
    Location
    Gourav's. He said he was going to make me a cake. oh, he's back..NAKED! WTF r u doi-
    Posts
    3,788
    Reputation
    8
    Thanks
    204
    Quote Originally Posted by unseenss View Post
    Code:
    Private Sub sj_Click()
        Dim addy As Long
        Dim Addy2 As Long
        
        Call ReadALong("WarRock", Weapon_Address, addy)
        
        Addy2 = addy + SJ_Offset
        
        Call WriteAFloat("WarRock", Addy2, Val(SJ_H.Text))
    End Sub
    Code:
    Private Sub fall_Click()
        If timer5.Enabled = False Then timer5.Enabled = True Else timer5.Enabled = False
    End Sub
    Code:
    Private Sub swim_Click()
            Dim addy As Long
        Dim Addy2 As Long
        Dim HOn As Long
        
        Call ReadALong("Warrock", Weapon_Address, addy)
        Addy2 = addy + Pos_Offset
        
        Call ReadALong("Warrock", Addy2, HOn)
        
        If HOn = 4 Then Call WriteALong("Warrock", Addy2, 0) Else Call WriteALong("Warrock", Addy2, 4)
    End Sub
    Code:
    Private Sub Timer5_Timer()
        Dim addy As Long
        Dim Addy2 As Long
        
        Call ReadALong("WarRock", NFD_Address, addy)
        Addy2 = addy + nfd_Offset
        Call WriteALong("WarRock", Addy2, -100)
    End Sub
    Code:
    Private Sub Timer1_Timer()
        If  GetKeyPress(vbKeyControl) And GetKeyPress(vbKey3) Then swim_Click
        If  GetKeyPress(vbKeyControl) And GetKeyPress(vbKey2) Then fall_Click
        If  GetKeyPress(vbKeyControl) And GetKeyPress(vbKey1) Then sj_Click
    End Sub
    Credits:
    gameglitchers.******

    all you have to do is replace the "NFD_ADDRESS, ADDY)

    with the real address and change the values

    real simple

    even i understand

    and i dont even have vb6...

Similar Threads

  1. [HELP]How Me Make Superjump and No fall Damage?
    By xown0x in forum WarRock - International Hacks
    Replies: 8
    Last Post: 03-02-2008, 03:58 AM
  2. No fall damage and super jump code?
    By TheBlueMax in forum Visual Basic Programming
    Replies: 13
    Last Post: 10-15-2007, 04:00 PM
  3. superjump, no fall damage, swim
    By Death526 in forum WarRock - International Hacks
    Replies: 20
    Last Post: 08-04-2007, 10:30 AM
  4. trade stamina, weapons, super jump, no fall damage and scope dinamic adres!!!
    By ferrar1000 in forum WarRock - International Hacks
    Replies: 8
    Last Post: 07-01-2007, 07:14 PM
  5. no fall damage addresse and pointer or value
    By 123456789987654321 in forum WarRock - International Hacks
    Replies: 2
    Last Post: 06-28-2007, 06:04 PM