Soldier 76 - Burst mode menu

User Tag List

Page 1 of 3 123 LastLast
Results 1 to 15 of 34
  1. #1
    Seminko's Avatar Contributor
    Reputation
    226
    Join Date
    Aug 2010
    Posts
    507
    Thanks G/R
    35/89
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Soldier 76 - Burst mode [STILL WORKING]

    NEW version (AFTER PATCH)

    As many of you know, this has been patched but I still think there is a use for this script. We can still use burst to be absolutely precise.

    The only thing that needed to be changed is the sleep timer between the bursts. The script is now 9,6% slower than the original burst script which doesn't, by any means, make the script useless. We rather have to be clever and use it in certain situations, mainly longer distances - sniping Pharah etc.

    What changed? Since the burst is now even slower, I set it to the Middle mouse button, instead of the left one. If you still want to use the left mouse button change 04 to 01 in this bit of code:
    While _IsPressed("04", $hDLL)

    Download here:


    Here is the new script in action:


    Code:
    #include <Misc.au3>
    
    HotKeySet("{F8}", "Shut")
    HotKeySet("{F5}", "Pause") ; CHANGE HOTKEY FOR PAUSE (more hotkeys here https://www.autoitscript.com/autoit3/docs/functions/Send.htm)
    
    Global $Paused
    Local $hDLL = DllOpen("user32.dll")
    
    While 1
        If _IsPressed("04", $hDLL) Then
            While _IsPressed("04", $hDLL)
    			MouseDown("left")
    			Sleep(300)
    			MouseUp("left")
    			Sleep(220)
            WEnd
    		MouseUp("left")
    	EndIf
        Sleep(10)
    WEnd
    
    Func Shut()
    	DllClose($hDLL)
    	Exit
    EndFunc
    
    Func Pause() ; PAUSE RELATED FUNCTION
    	$Paused = NOT $Paused
    	While $Paused
    		Sleep(100)
    	WEnd
    EndFunc
    My suggestions:
    - rename the script, sth like youtube checker, google filter or sth similar
    - put the script to the StartUp folder, not sure if really needed or checked for, but if it is run on startup, it will look less suspicious
    - if for some reason it shoots less or more bullets, just increase / decrease the sleep timer (the 300 ms one) [if you're using the exe file, just let me know and I can update it for you]
    - be clever when using it, obviously some ppl might tell that you shoot in pefect bursts
    - and even more obviously, use at your own risk
    ______________________________________________________

    ORIGINAL VERSION (FIXED)

    So, here's a little script to shoot in bursts of 3 bullets while holding the left mouse button to prevent the spread.
    See the video on YouTube.


    VirusTotal is here, however it is flagged for two bugs, which are obviously false positives - just google "autoit are my files really infected" (outdated - was done on the original files)

    Here is the raw code updated with the Pause feature (F8 will kill the script / F5 will pause it)
    Code:
    #include <Misc.au3>
    
    HotKeySet("{F8}", "Shut")
    HotKeySet("{F5}", "Pause") ; CHANGE HOTKEY FOR PAUSE (more hotkeys here https://www.autoitscript.com/autoit3/docs/functions/Send.htm)
    
    Global $Paused
    Local $hDLL = DllOpen("user32.dll")
    
    While 1
        If _IsPressed("01", $hDLL) Then
            Sleep(250)
            While _IsPressed("01", $hDLL)
    	    MouseUp("left")
    	    Sleep(25)
    	    MouseDown("left")
    	    Sleep(300)
            WEnd
        EndIf
        Sleep(150)
    WEnd
    
    Func Shut()
        DllClose($hDLL)
        Exit
    EndFunc
    
    Func Pause() ; PAUSE RELATED FUNCTION
        $Paused = NOT $Paused
        While $Paused
            Sleep(100)
        WEnd
    EndFunc
    Last edited by Seminko; 07-31-2016 at 05:58 AM.

    Soldier 76 - Burst mode
  2. Thanks lgndz, RXRickify, mrdudu (3 members gave Thanks to Seminko for this useful post)
  3. #2
    asbuger's Avatar Member
    Reputation
    1
    Join Date
    Jun 2016
    Posts
    1
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    wow
    working

  4. #3
    lab185's Avatar Member
    Reputation
    1
    Join Date
    Sep 2012
    Posts
    22
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    nice =) working

  5. #4
    Seminko's Avatar Contributor
    Reputation
    226
    Join Date
    Aug 2010
    Posts
    507
    Thanks G/R
    35/89
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey dude, clean up you're inbox.
    "Warcraft Boost has exceeded their stored private messages quota and cannot accept further messages until they clear some space."
    Don't just say thanks, click thanks!

  6. Thanks UnkNowN752 (1 members gave Thanks to Seminko for this useful post)
  7. #5
    Zestro's Avatar Active Member
    Reputation
    57
    Join Date
    May 2012
    Posts
    166
    Thanks G/R
    6/12
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    any way you can put a pause button into this? or give me the line to manually add it in? I want to pause for ult.

  8. #6
    smoosh's Avatar Member
    Reputation
    1
    Join Date
    Mar 2008
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Script is working, however like the last guy has requested could u update the EXE to feature a pause button or a uninjective function so that when u play something aside from soldier the script stops working, then if i was to switch back to soldier i could just hit a keystroke to reinject the script? Would make it alot more beneficial especially considering the ultimate from soldier, burst firing through hes ultimate is horrible, pm me

  9. #7
    Seminko's Avatar Contributor
    Reputation
    226
    Join Date
    Aug 2010
    Posts
    507
    Thanks G/R
    35/89
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Zestro View Post
    any way you can put a pause button into this? or give me the line to manually add it in? I want to pause for ult.
    Originally Posted by smoosh View Post
    Script is working, however like the last guy has requested could u update the EXE to feature a pause button or a uninjective function so that when u play something aside from soldier the script stops working, then if i was to switch back to soldier i could just hit a keystroke to reinject the script? Would make it alot more beneficial especially considering the ultimate from soldier, burst firing through hes ultimate is horrible, pm me
    Sure guys, what script do you use? EXE or AU3? I can write it and you can insert your own hotkey or if you're using the EXE let me know what button (mouse or keyboard) you want to use for the pause.
    Don't just say thanks, click thanks!

  10. Thanks lgndz (1 members gave Thanks to Seminko for this useful post)
  11. #8
    lgndz's Avatar Sergeant
    Reputation
    8
    Join Date
    Jul 2012
    Posts
    39
    Thanks G/R
    10/5
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Seminko View Post
    Sure guys, what script do you use? EXE or AU3? I can write it and you can insert your own hotkey or if you're using the EXE let me know what button (mouse or keyboard) you want to use for the pause.
    Id prefer the AU3 have all improvements and optimizations. It is really rather easy to change just the key used and such - This was will be less work for you too and such

    Otherwise, this worked well I thought! The timing was a little off, like you said (didnt do perfet 4 shots bursts) but was interesting

    edit: Guys pls rep post for the work he did
    Last edited by lgndz; 07-07-2016 at 07:00 AM.

  12. #9
    Seminko's Avatar Contributor
    Reputation
    226
    Join Date
    Aug 2010
    Posts
    507
    Thanks G/R
    35/89
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by lgndz View Post
    edit: Guys pls rep post for the work he did
    There have been several hundred downloads yet you're the only one to rep! Thumbs up bro!

    The main post was updated with the Pause script.
    Last edited by Seminko; 07-07-2016 at 11:28 AM.
    Don't just say thanks, click thanks!

  13. Thanks lgndz, UnkNowN752 (2 members gave Thanks to Seminko for this useful post)
  14. #10
    lgndz's Avatar Sergeant
    Reputation
    8
    Join Date
    Jul 2012
    Posts
    39
    Thanks G/R
    10/5
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Seminko View Post
    There have been several hundred downloads yet you're the only one to rep! Thumbs up bro!

    The main post was updated with the Pause script.
    Thanks for the work, I appreciate it.

    Is the uploaded .exe the recompiled script (with new pause feature)

  15. #11
    Seminko's Avatar Contributor
    Reputation
    226
    Join Date
    Aug 2010
    Posts
    507
    Thanks G/R
    35/89
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by lgndz View Post
    Is the uploaded .exe the recompiled script (with new pause feature)
    Yes, try it out and let me know.
    Don't just say thanks, click thanks!

  16. Thanks UnkNowN752 (1 members gave Thanks to Seminko for this useful post)
  17. #12
    asdfsad's Avatar Member
    Reputation
    2
    Join Date
    Nov 2014
    Posts
    6
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    is this still safe to use? chancitys tbot got detected so I wanted to ask about this

  18. #13
    lgndz's Avatar Sergeant
    Reputation
    8
    Join Date
    Jul 2012
    Posts
    39
    Thanks G/R
    10/5
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Default fires 2 round bursts.

    Dont know how it is for everyone but I run with soli 90-100 fps and sub 60ping

  19. #14
    Seminko's Avatar Contributor
    Reputation
    226
    Join Date
    Aug 2010
    Posts
    507
    Thanks G/R
    35/89
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by asdfsad View Post
    is this still safe to use? chancitys tbot got detected so I wanted to ask about this
    Still undetected as far as I know. TBH I would be surprised if it was detected ever.


    Originally Posted by lgndz View Post
    Default fires 2 round bursts. Dont know how it is for everyone but I run with soli 90-100 fps and sub 60ping
    For me it fires 3-4 rounds. I think you point in the right direction - FPS/ping. What version do you use, EXE or AU3? Let's update the delays...
    Don't just say thanks, click thanks!

  20. #15
    alexlander's Avatar Member
    Reputation
    1
    Join Date
    Dec 2012
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Same here, only 2 bullets at a time.. any suggestion how I can fix it?

Page 1 of 3 123 LastLast

Similar Threads

  1. [How-To] soldier burst
    By darkimp1 in forum Overwatch Exploits|Hacks
    Replies: 10
    Last Post: 06-27-2016, 06:07 PM
  2. ¿¿ WoW In Windowed Mode ¿¿
    By Squirllz in forum Community Chat
    Replies: 2
    Last Post: 10-19-2006, 04:20 PM
  3. Ez-mode Horde Gold (ca. lvl35)
    By Zakuno in forum World of Warcraft Guides
    Replies: 8
    Last Post: 10-16-2006, 02:55 AM
  4. window mode
    By Erunnon in forum Community Chat
    Replies: 4
    Last Post: 08-08-2006, 12:21 PM
  5. How to turn off window mode
    By insaneomato in forum World of Warcraft General
    Replies: 1
    Last Post: 05-31-2006, 11:18 PM
All times are GMT -5. The time now is 07:31 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search