Results 1 to 5 of 5
  1. #1
    SF-Abel's Avatar
    Join Date
    Dec 2010
    Gender
    male
    Posts
    41
    Reputation
    10
    Thanks
    6

    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?

  2. #2
    Synns's Avatar
    Join Date
    May 2007
    Gender
    male
    Posts
    5,174
    Reputation
    170
    Thanks
    2,557
    My Mood
    Bitchy
    If you do it right, it doesn't lag at all.

    Post the code you're using.

  3. #3
    ac1d_buRn's Avatar
    Join Date
    Aug 2009
    Gender
    female
    Location
    CA Source Section
    Posts
    3,404
    Reputation
    157
    Thanks
    4,003
    My Mood
    Flirty
    Code:
    bool once = false;
    
    if(once == false) {
    //Get Addies
    once = true;
    }
    just sayin,

  4. #4
    kotentopf's Avatar
    Join Date
    Nov 2009
    Gender
    male
    Posts
    602
    Reputation
    26
    Thanks
    251
    [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]
    The Internet SHOULD Be Illegal

    When you say
    "Java is a great programming language because it works on all platforms"
    it is just like
    "anal sex is great because it works on all genders"

    Are YOU a Troll?

  5. #5
    SF-Abel's Avatar
    Join Date
    Dec 2010
    Gender
    male
    Posts
    41
    Reputation
    10
    Thanks
    6
    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