| View previous topic :: View next topic |
| Author |
Message |
Pseudo Xero I post too much
Reputation: 0
Joined: 16 Feb 2007 Posts: 2607
|
Posted: Wed Nov 14, 2007 2:53 am Post subject: CheatEngine Address Freezing |
|
|
Yes, I know Dark Byte uses timers, but does he use dynamic timer creation?
_________________
| haxory' wrote: | can't VB do anything??
windows is programmed using VB right? correct me if im wrong.
so all things in windows you have like the start menu is a windows form too. |
|
|
| Back to top |
|
 |
ups2000ups I post too much
Reputation: 0
Joined: 31 Jul 2006 Posts: 2471
|
Posted: Wed Nov 14, 2007 3:32 am Post subject: Re: CheatEngine Address Freezing |
|
|
| Xenephobe wrote: | | Yes, I know Dark Byte uses timers, but does he use dynamic timer creation? |
probably yes
_________________
dont complain about my english...
1*1 = 2? |
|
| Back to top |
|
 |
Pseudo Xero I post too much
Reputation: 0
Joined: 16 Feb 2007 Posts: 2607
|
Posted: Wed Nov 14, 2007 3:43 am Post subject: Re: CheatEngine Address Freezing |
|
|
| ups2000ups wrote: | | Xenephobe wrote: | | Yes, I know Dark Byte uses timers, but does he use dynamic timer creation? |
probably yes |
I'm trying to look into making something similiar in VB.NET. Just can't find out how though >_<
_________________
| haxory' wrote: | can't VB do anything??
windows is programmed using VB right? correct me if im wrong.
so all things in windows you have like the start menu is a windows form too. |
|
|
| Back to top |
|
 |
Flyte Peanuts!!!!
Reputation: 6
Joined: 19 Apr 2006 Posts: 1887 Location: Canada
|
Posted: Wed Nov 14, 2007 9:21 am Post subject: Re: CheatEngine Address Freezing |
|
|
| Xenephobe wrote: | | ups2000ups wrote: | | Xenephobe wrote: | | Yes, I know Dark Byte uses timers, but does he use dynamic timer creation? |
probably yes |
I'm trying to look into making something similiar in VB.NET. Just can't find out how though >_< |
Just use CreateThread();
|
|
| Back to top |
|
 |
samuri25404 Grandmaster Cheater
Reputation: 7
Joined: 04 May 2007 Posts: 955 Location: Why do you care?
|
Posted: Wed Nov 14, 2007 2:22 pm Post subject: Re: CheatEngine Address Freezing |
|
|
| Flyte wrote: | | Xenephobe wrote: | | ups2000ups wrote: | | Xenephobe wrote: | | Yes, I know Dark Byte uses timers, but does he use dynamic timer creation? |
probably yes |
I'm trying to look into making something similiar in VB.NET. Just can't find out how though >_< |
Just use CreateThread(); |
A thread?
Why not just
| Code: |
'Somewhere in your code
Dim Count as integer;
Dim mytimer as System.Windows.Forms.Timer = new Timer()
mytimer.Name = "timer" + Count.ToString()
mytimer.Interval = 2000 'Milliseconds
mytimer.Tick += new EventHandler(mysub)
'Somewhere else
private sub mysub as void 'I'm not quite sure if this works, because I do C#, but whatever
MessageBox.Show('Hello!');
endsub
|
As I said in the code, I do C#, but I'm guessing since it's .Net, that it's similar.
|
|
| Back to top |
|
 |
rapion124 Grandmaster Cheater Supreme
Reputation: 0
Joined: 25 Mar 2007 Posts: 1095
|
Posted: Wed Nov 14, 2007 8:11 pm Post subject: |
|
|
| Because a separate thread is better so it doesn't halt your main program execution. In the case with the timer, the program(main thread) has to process the message from the timer.
|
|
| Back to top |
|
 |
|