View previous topic :: View next topic |
Author |
Message |
elfenliedtopfan5 How do I cheat?
Reputation: 0
Joined: 03 Sep 2011 Posts: 6
|
Posted: Sat Sep 03, 2011 7:54 am Post subject: trainer help plz need fast help |
|
|
hello all right im making a black ops hacker and done good so far only come across one problem and that is that i cant freeze the points in zombies with black ops the the points are in 2 string codes with i have put together in vb 2010
Code: | WriteInteger("BlackOps", &HBDCFA0, amount)
WriteInteger("BlackOps", &H3064A24, amount) |
the only problem i have when i push hack points it hacks it then rolls back to the points i had at the start so is there any way of freezing the points plz help really want to get this to work would be amazing thanks for taking your time to read
|
|
Back to top |
|
 |
FLiNG Newbie cheater
Reputation: 0
Joined: 09 Apr 2011 Posts: 19
|
Posted: Sat Sep 03, 2011 3:37 pm Post subject: |
|
|
I think what you need is a timer.
|
|
Back to top |
|
 |
atom0s Moderator
Reputation: 205
Joined: 25 Jan 2006 Posts: 8587 Location: 127.0.0.1
|
Posted: Sat Sep 03, 2011 4:28 pm Post subject: |
|
|
You'll either want to continuously write the value(s) using a timer or a thread. Or you'll want to write a cave and alter how the function works to prevent it from writing the original values.
You could also be editing visual values only if it instantly changes back. Make sure you have to proper addresses too.
_________________
- Retired. |
|
Back to top |
|
 |
elfenliedtopfan5 How do I cheat?
Reputation: 0
Joined: 03 Sep 2011 Posts: 6
|
Posted: Sun Sep 04, 2011 12:15 am Post subject: |
|
|
Wiccaan wrote: | You'll either want to continuously write the value(s) using a timer or a thread. Or you'll want to write a cave and alter how the function works to prevent it from writing the original values.
You could also be editing visual values only if it instantly changes back. Make sure you have to proper addresses too. |
can i ask how you would continually wright the values in a timer sorry new to this thanks for replying tho sorry to keep asking
|
|
Back to top |
|
 |
FLiNG Newbie cheater
Reputation: 0
Joined: 09 Apr 2011 Posts: 19
|
Posted: Sun Sep 04, 2011 1:04 am Post subject: |
|
|
You could find a timer control in the toolbox, after you add a timer to your form, you can set an interval of the timer (in millisecond). Then, write your code in timer tick event. Set the timer enable whenever you want to enable the cheat.
|
|
Back to top |
|
 |
elfenliedtopfan5 How do I cheat?
Reputation: 0
Joined: 03 Sep 2011 Posts: 6
|
Posted: Sun Sep 04, 2011 2:14 am Post subject: |
|
|
ETNWind wrote: | You could find a timer control in the toolbox, after you add a timer to your form, you can set an interval of the timer (in millisecond). Then, write your code in timer tick event. Set the timer enable whenever you want to enable the cheat. |
thank you only one problem now i havent done timer work before and each time i copy the code it gives me a error when WriteInteger it says it shouldn't be there so dont know wot to do now
|
|
Back to top |
|
 |
FLiNG Newbie cheater
Reputation: 0
Joined: 09 Apr 2011 Posts: 19
|
Posted: Sun Sep 04, 2011 3:03 am Post subject: |
|
|
Your code should look like this
Code: | Dim amount As Integer
'Here is timer tick event
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
amount = 999
WriteInteger("BlackOps", &HBDCFA0, amount)
WriteInteger("BlackOps", &H3064A24, amount)
End Sub |
|
|
Back to top |
|
 |
|