Thread: Help plz

Results 1 to 13 of 13
  1. #1
    albertog2's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Your moms house
    Posts
    88
    Reputation
    10
    Thanks
    7
    My Mood
    Devilish

    Help plz

    ok iv been using solify's base and its extremely laggy i was wondering how coul i add a a sleep to it so its not laggy
    YO I NEED A PIC ANY ONE THAT CAN MAKE ME ONE WILL BE APPRECIATED
    G2 4 LIFE

    [x] get kicked for hacking
    [x] not get kicked for fly hack
    [x] get a sig
    [x] 10 posts
    [x] 30 posts
    [x] 50 posts

    [ ] 100 posts
    [ ] make a cool sig
    [ ] hatch habamon
    [ ] fill this list up

    RESPECTED!!
    Siahtekrr
    Stan-Marsh
    More ppl coming soon!

  2. #2
    Fabolous's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    192.168.1.01
    Posts
    2,704
    Reputation
    261
    Thanks
    682
    My Mood
    Paranoid
    Rofl.

    Add this after the hack.

    [Code]Sleep(interval);[Code]

    Change (interval) to the # you need.

    I dont use sleep for my hacks but i think 100 is recommended.

  3. #3
    albertog2's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Your moms house
    Posts
    88
    Reputation
    10
    Thanks
    7
    My Mood
    Devilish
    i know that but it keeps giving me errors..... do i need to put the brackets before and after or do i put the sleep and then put the close bracket??
    YO I NEED A PIC ANY ONE THAT CAN MAKE ME ONE WILL BE APPRECIATED
    G2 4 LIFE

    [x] get kicked for hacking
    [x] not get kicked for fly hack
    [x] get a sig
    [x] 10 posts
    [x] 30 posts
    [x] 50 posts

    [ ] 100 posts
    [ ] make a cool sig
    [ ] hatch habamon
    [ ] fill this list up

    RESPECTED!!
    Siahtekrr
    Stan-Marsh
    More ppl coming soon!

  4. #4
    NOOBJr's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    in NOOB
    Posts
    1,423
    Reputation
    112
    Thanks
    693
    YOu can just put Sleep(100); any were!

  5. #5
    albertog2's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Your moms house
    Posts
    88
    Reputation
    10
    Thanks
    7
    My Mood
    Devilish
    alright then.. its my prob then cuz like i keep geting errrors.. oh well i thought it was that i guess not ty anyways
    YO I NEED A PIC ANY ONE THAT CAN MAKE ME ONE WILL BE APPRECIATED
    G2 4 LIFE

    [x] get kicked for hacking
    [x] not get kicked for fly hack
    [x] get a sig
    [x] 10 posts
    [x] 30 posts
    [x] 50 posts

    [ ] 100 posts
    [ ] make a cool sig
    [ ] hatch habamon
    [ ] fill this list up

    RESPECTED!!
    Siahtekrr
    Stan-Marsh
    More ppl coming soon!

  6. #6
    _Fk127_'s Avatar
    Join Date
    Nov 2010
    Gender
    male
    Posts
    720
    Reputation
    16
    Thanks
    208
    My Mood
    Bitchy
    i condensed the navigation to this, and it no longer lags-
    Code:
    int	MenuSelection=0;
    bool Menu = false;
    
    
    
    /////////HOW MANY HACKS IN YOUR MENU GOES HERE//////////
    int itemsinmenu = 2;
    
    
    
    
    
    
    //Hack Variables
    bool f[14];
    
    
    
    
    
    
    if(GetAsyncKeyState(VK_INSERT)&1){
    Menu =! Menu;
    }
    
    
        
    
    
    
    if(Menu && ((GetAsyncKeyState(VK_UP)&1))){
    if(MenuSelection > 0)
    MenuSelection--;
    }
    if(Menu && ((GetAsyncKeyState(VK_DOWN)&1))){
    if(MenuSelection < itemsinmenu-1)
    MenuSelection++;
    }
    if(Menu && ((GetAsyncKeyState(VK_RIGHT)&1))){
    if(Menu){
    f[MenuSelection] = !f[MenuSelection];
    }
    }
    if(Menu && ((GetAsyncKeyState(VK_LEFT)&1))){
    if(Menu){
    f[MenuSelection] = !f[MenuSelection];
    }
    }
    And then i wrote a little function to add items to the menu-
    Code:
    void addopt(int y,bool *var, char *txt,LPDIRECT3DDEVICE9 pDevice)
    {
    
    	if(*var)
    	{
    		DrawText(31,y,Green,txt,pDevice);
    		DrawText(260,y,Green,"On",pDevice);
    	}
    	else
    	{
    		DrawText(31,y,Red,txt ,pDevice);
    		DrawText(258,y,Green,"Off",pDevice);
    	}
    You'll have to figure out the rest. If you cant, then you shouldn't be making a hack.



    Put this image in your signature if you support HTML5 development!

  7. #7
    NOOBJr's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    in NOOB
    Posts
    1,423
    Reputation
    112
    Thanks
    693
    Quote Originally Posted by _Fk127_ View Post
    i condensed the navigation to this, and it no longer lags-
    Code:
    int	MenuSelection=0;
    bool Menu = false;
    
    
    
    /////////HOW MANY HACKS IN YOUR MENU GOES HERE//////////
    int itemsinmenu = 2;
    
    
    
    
    
    
    //Hack Variables
    bool f[14];
    
    
    
    
    
    
    if(GetAsyncKeyState(VK_INSERT)&1){
    Menu =! Menu;
    }
    
    
        
    
    
    
    if(Menu && ((GetAsyncKeyState(VK_UP)&1))){
    if(MenuSelection > 0)
    MenuSelection--;
    }
    if(Menu && ((GetAsyncKeyState(VK_DOWN)&1))){
    if(MenuSelection < itemsinmenu-1)
    MenuSelection++;
    }
    if(Menu && ((GetAsyncKeyState(VK_RIGHT)&1))){
    if(Menu){
    f[MenuSelection] = !f[MenuSelection];
    }
    }
    if(Menu && ((GetAsyncKeyState(VK_LEFT)&1))){
    if(Menu){
    f[MenuSelection] = !f[MenuSelection];
    }
    }
    And then i wrote a little function to add items to the menu-
    Code:
    void addopt(int y,bool *var, char *txt,LPDIRECT3DDEVICE9 pDevice)
    {
    
    	if(*var)
    	{
    		DrawText(31,y,Green,txt,pDevice);
    		DrawText(260,y,Green,"On",pDevice);
    	}
    	else
    	{
    		DrawText(31,y,Red,txt ,pDevice);
    		DrawText(258,y,Green,"Off",pDevice);
    	}
    You'll have to figure out the rest. If you cant, then you shouldn't be making a hack.


    He can't even add a sleep statement. How the fAk is he suppose to know what to do with that! LOL

  8. #8
    albertog2's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Your moms house
    Posts
    88
    Reputation
    10
    Thanks
    7
    My Mood
    Devilish
    i know how to add sleep.... i have another problem... i thought it had to do with that but no...
    YO I NEED A PIC ANY ONE THAT CAN MAKE ME ONE WILL BE APPRECIATED
    G2 4 LIFE

    [x] get kicked for hacking
    [x] not get kicked for fly hack
    [x] get a sig
    [x] 10 posts
    [x] 30 posts
    [x] 50 posts

    [ ] 100 posts
    [ ] make a cool sig
    [ ] hatch habamon
    [ ] fill this list up

    RESPECTED!!
    Siahtekrr
    Stan-Marsh
    More ppl coming soon!

  9. #9
    _Fk127_'s Avatar
    Join Date
    Nov 2010
    Gender
    male
    Posts
    720
    Reputation
    16
    Thanks
    208
    My Mood
    Bitchy
    Quote Originally Posted by Zane Slayman View Post




    He can't even add a sleep statement. How the fAk is he suppose to know what to do with that! LOL
    It's pretty much a copy paste job I think. At least to me it would be.



    Put this image in your signature if you support HTML5 development!

  10. #10
    -xGhost-'s Avatar
    Join Date
    Oct 2010
    Gender
    male
    Location
    C:\Sytem32
    Posts
    344
    Reputation
    9
    Thanks
    57
    My Mood
    Relaxed
    Quote Originally Posted by Zane Slayman View Post
    YOu can just put Sleep(100); any were!
    Some people manage to put it in the one place where it gives errors...
    [IMG]https://i714.photobucke*****m/albums/ww144/sandro911/ProXtremeSignature.png[/IMG]

    [IMG]https://i714.photobucke*****m/albums/ww144/sandro911/Signature.png[/IMG]

  11. #11
    AVGN's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Kekistan
    Posts
    15,566
    Reputation
    1817
    Thanks
    6,678
    YOU GUYS ALWAYS FLAME PEOPLE HERE

    YOU SHOULD BE FLAMING THEM FOR POSTING IN THE WRONG SECTION

    /MOVED

    I HAVE TO MOVE LIKE 3 THREADS A DAY HERE.. THIS IS BULLSHIT.

  12. #12
    albertog2's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Your moms house
    Posts
    88
    Reputation
    10
    Thanks
    7
    My Mood
    Devilish

    my bad

    Quote Originally Posted by AVGN View Post
    YOU GUYS ALWAYS FLAME PEOPLE HERE

    YOU SHOULD BE FLAMING THEM FOR POSTING IN THE WRONG SECTION

    /MOVED

    I HAVE TO MOVE LIKE 3 THREADS A DAY HERE.. THIS IS BULLSHIT.
    im sorry... ill post any questions from now on here...
    YO I NEED A PIC ANY ONE THAT CAN MAKE ME ONE WILL BE APPRECIATED
    G2 4 LIFE

    [x] get kicked for hacking
    [x] not get kicked for fly hack
    [x] get a sig
    [x] 10 posts
    [x] 30 posts
    [x] 50 posts

    [ ] 100 posts
    [ ] make a cool sig
    [ ] hatch habamon
    [ ] fill this list up

    RESPECTED!!
    Siahtekrr
    Stan-Marsh
    More ppl coming soon!

  13. #13
    NOOB's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    3,843
    Reputation
    425
    Thanks
    8,616
    Quote Originally Posted by AVGN View Post
    YOU GUYS ALWAYS FLAME PEOPLE HERE

    YOU SHOULD BE FLAMING THEM FOR POSTING IN THE WRONG SECTION

    /MOVED

    I HAVE TO MOVE LIKE 3 THREADS A DAY HERE.. THIS IS BULLSHIT.