Thread: VB command

Results 1 to 11 of 11
  1. #1
    khaid's Avatar
    Join Date
    Jun 2007
    Gender
    male
    Posts
    56
    Reputation
    10
    Thanks
    10

    VB command

    Hey,

    I'm making a trainer atm and I'm just learning the basics of VB6
    but uhm.. I got the stamina working now I was just wondering could some1 post a tut on how to do instant spawn, no spread and no recoil...
    I've got the Adresses and all i just need to know what command i have to fill in at VB 6 like for Stamina I've got:

    Private Sub Timer1_Timer()
    Call ngen_wlong("WarRock", &H******, **********)
    End Sub

    Private Sub CmdStamina_Click()
    If Timer1.Interval = 1 Then
    Timer1.Interval = 0
    Else
    Timer1.Interval = 1
    End If
    End Sub

    so what do I fill in for those others ? how to do it?

    Would be very grateful

  2. #2
    Massaka's Avatar
    Join Date
    May 2007
    Posts
    175
    Reputation
    10
    Thanks
    14
    Thats Right:

    You need:

    1x Checkbox
    1x Timer

    Copy This and Paste into your Checkbox:

    If Check1 = 1 Then
    Timer1.Interval = 1
    Else
    Timer1.Interval = 0
    End If

    And paste this in your Timer:

    Call ngen_wlong("WarRock", &H******, **********)

  3. #3
    khaid's Avatar
    Join Date
    Jun 2007
    Gender
    male
    Posts
    56
    Reputation
    10
    Thanks
    10
    Quote Originally Posted by Massaka View Post
    Thats Right:

    You need:

    1x Checkbox
    1x Timer

    Copy This and Paste into your Checkbox:

    If Check1 = 1 Then
    Timer1.Interval = 1
    Else
    Timer1.Interval = 0
    End If

    And paste this in your Timer:

    Call ngen_wlong("WarRock", &H******, **********)
    yea found it thnx tho

  4. #4
    khaid's Avatar
    Join Date
    Jun 2007
    Gender
    male
    Posts
    56
    Reputation
    10
    Thanks
    10
    lol 1 more ...
    how u put hotkeys on a command?

  5. #5
    unseenss's Avatar
    Join Date
    Jun 2007
    Posts
    426
    Reputation
    12
    Thanks
    3
    Code:
    If GetKeyPress(vbKeyControl) Then Stamina_Click
    that goes in a general timer

  6. #6
    DaHax0r's Avatar
    Join Date
    Sep 2007
    Gender
    male
    Posts
    25
    Reputation
    10
    Thanks
    0
    gj keep up the good work

  7. #7
    brownsfan91's Avatar
    Join Date
    May 2007
    Location
    warren, ohio
    Posts
    1,964
    Reputation
    13
    Thanks
    95
    Quote Originally Posted by DaHax0r View Post
    gj keep up the good work
    fuck u

  8. #8
    t1mm5's Avatar
    Join Date
    Oct 2007
    Gender
    male
    Location
    In a deep black hole @ the end of the world
    Posts
    60
    Reputation
    10
    Thanks
    1
    is a sample for you. Its for SuperJump With the Hotkeys Control+ Space

    Code:
    Private Sub TimerXX_Timer()
    Dim spj as Long
    Dim spj2 as Long

    Call rlong("Warrock", &H1180400, spj)
    spj2 = spj + &H178

    If GetKeyPress(vbKeyControl) And GetKeyPress(vbKeySpace) Then
    Call wlong("Warrock", spj2, 1500)
    End If
    End Sub

    But donĀ“t just copy this! Think about it

  9. #9
    bohnenbong's Avatar
    Join Date
    Oct 2007
    Gender
    male
    Location
    On the toilette^^
    Posts
    222
    Reputation
    10
    Thanks
    47
    Isnt it difineted on the most TuTs to make a Hack ?

  10. #10
    m4sterdoom's Avatar
    Join Date
    Oct 2007
    Posts
    31
    Reputation
    10
    Thanks
    1
    why is it so hard for some people to make a SJ or a SS hack?

  11. #11
    khaid's Avatar
    Join Date
    Jun 2007
    Gender
    male
    Posts
    56
    Reputation
    10
    Thanks
    10
    thnx

    It's not hard to make the hack itsself just didn't know how to put a hotkey command on it

Similar Threads

  1. Run Commands!
    By AN1MAL in forum Spammers Corner
    Replies: 12
    Last Post: 01-01-2007, 01:51 PM
  2. supreme commander and command&conquer hacking
    By TheDisruptor in forum General Game Hacking
    Replies: 3
    Last Post: 11-26-2006, 10:50 PM
  3. Command & Conquer Generals
    By heero_yuy in forum General Game Hacking
    Replies: 2
    Last Post: 06-21-2006, 03:12 AM
  4. Warrock Command List
    By Dave84311 in forum WarRock - International Hacks
    Replies: 5
    Last Post: 05-26-2006, 11:03 PM
  5. Demon of some commands
    By HolyFate in forum Gunz Hacks
    Replies: 12
    Last Post: 02-21-2006, 01:43 PM