Page 2 of 2 FirstFirst 12
Results 16 to 26 of 26
  1. #16
    AskAndHelp's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Location
    Warrock hack section
    Posts
    84
    Reputation
    10
    Thanks
    9
    My Mood
    Fine
    Shouldn''t it be: *(float*)(dwPlayerPtr + ADR_SPREAD) = 0;
    [YOUTUBE]cjMADPkivxM&NR[/YOUTUBE]
    IS THE GUN OKAY?!
    Did I help you? Press thanks!

    Repect list:
    - Wizdom-x (Helped Me Out Alot )
    - Kip3300 (First One To Help Me )
    - ikke0148 (Gonna Teach Me Stuf )
    - TheCamels8 (Best Addy Finder Ever )

  2. #17
    zooSz's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Posts
    14
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by AskAndHelp View Post
    Shouldn''t it be: *(float*)(dwPlayerPtr + ADR_SPREAD) = 0;
    Nope, just tried and it crashed WarRock when I pressed F3...

  3. #18
    larta's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    In your Back !!
    Posts
    323
    Reputation
    10
    Thanks
    69
    My Mood
    Cool
    Quote Originally Posted by zooSz View Post
    Yh.. But how? :P

    EDIT:

    Also, why doesn't this make NoSpread/NoRecoil stick?

    Code:
    //No Recoil/Spread
    void NoRecoil()
    {
    DWORD dwPlayerPtr = *(DWORD*)Playerpointer;
    if(dwPlayerPtr!=0){
    // on
    if(GetAsyncKeyState(VK_F3)){
    *(float*)ADR_Spread = 0;
    *(float*)(dwPlayerPtr+OFS_NORECOIL1) = 0;
    *(float*)(dwPlayerPtr+OFS_NORECOIL2) = 0;
    *(float*)(dwPlayerPtr+OFS_NORECOIL3) = 0;
    }
    // off
    if(GetAsyncKeyState(VK_F4)){
    *(float*)(dwPlayerPtr+OFS_NORECOIL1) = 1;
    *(float*)(dwPlayerPtr+OFS_NORECOIL2) = 1;
    *(float*)(dwPlayerPtr+OFS_NORECOIL3) = 1;
    *(float*) ADR_Spread = 1;}
    }
    }
    Its like it only stays on while I hold in F3 :S
    Norecoil should be stickied this way, but not NoSpread. As you said, it will only works when pressing F3.

    Make 2 functions for it ( so user can choose )

    Code:
    //You know the noRecoil code
    
    ....
    
    // NoSpread
    // Here you have to bool a the state
    Under you defines, out of a function, define a variable like this :
    bool NoSpreadState = false;
    
    
    // Then
    void NoSpread()
    {
    if(GetAsyncKeyState(VK_F3))
    NoSpreadState = true; // Activate
    if(GetAsyncKeyState(VK_F4))
    NoSpreadState = false; // Desactivate
    
    // Then you check its value
    if(NoSpreadState == true)
    *(float*)ADR_Spread = 0;
    
    else
    // Do Nothing because it will came to the normal state automatic.
    }
    Then you're done
    Last edited by larta; 03-31-2011 at 12:09 PM.
    [img]https://www.upza*****m/viewimg/02a3c-Image4.jpg[/img]
    Respect List :
    TheCamels8
    AeroMan
    ryski123
    Dave
    Alen
    Coeus
    sh_z_sektor
    [Cold]Taker
    And some more...

    My projects :
    Larta's Hack NoMenu ( Updated 25-2-11 ) : https://www.mpgh.net/forum/28-warrock...25-2-11-a.html

    Skin Manager v1.5 :
    https://www.mpgh.net/forum/159-warroc...er-v1-5-a.html

    Skin Manager v2.0 :
    https://www.mpgh.net/forum/159-warroc...anager-v*****ml

    Dont forget to hit that thanks button !
    |
    V

  4. #19
    zooSz's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Posts
    14
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by larta View Post
    Norecoil should be stickied this way, but not NoSpread. As you said, it will only works when pressing F3.

    Make 2 functions for it ( so user can choose )

    Code:
    //You know the noRecoil code
    
    ....
    
    // NoSpread
    // Here you have to bool a the state
    Under you defines, out of a function, define a variable like this :
    bool NoSpreadState = false;
    
    
    // Then
    void NoSpread()
    {
    if(GetAsyncKeyState(VK_F3))
    NoSpreadState = true; // Activate
    if(GetAsyncKeyState(VK_F4))
    NoSpreadState = false; // Desactivate
    
    // Then you check its value
    if(NoSpreadState == true)
    *(float*)ADR_Spread = 0;
    
    else
    // Do Nothing because it will came to the normal state automatic.
    }
    Then you're done
    Ok thanks

    But to show its working doesn't the cross hair like stay still in the middle and doesn't expand or whatever? Because when i toggled between F3 and F4 the cross hair looked the same :S

  5. #20
    larta's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    In your Back !!
    Posts
    323
    Reputation
    10
    Thanks
    69
    My Mood
    Cool
    Quote Originally Posted by zooSz View Post
    Ok thanks

    But to show its working doesn't the cross hair like stay still in the middle and doesn't expand or whatever? Because when i toggled between F3 and F4 the cross hair looked the same :S
    Yeh it's supposed to stay as you said.

    Did you puted the hack function into the main ? ^^

    Btw this is how I done and it works. Check again your code, if you defined the bool variable out of every function, as defines and others.
    Also check your addys ?


    EDIT : To be sure of addys, just don't make a hotkey.
    Just do :
    Code:
    void NoSpread()
    {
    *(float*)ADR_Spread = 0;
    }
    ( This is the way i debug my progs ^^ )
    Last edited by larta; 03-31-2011 at 12:29 PM.
    [img]https://www.upza*****m/viewimg/02a3c-Image4.jpg[/img]
    Respect List :
    TheCamels8
    AeroMan
    ryski123
    Dave
    Alen
    Coeus
    sh_z_sektor
    [Cold]Taker
    And some more...

    My projects :
    Larta's Hack NoMenu ( Updated 25-2-11 ) : https://www.mpgh.net/forum/28-warrock...25-2-11-a.html

    Skin Manager v1.5 :
    https://www.mpgh.net/forum/159-warroc...er-v1-5-a.html

    Skin Manager v2.0 :
    https://www.mpgh.net/forum/159-warroc...anager-v*****ml

    Dont forget to hit that thanks button !
    |
    V

  6. #21
    zooSz's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Posts
    14
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by larta View Post
    Yeh it's supposed to stay as you said.

    Did you puted the hack function into the main ? ^^

    Btw this is how I done and it works. Check again your code, if you defined the bool variable out of every function, as defines and others.
    Also check your addys ?


    EDIT : To be sure of addys, just don't make a hotkey.
    Just do :
    Code:
    void NoSpread()
    {
    *(float*)ADR_Spread = 0;
    }
    ( This is the way i debug my progs ^^ )
    Okay, I just tested that and my cross hair flashes like from normal cross hair to no spread cross hair.. Weird.. And my address is fine :P

  7. #22
    zerohead's Avatar
    Join Date
    Nov 2010
    Gender
    male
    Location
    Holland
    Posts
    451
    Reputation
    59
    Thanks
    204
    My Mood
    Relaxed
    Quote Originally Posted by zooSz View Post
    Okay, I just tested that and my cross hair flashes like from normal cross hair to no spread cross hair.. Weird.. And my address is fine :P
    Search for a sleep and remove it , or make a seperate thread for nospread with no sleep

  8. #23
    larta's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    In your Back !!
    Posts
    323
    Reputation
    10
    Thanks
    69
    My Mood
    Cool
    So only my code don't work ?

    Wtf.. This is the same as me ^^ ( i only put a hotkey to middle click for NoSpread )
    Weird. Here i dunno what's happen.


    EDIT : Or yeah, zerohead helps... xD
    Last edited by larta; 03-31-2011 at 12:57 PM.
    [img]https://www.upza*****m/viewimg/02a3c-Image4.jpg[/img]
    Respect List :
    TheCamels8
    AeroMan
    ryski123
    Dave
    Alen
    Coeus
    sh_z_sektor
    [Cold]Taker
    And some more...

    My projects :
    Larta's Hack NoMenu ( Updated 25-2-11 ) : https://www.mpgh.net/forum/28-warrock...25-2-11-a.html

    Skin Manager v1.5 :
    https://www.mpgh.net/forum/159-warroc...er-v1-5-a.html

    Skin Manager v2.0 :
    https://www.mpgh.net/forum/159-warroc...anager-v*****ml

    Dont forget to hit that thanks button !
    |
    V

  9. #24
    zerohead's Avatar
    Join Date
    Nov 2010
    Gender
    male
    Location
    Holland
    Posts
    451
    Reputation
    59
    Thanks
    204
    My Mood
    Relaxed
    Quote Originally Posted by larta View Post

    EDIT : Or yeah, zerohead helps... xD
    ^^ Of course

  10. #25
    sh_z_sektor's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    Olly
    Posts
    1,505
    Reputation
    63
    Thanks
    1,633
    My Mood
    Amused
    Hmm i think this dude just got the help he need :/

    i'll Give him Aimbot


    Code:
    Code:
    if(AimBot)
    {
    AimBot = Aim At Enemys that arn't dead;
    }

    Here you go a nice aimbot

  11. #26
    xflick13's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    Me.Visible = False
    Posts
    322
    Reputation
    58
    Thanks
    290
    Quote Originally Posted by sh_z_sektor View Post
    Hmm i think this dude just got the help he need :/

    i'll Give him Aimbot


    Code:
    Code:
    if(AimBot)
    {
    AimBot = Aim At Enemys that arn't dead;
    }

    Here you go a nice aimbot
    Ohh aimbot haha
    If you wanna know how not secure you are, just take a look around.
    Nothing's secure. Nothing's safe.
    I don't hate technology, I don't hate hackers, because that's just what comes with it, without those hackers we wouldn't solve the problems we need to solve, especially security.

    -----------------------------------------------------------------------------------------------------------------------------------

    Any fool can use a computer. Many do.

    -xFL!CK13

Page 2 of 2 FirstFirst 12