Search for Addy once using sig scan?

Posts 1–5 of 5 · Page 1 of 1
Search for Addy once using sig scan?
How can you search for an addy once using a sig scan?
Right now I put it in a loop and it searches it many times with lots of lag. How can i use a one time search method?
If you do it right, it doesn't lag at all.

Post the code you're using.
Code:
bool once = false;

if(once == false) {
//Get Addies
once = true;
}
just sayin,
[php]
bool FinAddresses = false;//Global
void SearchAddies()//void for addy search
{
//Search ur Addies
FinAddresses = true;
}

DWORD __stdcall CallAddresses(LPVOID)//to create a thread
{

while(!Hack.Readys.ReadyForSearch())
Sleep(1);

SearchAddies();

return 0;

}

//and Create a Thread
CreateThread(NULL, NULL, CallAddresses, NULL, NULL, NULL);

//Later than start ur hacks when FinAddresses is true
[/php]
Quote Originally Posted by kotentopf View Post
[php]
bool FinAddresses = false;//Global
void SearchAddies()//void for addy search
{

If (FinAddresses == false)
{

//Search ur Addies
FinAddresses = true;
}
}

DWORD __stdcall CallAddresses(LPVOID)//to create a thread
{

while(!Hack.Readys.ReadyForSearch())
Sleep(1);

SearchAddies();

return 0;

}

//and Create a Thread
CreateThread(NULL, NULL, CallAddresses, NULL, NULL, NULL);

//Later than start ur hacks when FinAddresses is true
[/php]
fixed something
Posts 1–5 of 5 · Page 1 of 1
This thread is closed for replies.

Tags for this Thread

None

Need help?