PDA

View Full Version : Stamina hack does not work!!why?? new adresses?



HydroQc
02-15-2008, 12:28 PM
My stamina hack doesn't work!! why!!

Here is the timer code

Private Sub Timer1_Timer()
Call WriteALong("Warrock", &H1332A2, 1120403456)
End Sub

And here are thw 2 command buttons

Private Sub Command1_Click()
Timer1.Enabled = True
End Sub

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

Can you tell me what I did wrong!?!?!

wr194t
02-15-2008, 12:31 PM
Stamina now uses a Pointer + Offset:

Dim Stamina As Long
Dim Stamina1 As Long
Call ReadALong("Warrock", &1332A20, Stamina)
Stamina1 = Stamina + &H288
Call WriteALong("Warrock", Stamina1, 1120403456)

PS: This is a VB6 problem. Post in the VB6 section in future. Moved.

HydroQc
02-15-2008, 12:39 PM
This codes goes to the timer???

wr194t
02-15-2008, 12:46 PM
This codes goes to the timer???You need 3 timers. One for this code, and another two for your buttons.

AlexSleyore
02-15-2008, 04:15 PM
You need 3 timers. One for this code, and another two for your buttons.

why? couldnt you just you 1 timer and 2 buttons... you dont need 3 timers.. 3 objects but not 3 timers.

wr194t
02-15-2008, 04:31 PM
why? couldnt you just you 1 timer and 2 buttons... you dont need 3 timers.. 3 objects but not 3 timers.Yeah you could. Sorry I wasn't thinking straight..