Results 1 to 13 of 13
  1. #1
    jokuvaan11's Avatar
    Join Date
    May 2007
    Posts
    192
    Reputation
    11
    Thanks
    0

    Question Again Problem With Vb6 Swim Code

    WHAT I HAVE TO DO?? I can't unfreeze this SWIM CODE
    IS THIS RIGHT:

    THIS IS FREEZE button:

    Private Sub Command4_Click()
    Timer2.Interval = 1
    End Sub

    And this unfreeze:

    Private Sub Command5_Click()
    Timer2.Interval = 0
    End Sub

    Private Sub Command6_Click()
    Dim Swim As Long
    Dim Swim1 As Long
    Call ReadALong("Warrock", &H896E28, Swim)
    Swim1 = Swim + &H54
    Call WriteALong("Warrock", Swim1, 4)
    End Sub


    AND TIMER 2 IS:

    Private Sub Timer2_Timer()
    Dim Swim As Long
    Dim Swim1 As Long
    Call ReadALong("Warrock", &H896E28, Swim)
    Swim1 = Swim + &H54
    Call WriteALong("Warrock", Swim1, 4)
    End Sub

  2. #2
    scooby107's Avatar
    Join Date
    Apr 2007
    Posts
    496
    Reputation
    11
    Thanks
    40
    You don't need to freeze the address, just set it to 4 to swim and 0 to walk again.

  3. #3
    nbr1dan's Avatar
    Join Date
    Mar 2007
    Location
    At my computer
    Posts
    168
    Reputation
    14
    Thanks
    15
    You need 2 command buttons -

    Private Sub Command4_Click()
    Timer2.Interval = 1
    End Sub

    Private Sub Command5_Click()
    Timer2.Interval = 0
    End Sub

    (Interval 1 activates the cheat and Interval 0 deactivates the cheat.)

    Next you will need a timer -

    Private Sub Timer2_Timer()
    Dim Swim As Long
    Dim Swim1 As Long
    Call ReadALong("Warrock", &H896E28, Swim)
    Swim1 = Swim + &H54
    Call WriteALong("Warrock", Swim1, 4)
    End Sub

    That is all you need. I see you had 3 command buttons you only need 2 buttons and 1 timer. Do as I showed you and it will work!


    Hope this helps!

  4. #4
    MS Word's Avatar
    Join Date
    Jun 2007
    Gender
    male
    Posts
    483
    Reputation
    11
    Thanks
    2
    man...

    you dont need a timer you just make 1 button and write in it:

    Code:
    Dim Swim As Long
    Dim Swim1 As Long
    Call ReadALong("Warrock", &H896E28, Swim)
    Swim1 = Swim + &H54
    Call WriteALong("Warrock", Swim1, 4)
    and to turn it off make another button and write

    Code:
    Dim Swim1 As Long
    Call ReadALong("Warrock", &H896E28, Swim)
    Swim1 = Swim + &H54
    Call WriteALong("Warrock", Swim1, 0)

  5. #5
    nbr1dan's Avatar
    Join Date
    Mar 2007
    Location
    At my computer
    Posts
    168
    Reputation
    14
    Thanks
    15
    Nevermind I see what u r saying now LOL

  6. #6
    MS Word's Avatar
    Join Date
    Jun 2007
    Gender
    male
    Posts
    483
    Reputation
    11
    Thanks
    2
    lol i know, that sounds noobish.

    but.. i cant get stamina to work anymore...

    i have got 1 timer with
    Code:
    Call WriteALong("WarRock", &H7D9120, 1120403456)
    and 2 buttons, to turn on and off

    the ''turn-on''
    Code:
    Timer2.Interval = 1
    and the ''turn-off''
    Code:
    Timer2.Interval = 1

  7. #7
    Threadstarter
    Advanced Member
    jokuvaan11's Avatar
    Join Date
    May 2007
    Posts
    192
    Reputation
    11
    Thanks
    0

    Smile Nice, Thanks

    YOU ALL ARE SO HELPFUL!?!?!?!?!!
    thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks thanks

  8. #8
    MS Word's Avatar
    Join Date
    Jun 2007
    Gender
    male
    Posts
    483
    Reputation
    11
    Thanks
    2
    jokuvan... one ''thanks'' is enough ... u could have been helping me instead of spamming but nvm..

  9. #9
    iHack's Avatar
    Join Date
    May 2007
    Gender
    male
    Posts
    502
    Reputation
    -11
    Thanks
    28
    Lol.




    Yea, one thanks is enough

  10. #10
    Threadstarter
    Advanced Member
    jokuvaan11's Avatar
    Join Date
    May 2007
    Posts
    192
    Reputation
    11
    Thanks
    0

    Unhappy Ok

    OK SORRY BUT THANKS

    Question:
    It doesn't unfreeze it even with this code:

    Private Sub Command4_Click()
    Timer2.Interval = 1
    End Sub

    Private Sub Command5_Click()
    Timer2.Interval = 0
    End Sub


    TIMER-

    Private Sub Timer2_Timer()
    Dim Swim As Long
    Dim Swim1 As Long
    Call ReadALong("Warrock", &H896E28, Swim)
    Swim1 = Swim + &H54
    Call WriteALong("Warrock", Swim1, 4)
    End Sub

  11. #11
    nbr1dan's Avatar
    Join Date
    Mar 2007
    Location
    At my computer
    Posts
    168
    Reputation
    14
    Thanks
    15
    Yea i just tried and your right it dosent unfreeze. Sorry man i thought it would work.

  12. #12
    mains3rv3r's Avatar
    Join Date
    Mar 2007
    Gender
    male
    Location
    NC
    Posts
    360
    Reputation
    27
    Thanks
    29
    My Mood
    Devilish
    Basically there's not reason to freeze it, you can just set it. And remember that swim only works in places WITHOUT actual water.

    Also here's my tut : https://www.mpgh.net/forum/warrock_in...6_trainer.html

  13. #13
    cjg333's Avatar
    Join Date
    Apr 2007
    Location
    indianapolis
    Posts
    300
    Reputation
    17
    Thanks
    54
    and you cant use call readalong has to be call writealong.then your intervals for your on and off buttons must be interval of 1 for On.interval of 0 for Off.

Similar Threads

  1. [Source Code] Problem with my source code ..
    By D e a t h h a u n t S in forum Combat Arms EU Hack Coding/Source Code
    Replies: 4
    Last Post: 12-21-2010, 10:08 PM
  2. Problem with my source code ..
    By D e a t h h a u n t S in forum Combat Arms EU Help
    Replies: 1
    Last Post: 12-21-2010, 08:19 AM
  3. Problem with VB6
    By terror1994 in forum WarRock - International Hacks
    Replies: 9
    Last Post: 02-17-2008, 10:06 AM
  4. Problems with promo retail code of warrock generator.
    By DonLukem in forum Suggestions, Requests & General Help
    Replies: 2
    Last Post: 08-08-2007, 08:21 PM
  5. Something is wrong! :S -- Problem with VB6 code
    By Darky in forum WarRock - International Hacks
    Replies: 13
    Last Post: 07-25-2007, 11:52 PM