Results 1 to 3 of 3
  1. #1
    killer2334's Avatar
    Join Date
    Jun 2007
    Gender
    male
    Location
    Tampa,Florida
    Posts
    160
    Reputation
    16
    Thanks
    10

    Quick Question..

    Does GPS work when u make it with vb6??? and if it does how do u do it??does it need a timer?
    Quote Originally Posted by yogilek View Post
    omg.... do u can read?

  2. #2
    unseenss's Avatar
    Join Date
    Jun 2007
    Posts
    426
    Reputation
    12
    Thanks
    3
    just change the value to 1, like you would with any other hack

    Code:
    Private Sub GPS_Click()
        Dim HOn As Long
        
        Call ReadALong("WarRock", GPS_Addy, HOn)
        
        If HOn = 0 Then
            Call WriteALong("WarRock", GPS_Addy, 1)
            gps1.ForeColor = &HFF00&
        Else
            Call WriteALong("WarRock", GPS_Addy, 0)
            gps1.ForeColor = &HFF&
        End If
    End Sub
    if you dont want the changing colors then just

    Code:
    Private Sub GPS_Click()
        Dim HOn As Long
        
        Call ReadALong("WarRock", GPS_Addy, HOn)
        
        If HOn = 0 Then Call WriteALong("WarRock", GPS_Addy, 1) Else Call WriteALong("WarRock", GPS_Addy, 0)
    End Sub
    3 lines ^^

  3. #3
    killer2334's Avatar
    Join Date
    Jun 2007
    Gender
    male
    Location
    Tampa,Florida
    Posts
    160
    Reputation
    16
    Thanks
    10
    Quote Originally Posted by unseenss View Post
    just change the value to 1, like you would with any other hack

    Code:
    Private Sub GPS_Click()
        Dim HOn As Long
        
        Call ReadALong("WarRock", GPS_Addy, HOn)
        
        If HOn = 0 Then
            Call WriteALong("WarRock", GPS_Addy, 1)
            gps1.ForeColor = &HFF00&
        Else
            Call WriteALong("WarRock", GPS_Addy, 0)
            gps1.ForeColor = &HFF&
        End If
    End Sub
    if you dont want the changing colors then just

    Code:
    Private Sub GPS_Click()
        Dim HOn As Long
        
        Call ReadALong("WarRock", GPS_Addy, HOn)
        
        If HOn = 0 Then Call WriteALong("WarRock", GPS_Addy, 1) Else Call WriteALong("WarRock", GPS_Addy, 0)
    End Sub
    ight ty very much appreciate it
    3 lines ^^
    ight ty very much appreciate it
    Quote Originally Posted by yogilek View Post
    omg.... do u can read?

Similar Threads

  1. just a quick question about weapons
    By depkillz in forum WarRock - International Hacks
    Replies: 1
    Last Post: 03-13-2007, 11:48 PM
  2. quick question WPE
    By svalkur in forum WarRock - International Hacks
    Replies: 1
    Last Post: 07-24-2006, 11:26 PM
  3. quick question
    By ace76543 in forum Art & Graphic Design
    Replies: 11
    Last Post: 05-16-2006, 09:53 PM
  4. Quick Question
    By mostwanted in forum WarRock - International Hacks
    Replies: 1
    Last Post: 02-05-2006, 09:50 PM
  5. Quick Question..Please Answer
    By ypg_gamer in forum WarRock - International Hacks
    Replies: 4
    Last Post: 01-04-2006, 10:32 AM