| View previous topic :: View next topic |
| Author |
Message |
torpin005 Master Cheater
Reputation: 0
Joined: 19 Nov 2007 Posts: 255
|
Posted: Mon Jan 21, 2008 9:22 pm Post subject: vb6 |
|
|
| Hi whats the code in vb6 too freeze an address?
|
|
| Back to top |
|
 |
Heartless I post too much
Reputation: 0
Joined: 03 Dec 2006 Posts: 2436
|
Posted: Mon Jan 21, 2008 9:36 pm Post subject: |
|
|
It depends, what is the address?
_________________
What dosen't kill you, usually does the second time. |
|
| Back to top |
|
 |
torpin005 Master Cheater
Reputation: 0
Joined: 19 Nov 2007 Posts: 255
|
Posted: Mon Jan 21, 2008 9:37 pm Post subject: |
|
|
| its a time address. Like how can i freeze the time in a game.
|
|
| Back to top |
|
 |
samuri25404 Grandmaster Cheater
Reputation: 7
Joined: 04 May 2007 Posts: 955 Location: Why do you care?
|
Posted: Mon Jan 21, 2008 9:38 pm Post subject: |
|
|
Create a thread that would run a constant loop which writes a specific value (what you want it to be freezed as) to a specific address (the address that you want to be freezed).
You should be able to Google for the main components of the algorithm, and piece it together. You can't expect people to do all your work for you, can you?
_________________
|
|
| Back to top |
|
 |
torpin005 Master Cheater
Reputation: 0
Joined: 19 Nov 2007 Posts: 255
|
Posted: Mon Jan 21, 2008 9:43 pm Post subject: |
|
|
| i tried google and i still dont get it, idk how to use strings
|
|
| Back to top |
|
 |
XxOsirisxX Grandmaster Cheater Supreme
Reputation: 0
Joined: 30 Oct 2006 Posts: 1597
|
Posted: Mon Jan 21, 2008 10:12 pm Post subject: |
|
|
freeze is a loop.
like..
| Quote: | Private Sub Command1_Click()
Timer1.Enabled = IIf(Timer1.Enabled = True, False, True)
End Sub
Private Sub Form_Load()
Timer1.Interval = 100
Timer1.Enabled = False
End Sub
Private Sub Timer1_Timer()
Text1 = "1"
End Sub |
This is an non-real example.
So, when you try to change the value of the textbox once the timer is active, the timer will change the value to his determinated value. Which can be changed at any variable in a real case.
_________________
|
|
| Back to top |
|
 |
Ep¡c+Age I post too much
Reputation: 1
Joined: 10 Feb 2007 Posts: 4363 Location: /loli/
|
Posted: Wed Jan 23, 2008 2:41 am Post subject: |
|
|
Create a Timer in the Timer put coding similar to below.. (also remember to set your timers interval in properties window to something like 10)
| Code: | Private Sub Timer1_Timer()
Call Form1.ShockwaveFlash1.SetVariable("_root.speed", 9999)
End Sub |
Then in project make a button with coding similar to this...
| Code: | Private Sub Command1_Click()
Timer1 = True
End Sub |
To shut it off make a button that has this coding or similar...
| Code: | Private Sub Command2_Click()
Timer1 = False
End Sub |
|
|
| Back to top |
|
 |
NINTENDO Grandmaster Cheater Supreme
Reputation: 0
Joined: 02 Nov 2007 Posts: 1371
|
|
| Back to top |
|
 |
Ep¡c+Age I post too much
Reputation: 1
Joined: 10 Feb 2007 Posts: 4363 Location: /loli/
|
Posted: Wed Jan 23, 2008 2:50 am Post subject: |
|
|
| Naablet wrote: | It's nice but i like this better Saves u space on the app 2
| Code: | Private Sub Command1_Click()
if timer1.enabled="false" then
command1.caption="Speed hack enabled"
Timer1 = True
else
command1.caption="Speed hack disabled"
Timer1 = false
End Sub |
|
Lol, True but I was simply showing him basic way of doing it, seeing as how he didn't even know how to make a timer freeze a variable... I wasn't expecting him to know about If statements.
|
|
| Back to top |
|
 |
NINTENDO Grandmaster Cheater Supreme
Reputation: 0
Joined: 02 Nov 2007 Posts: 1371
|
|
| Back to top |
|
 |
atom0s Moderator
Reputation: 205
Joined: 25 Jan 2006 Posts: 8587 Location: 127.0.0.1
|
|
| Back to top |
|
 |
NINTENDO Grandmaster Cheater Supreme
Reputation: 0
Joined: 02 Nov 2007 Posts: 1371
|
|
| Back to top |
|
 |
XxOsirisxX Grandmaster Cheater Supreme
Reputation: 0
Joined: 30 Oct 2006 Posts: 1597
|
Posted: Wed Jan 23, 2008 9:19 pm Post subject: |
|
|
| Naablet wrote: | | Wiccaan wrote: | Or you can save more space using iif
| Code: | Private Sub Command1_Click()
Timer1.Enabled = IIf(Timer1.Enabled, False, True)
End Sub |
|
You might wanna tell the user whats really going on.
I mean if u use the code in which you have supplied then the user wouldn't know that if he presses the button on more time the timer will get disabled right? |
It self explained, it have been one of the best codes i been use.
Timer1.Enabled = IIf(Timer1.Enabled, False, True)
Only thing i don't get.. is why if i write..
| Code: | | Timer1.Enabled = IIf(Timer1.Enabled = True, False, True) |
I need to use "=" sign, mean while, if i use
| Code: | | Timer1.Enabled = IIf(Timer1.Enabled, False, True) |
I can simply use a coma and i save a lil bit more writes.
_________________
|
|
| Back to top |
|
 |
torpin005 Master Cheater
Reputation: 0
Joined: 19 Nov 2007 Posts: 255
|
Posted: Wed Jan 23, 2008 10:28 pm Post subject: |
|
|
| i know if's. But only for like passwords and stuff
|
|
| Back to top |
|
 |
NINTENDO Grandmaster Cheater Supreme
Reputation: 0
Joined: 02 Nov 2007 Posts: 1371
|
Posted: Thu Jan 24, 2008 6:21 am Post subject: |
|
|
XxOsirisxX
Well as i said i dont like ur method as the user aren't informed about the button really does.
_________________
Intel over amd yes. |
|
| Back to top |
|
 |
|