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

    Exclamation what is my mistake ?? (Making hack VB6)

    whats is here wrong
    is made a Stamina + winchester hack with hotkey
    here is de code :
    Private Sub Command1_Click()
    Timer1.Enabled = True
    End Sub

    Private Sub Command2_Click()
    Timer1.Enabled = False
    End Sub

    Private Sub Command3_Click()
    Timer2.Enabled = True
    End Sub

    Private Sub Timer1_Timer()
    Call WriteALong("WarRock", &H8C4AFC, 1120403456)
    End Sub

    Private Sub Timer2_Timer()
    If GetKeyPress(vbKey5) Then
    Dim Shotgun1 As Long
    Dim Shotgun2 As Long
    Call ReadALong("Warrock", &H12A8560, Shotgun1)
    Shotgun2 = Shotgun1 + &H4C
    Call WriteALong("Warrock", Shotgun2, 42)
    End Sub



    What am i doing wrong ??

    P.S. this is the error :
    Private Sub Timer1_Timer()
    Call WriteALong("WarRock", &H8C4AFC, 1120403456)
    End Sub

    and timer1 and timer2 are both False and Interval 1

    is there a problem ??
    Last edited by floris12345!; 01-04-2008 at 06:06 AM.

  2. #2
    floris12345!'s Avatar
    Join Date
    May 2007
    Gender
    male
    Location
    gasdhf
    Posts
    63
    Reputation
    10
    Thanks
    13
    P.S. this is the error :
    Private Sub Timer1_Timer()
    Call WriteALong("WarRock", &H8C4AFC, 1120403456)
    End Sub

    and timer1 and timer2 are both False and Interval 1

    is there a problem ??

  3. #3
    floris12345!'s Avatar
    Join Date
    May 2007
    Gender
    male
    Location
    gasdhf
    Posts
    63
    Reputation
    10
    Thanks
    13

    SCREENSHOT FROM MY HACK

    here is a screenshot

  4. #4
    ZeaS's Avatar
    Join Date
    Feb 2007
    Posts
    738
    Reputation
    15
    Thanks
    265
    if you use "If" you must use "End if"

    Private Sub Timer2_Timer()
    If GetKeyPress(vbKey5) Then
    Dim Shotgun1 As Long
    Dim Shotgun2 As Long
    Call ReadALong("Warrock", &H12A8560, Shotgun1)
    Shotgun2 = Shotgun1 + &H4C
    Call WriteALong("Warrock", Shotgun2, 42)
    End if 'Here Look << it need "End If"
    End Sub

Similar Threads

  1. Help me with making my hack (VB6)
    By floris12345! in forum Visual Basic Programming
    Replies: 2
    Last Post: 01-04-2008, 07:40 AM
  2. How to make hacks with VB6!
    By ltkort213 in forum WarRock - International Hacks
    Replies: 16
    Last Post: 07-21-2007, 08:51 PM
  3. Replies: 14
    Last Post: 08-07-2006, 08:12 PM
  4. Can you make hacking programms with VB??
    By jeremywilms in forum Programming
    Replies: 2
    Last Post: 07-05-2006, 06:19 AM
  5. Whut Language do hackers use when makeing hacks??
    By jeremywilms in forum Programming
    Replies: 23
    Last Post: 07-04-2006, 12:14 PM