Thread: No spread

Results 1 to 10 of 10
  1. #1
    _-Blazin-_'s Avatar
    Join Date
    Jan 2009
    Gender
    male
    Location
    Australia
    Posts
    428
    Reputation
    10
    Thanks
    28
    My Mood
    Hot

    No spread

    Ok Im using Hotkeys, and atm I have No Spread auto-on. How can i do a hotkey for it? I know the (On) part of the code. But what is it's (off)?

    Like how No recoil has an off and and on part.
    Thanks

  2. #2
    whit's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    7,159
    Reputation
    490
    Thanks
    2,253
    search button

  3. The Following User Says Thank You to whit For This Useful Post:

    remusrowle34 (07-23-2010)

  4. #3
    Jason's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    /dev/null
    Posts
    5,704
    Reputation
    918
    Thanks
    7,676
    My Mood
    Mellow
    Quote Originally Posted by _-Blazin-_ View Post
    Ok Im using Hotkeys, and atm I have No Spread auto-on. How can i do a hotkey for it? I know the (On) part of the code. But what is it's (off)?

    Like how No recoil has an off and and on part.
    Thanks
    Are you using the PTC method of no spread? If so this is how I do hotkeys for on and off (it's probably not the best way, but it works for me and that's all I need).

    First define this global integer

    Code:
    int IsSpreadOn = 0;
    Next I made this little boolean function to save time on repetitive GetAsyncKeyState calls. (add this above void main()..)

    Code:
    bool CheckKey(int OMGKEY)
    {
    	if (GetAsyncKeyState(OMGKEY)<0){
    	return true;
    	}
    	else{
    	return false;}
    }
    Now in void main()

    Code:
    void main()
    {
    while(true)
    {
    	if (CheckKey(VK_DELETE))
    		if(IsSpreadOn==0){
    			PushToConsole("PerturbRotationEffect  0.000000");
                            PushToConsole("PerturbIncreaseSpeed 0.000000");
                            PushToConsol("PerturbWalkPercent 0.000000");
                            PushToConsole("PerturbFiringIncreaseSpeed 0.000000");
                            PushToConsole("PerturbRecoil 0.000000"); 
                            PushToConsole("FireMovePerturb 0.000000"); 
                            PushToConsole("ZoomedFireMoveDuckPerturb 0.000000");
                            PushToConsole("ZoomedFireMovePerturb 0.000000");
                            PushToConsole("ZoomedFireDuckPerturb 0.000000");
                            IsSpreadOn = 1;
    			Sleep(100);
    }
    		else{
    			PushToConsole("PerturbRotationEffect  3.000000");
                            PushToConsole("PerturbIncreaseSpeed 3.000000");
                            PushToConsol("PerturbWalkPercent 9.000000");
                            PushToConsole("PerturbFiringIncreaseSpeed 0.500000");
                            PushToConsole("PerturbRecoil 9.000000"); 
                            PushToConsole("FireMovePerturb 9.000000"); 
                            PushToConsole("ZoomedFireMoveDuckPerturb 9.000000");
                            PushToConsole("ZoomedFireMovePerturb 9.000000");
                            PushToConsole("ZoomedFireDuckPerturb 9.000000");
                            IsSpreadOn = 0;
    			Sleep(100);
    }
    	
    }
    }
    There you go.

    Quote Originally Posted by Jeremy S. Anderson
    There are only two things to come out of Berkley, Unix and LSD,
    and I don’t think this is a coincidence
    You can win the rat race,
    But you're still nothing but a fucking RAT.


    ++Latest Projects++
    [Open Source] Injection Library
    Simple PE Cipher
    FilthyHooker - Simple Hooking Class
    CLR Injector - Inject .NET dlls with ease
    Simple Injection - An in-depth look
    MPGH's .NET SDK
    eJect - Simple Injector
    Basic PE Explorer (BETA)

  5. The Following 2 Users Say Thank You to Jason For This Useful Post:

    whit (07-23-2010),_-Blazin-_ (07-23-2010)

  6. #4
    Polo™'s Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Im awsome and i fuck dolphins. Shwag Shwag Shwagg
    Posts
    10,118
    Reputation
    612
    Thanks
    861
    My Mood
    Pensive
    Can we please stop spoon feeding the source leechers?

  7. #5
    _-Blazin-_'s Avatar
    Join Date
    Jan 2009
    Gender
    male
    Location
    Australia
    Posts
    428
    Reputation
    10
    Thanks
    28
    My Mood
    Hot
    Quote Originally Posted by Waka_Flocka_Flame View Post
    Can we please stop spoon feeding the source leechers?
    Im not trying to leech. Im trying to learn.. They're helping meh Plus Im not stupid enough to leech someone's source and then repost it in the Combat Arms Section. Im just editing them for personal use.. And eventually I'll make my own base.

    Thanks for the help guys. If a mod could close this..

  8. #6
    Jason's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    /dev/null
    Posts
    5,704
    Reputation
    918
    Thanks
    7,676
    My Mood
    Mellow
    Quote Originally Posted by _-Blazin-_ View Post
    Im not trying to leech. Im trying to learn.. They're helping meh Plus Im not stupid enough to leech someone's source and then repost it in the Combat Arms Section. Im just editing them for personal use.. And eventually I'll make my own base.

    Thanks for the help guys. If a mod could close this..
    Hit the thanks button then

    Quote Originally Posted by Jeremy S. Anderson
    There are only two things to come out of Berkley, Unix and LSD,
    and I don’t think this is a coincidence
    You can win the rat race,
    But you're still nothing but a fucking RAT.


    ++Latest Projects++
    [Open Source] Injection Library
    Simple PE Cipher
    FilthyHooker - Simple Hooking Class
    CLR Injector - Inject .NET dlls with ease
    Simple Injection - An in-depth look
    MPGH's .NET SDK
    eJect - Simple Injector
    Basic PE Explorer (BETA)

  9. The Following User Says Thank You to Jason For This Useful Post:

    _-Blazin-_ (07-23-2010)

  10. #7
    GodHack2's Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    644
    Reputation
    38
    Thanks
    762
    My Mood
    Amused
    never knew that the coding section turned into a help section XD

  11. #8
    Jason's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    /dev/null
    Posts
    5,704
    Reputation
    918
    Thanks
    7,676
    My Mood
    Mellow
    Quote Originally Posted by GodHack2 View Post
    never knew that the coding section turned into a help section XD
    Unfortunately it's been like this for a while. Noobs can't find the C++ section =.=

    Quote Originally Posted by Jeremy S. Anderson
    There are only two things to come out of Berkley, Unix and LSD,
    and I don’t think this is a coincidence
    You can win the rat race,
    But you're still nothing but a fucking RAT.


    ++Latest Projects++
    [Open Source] Injection Library
    Simple PE Cipher
    FilthyHooker - Simple Hooking Class
    CLR Injector - Inject .NET dlls with ease
    Simple Injection - An in-depth look
    MPGH's .NET SDK
    eJect - Simple Injector
    Basic PE Explorer (BETA)

  12. The Following User Says Thank You to Jason For This Useful Post:

    _-Blazin-_ (07-23-2010)

  13. #9
    _-Blazin-_'s Avatar
    Join Date
    Jan 2009
    Gender
    male
    Location
    Australia
    Posts
    428
    Reputation
    10
    Thanks
    28
    My Mood
    Hot
    Quote Originally Posted by J-Deezy View Post


    Hit the thanks button then
    Sure..
    Sorry about that.

  14. #10
    Zoom's Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    Your going on my 24/7 DDoS hit list.
    Posts
    8,552
    Reputation
    127
    Thanks
    5,970
    My Mood
    Happy
    /Solved
    /Closed
    -Rest in peace leechers-

    Your PM box is 100% full.

Similar Threads

  1. [Release] No spread
    By Jeckels in forum WarRock - International Hacks
    Replies: 23
    Last Post: 05-25-2007, 10:58 AM
  2. [Request]No Spread / No Recoil / Aim Mode
    By tony94 in forum WarRock - International Hacks
    Replies: 15
    Last Post: 05-09-2007, 01:01 PM
  3. Sort of Got No spread..
    By Jeckels in forum WarRock - International Hacks
    Replies: 5
    Last Post: 05-01-2007, 02:43 PM
  4. How to find Recoil and Spread addresses?
    By V1olATor in forum WarRock - International Hacks
    Replies: 5
    Last Post: 04-20-2007, 09:50 AM
  5. No recoil/no spread addys?
    By IBEZ in forum WarRock - International Hacks
    Replies: 8
    Last Post: 01-14-2007, 08:39 PM