Results 1 to 15 of 15
  1. #1
    123456789987654321's Avatar
    Join Date
    May 2007
    Gender
    male
    Location
    HOLLAND
    Posts
    243
    Reputation
    11
    Thanks
    6

    mp7 in item shop

    so i have this code but when i press numpad 7 nothing happens plz. tell me what am i doing wrong??

    Private Sub Timer15_Timer()
    If GetKeyPress(vbKeyNumpad7) Then
    Call ReadALong("WarRock", &H24703F4, 24)
    End If
    End Sub

  2. #2
    castaway's Avatar
    Join Date
    Mar 2007
    Location
    In a BIG Box.
    Posts
    1,636
    Reputation
    14
    Thanks
    97
    Code:
    Private Sub Timer15_Timer()
    If GetKeyPress(vbKeyNumpad7) Then
    Call ReadALong("WarRock", &H24703F4, 24)
    End If
    End Sub
    it reads the adress....
    it must write

    Code:
    Private Sub Timer15_Timer()
    If GetKeyPress(vbKeyNumpad7) Then
    Call WriteALong("WarRock", &H24703F4, 24)
    End If
    End Sub
    good luck

  3. #3
    123456789987654321's Avatar
    Join Date
    May 2007
    Gender
    male
    Location
    HOLLAND
    Posts
    243
    Reputation
    11
    Thanks
    6
    so i have now writealong instad of read along but when i m in the item shop and press numpad 7 nothing happens at all what am i doing wrong??

  4. #4
    nbr1dan's Avatar
    Join Date
    Mar 2007
    Location
    At my computer
    Posts
    168
    Reputation
    14
    Thanks
    15
    your timer interval needs to be 100

  5. #5
    123456789987654321's Avatar
    Join Date
    May 2007
    Gender
    male
    Location
    HOLLAND
    Posts
    243
    Reputation
    11
    Thanks
    6
    with a interval of 1 it isnt working and with an interval of 100 it is isnt working

  6. #6
    nbr1dan's Avatar
    Join Date
    Mar 2007
    Location
    At my computer
    Posts
    168
    Reputation
    14
    Thanks
    15
    Right click on the timer and then choose properties and set timer interval to 100.

    Also use the WriteALong not ReadALong

  7. #7
    123456789987654321's Avatar
    Join Date
    May 2007
    Gender
    male
    Location
    HOLLAND
    Posts
    243
    Reputation
    11
    Thanks
    6
    i have this and my timer interval is 100

    Private Sub Timer15_Timer()
    If GetKeyPress(vbKeyNumpad7) Then
    Call WriteALong("WarRock", &H24703F4, 24)
    End If
    End Sub

  8. #8
    nbr1dan's Avatar
    Join Date
    Mar 2007
    Location
    At my computer
    Posts
    168
    Reputation
    14
    Thanks
    15
    Did you open up your form, right click on the form "View Code" then write?

    Private Declare Function GetAsyncKeyState Lib "user32" (ByVal vKey As Long) As Integer

  9. #9
    123456789987654321's Avatar
    Join Date
    May 2007
    Gender
    male
    Location
    HOLLAND
    Posts
    243
    Reputation
    11
    Thanks
    6
    u dont have to do that for this is another way to make hotkeys

  10. #10
    123456789987654321's Avatar
    Join Date
    May 2007
    Gender
    male
    Location
    HOLLAND
    Posts
    243
    Reputation
    11
    Thanks
    6
    do u have it working yourself??

  11. #11
    castaway's Avatar
    Join Date
    Mar 2007
    Location
    In a BIG Box.
    Posts
    1,636
    Reputation
    14
    Thanks
    97
    just use the ascii k3ys much better :d

  12. #12
    123456789987654321's Avatar
    Join Date
    May 2007
    Gender
    male
    Location
    HOLLAND
    Posts
    243
    Reputation
    11
    Thanks
    6
    is this right because it is not working??

    Private Sub Timer14_Timer()
    If GetAsyncKeyState(112) <> 0 Then
    Call WriteALong("WarRock", &H24703F4, 24)
    End If
    End Sub

    i add this to the code:
    Private Declare Function GetAsyncKeyState Lib "user32" (ByVal vKey As Long) As Integer

    my timer interval is: 100

  13. #13
    castaway's Avatar
    Join Date
    Mar 2007
    Location
    In a BIG Box.
    Posts
    1,636
    Reputation
    14
    Thanks
    97
    lol the adress is not good...
    its 00(6 number/leeters)

    at yours its 00(7 letters/numbers)

    i thought alteast

  14. #14
    FluffyStuff's Avatar
    Join Date
    May 2007
    Location
    Dark side of the moon
    Posts
    308
    Reputation
    10
    Thanks
    150
    Shouldnt the hex address be 0x########? And are you sure the timer is enabled? Go to the from and click the timer to see if enabled == true.

  15. #15
    lana2's Avatar
    Join Date
    May 2006
    Posts
    7
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by nbr1dan View Post
    Did you open up your form, right click on the form "View Code" then write?

    Private Declare Function GetAsyncKeyState Lib "user32" (ByVal vKey As Long) As Integer
    Where write this? thanks

Similar Threads

  1. mp7 item shop hack
    By jmanpwnu13 in forum WarRock - International Hacks
    Replies: 14
    Last Post: 08-15-2007, 05:08 AM
  2. Item Shop hack (Up for 30 mins)
    By scooby107 in forum WarRock - International Hacks
    Replies: 61
    Last Post: 05-21-2007, 01:57 PM
  3. STOP Pm'ing me about the Item Shop!!
    By scooby107 in forum WarRock - International Hacks
    Replies: 2
    Last Post: 05-11-2007, 10:17 AM
  4. [RELEASE] Item Shop V2 (30 Minutes)
    By scooby107 in forum WarRock - International Hacks
    Replies: 40
    Last Post: 05-09-2007, 09:28 AM
  5. Cheat Engine.. ITEM SHOP!
    By Shpalman in forum WarRock - International Hacks
    Replies: 10
    Last Post: 12-13-2006, 05:01 PM