Fast Attack Staff [Python Script] menu

Shout-Out

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 28
  1. #1
    AndroidX's Avatar Active Member Authenticator enabled
    Reputation
    26
    Join Date
    Oct 2021
    Posts
    135
    Thanks G/R
    7/23
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)

    Fast Attack Staff [Python Script]

    I saw this exploit in other thread and I made a python script for it


    You can use this script installing python, then copy the script and save as attackorwhatever.py then run it and push F4, you can change it in hotkey
    I set in -i- switch active weapons like in pic:
    b332042d50.png

    Python: F4 to play/pause
    from threading import Event
    from time import sleep
    import pyautogui
    import keyboard

    hotkey = 'F4'

    running = Event()
    running.clear()

    def handle_key_event(event):
    if event.event_type == 'down':
    if running.is_set():
    running.clear()
    else:
    running.set()

    keyboard.hook_key(hotkey, handle_key_event)

    while True:
    if not running.is_set():
    running.wait()
    pyautogui.click()
    sleep(0.05)
    pyautogui.press('q')
    pyautogui.press('i')
    pyautogui.click()
    sleep(0.05)
    pyautogui.press('q')
    pyautogui.press('i')
    Pastebin: from threading import Eventfrom time import sleepimport pyautoguiimport ke - Pastebin.com
    Github GitHub - ArdXxX/New-World-Fast-Attack

    EDIT Compiled to exe, I suggest run directly from python, but if you can't, you can just use the exe file and
    Release Compiled with PyInstaller . ArdXxX/New-World-Fast-Attack-Exploit . GitHub
    Last edited by AndroidX; 10-29-2021 at 04:39 AM.

    Fast Attack Staff [Python Script]
  2. Thanks Selma, bot69 (2 members gave Thanks to AndroidX for this useful post)
  3. #2
    Ringin's Avatar Member
    Reputation
    1
    Join Date
    Feb 2011
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thank you! As someone who isnt well versed with this type of thing, how would I go about running it?

  4. #3
    Selma's Avatar Active Member
    Reputation
    51
    Join Date
    Dec 2010
    Posts
    105
    Thanks G/R
    15/27
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by AndroidX View Post
    F3 to play/pause
    Its actually F4 right?

  5. #4
    Sophistical's Avatar Active Member

    Reputation
    53
    Join Date
    May 2014
    Posts
    119
    Thanks G/R
    0/3
    Trade Feedback
    8 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Running the script and it just auto closes, hotkey also seems to be F4 in the code?

  6. #5
    AndroidX's Avatar Active Member Authenticator enabled
    Reputation
    26
    Join Date
    Oct 2021
    Posts
    135
    Thanks G/R
    7/23
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Ringin View Post
    Thank you! As someone who isnt well versed with this type of thing, how would I go about running it?
    updated main post, you need to install python to run it

  7. #6
    AndroidX's Avatar Active Member Authenticator enabled
    Reputation
    26
    Join Date
    Oct 2021
    Posts
    135
    Thanks G/R
    7/23
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Selma View Post
    Its actually F4 right?
    switched because it use fishing pole

  8. #7
    Sophistical's Avatar Active Member

    Reputation
    53
    Join Date
    May 2014
    Posts
    119
    Thanks G/R
    0/3
    Trade Feedback
    8 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    "expected an indented block after function definition on line 11"

    Might be better off pasting it in pastebin so we get the correct indentations? Unsure why it's throwing this.

  9. #8
    AndroidX's Avatar Active Member Authenticator enabled
    Reputation
    26
    Join Date
    Oct 2021
    Posts
    135
    Thanks G/R
    7/23
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Sophistical View Post
    "expected an indented block after function definition on line 11"

    Might be better off pasting it in pastebin so we get the correct indentations? Unsure why it's throwing this.
    added pastepin link from threading import Eventfrom time import sleepimport pyautoguiimport ke - Pastebin.com

  10. #9
    Sophistical's Avatar Active Member

    Reputation
    53
    Join Date
    May 2014
    Posts
    119
    Thanks G/R
    0/3
    Trade Feedback
    8 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks, how do we go about installing the modules?
    the classic python -m pip install pyautogui?

    Asking since I'm not able to really test it now and just checking the code for the requirements. Plus I'm F- in any programming :{

  11. #10
    variation11's Avatar Member
    Reputation
    1
    Join Date
    Oct 2021
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    It works very well, thank you for sharing!

  12. #11
    Ringin's Avatar Member
    Reputation
    1
    Join Date
    Feb 2011
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Sophistical View Post
    Thanks, how do we go about installing the modules?
    the classic python -m pip install pyautogui?

    Asking since I'm not able to really test it now and just checking the code for the requirements. Plus I'm F- in any programming :{
    This worked for me, not im getting a "no module named keyboard"

    Ive tried several ways to get it to work but thats my issue atm.

  13. #12
    AndroidX's Avatar Active Member Authenticator enabled
    Reputation
    26
    Join Date
    Oct 2021
    Posts
    135
    Thanks G/R
    7/23
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    pip install pyautogui
    should be enough, make sure you have python in PATH

  14. #13
    riotlev's Avatar Active Member

    Reputation
    57
    Join Date
    Jan 2014
    Posts
    270
    Thanks G/R
    14/23
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Twitch

    Can use with any Software and can Keybind it to anything you like.

    This Video is for the Firestaff only.

    Lifestaff would work like this:

    1. Attention Required! | Cloudflare
    2. Attention Required! | Cloudflare

    You get the idea, If you don't want additional Software.

  15. #14
    ?? ??'s Avatar Member
    Reputation
    1
    Join Date
    Jun 2014
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    For me, it doesn't do it as fast as in the video...

  16. #15
    AndroidX's Avatar Active Member Authenticator enabled
    Reputation
    26
    Join Date
    Oct 2021
    Posts
    135
    Thanks G/R
    7/23
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ?? ?? View Post
    For me, it doesn't do it as fast as in the video...
    you can change delays

Page 1 of 2 12 LastLast

Similar Threads

  1. [Release] ROPlus - Bots / Combat Assist / Python Scripting
    By NotJuJuBoSc in forum MMO Exploits|Hacks
    Replies: 1
    Last Post: 03-22-2017, 02:26 PM
  2. [Release]Staff Application Script
    By mager1794 in forum WoW EMU General Releases
    Replies: 32
    Last Post: 01-29-2009, 08:36 PM
  3. winning winergrasp fast (attacking)
    By sissi in forum World of Warcraft Exploits
    Replies: 15
    Last Post: 01-09-2009, 03:50 PM
All times are GMT -5. The time now is 07:19 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