whats wrong staminahello, i get one question, whats wrong with the hotkey for stamina? Private Sub Timer5_Timer() If GetKeyPress(vbKeyControl) And GetKeyPress(vbKeyW) Then Call WriteALong("WarRock", &H7DB120, 1120403456) End If End Sub
w00t? stamina has to be frozen m8 so hotkey should be Code: Private Sub Timer5_Timer() If GetKeyPress(vbKeyControl) And GetKeyPress(vbKeyW) Then timer1.interval = 1 End If End Sub and timer1 should be Code: private sub timer1_timer() call writealong("WarRock", &H7DB120, 1120403456) end sub of course apply the timer code to any timer u want, but remember to change the timer1.interval 1 into the number of timer u used
Originally Posted by dezer w00t? stamina has to be frozen m8 so hotkey should be Code: Private Sub Timer5_Timer() If GetKeyPress(vbKeyControl) And GetKeyPress(vbKeyW) Then timer1.interval = 1 End If End Sub and timer1 should be Code: private sub timer1_timer() call writealong("WarRock", &H7DB120, 1120403456) end sub of course apply the timer code to any timer u want, but remember to change the timer1.interval 1 into the number of timer u used He basically gave you the code already... did you try it?