bf/bb usage with macro menu

User Tag List

Results 1 to 12 of 12
  1. #1
    roska's Avatar Active Member
    Reputation
    19
    Join Date
    Sep 2017
    Posts
    215
    Thanks G/R
    42/18
    Trade Feedback
    0 (0%)
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)

    bf/bb usage with macro

    hello

    Has anyone come up with such? finding skill combos kinda pain to use without

    bf/bb usage with macro
  2. #2
    Tryzer's Avatar Member
    Reputation
    12
    Join Date
    Apr 2017
    Posts
    80
    Thanks G/R
    0/2
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i would also be highly interested in such a script

  3. #3
    roska's Avatar Active Member
    Reputation
    19
    Join Date
    Sep 2017
    Posts
    215
    Thanks G/R
    42/18
    Trade Feedback
    0 (0%)
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    If someone could clarify the timing you should use with the combination I could give it a try. Afaik you should use it in precise moment to maximize damage output? I've never used the skills before so don't really have any knowledge of it

  4. #4
    jnz9513's Avatar Member
    Reputation
    7
    Join Date
    Dec 2013
    Posts
    77
    Thanks G/R
    10/5
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    CoPilot for ExileAPI supports this.

  5. Thanks roska (1 members gave Thanks to jnz9513 for this useful post)
  6. #5
    roska's Avatar Active Member
    Reputation
    19
    Join Date
    Sep 2017
    Posts
    215
    Thanks G/R
    42/18
    Trade Feedback
    0 (0%)
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by jnz9513 View Post
    CoPilot for ExileAPI supports this.
    Really?!? I think this solved my league starter problem

  7. #6
    Tryzer's Avatar Member
    Reputation
    12
    Join Date
    Apr 2017
    Posts
    80
    Thanks G/R
    0/2
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    is there someone who might have a heart and time explain me how to get exileapi to work within next 2 hours ? i never used it and it dont seems user friendly for first time use would be awesome

  8. #7
    jnz9513's Avatar Member
    Reputation
    7
    Join Date
    Dec 2013
    Posts
    77
    Thanks G/R
    10/5
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by roska View Post
    Really?!? I think this solved my league starter problem
    Indeed.

    Originally Posted by Tryzer View Post
    is there someone who might have a heart and time explain me how to get exileapi to work within next 2 hours ? i never used it and it dont seems user friendly for first time use would be awesome
    We have to wait for it to be updated to 3.13.

  9. #8
    roska's Avatar Active Member
    Reputation
    19
    Join Date
    Sep 2017
    Posts
    215
    Thanks G/R
    42/18
    Trade Feedback
    0 (0%)
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    I found copilot usage bugging sometimes and being a little slow so here's an ahk script if anyone wants to try.
    Code:
    #IfWinActive , ahk_class POEWindowClass
     
    #MaxThreadsPerHotkey  2
     
    
     
    ; Toggle key
    RButton::
       
        {
    	if (WinActive("ahk_class POEWindowClass") && !GetKeyState("Shift") && !GetKeyState("Ctrl") && !GetKeyState("Alt"))
           ; Prevent combo spamming if game loses focus or you hold Shift/Ctrl/Alt (when you interact with objects in inventory etc)
          						
            {
                ; bladefall
                Send, e
                ; Random delay with range
                sleep, % delay(200, 250)
    	    ;bladeblast
    	    Send, r
            }	
    	}	
    	
    return
     
    delay(a, b)
    {
        random, delay, a, b
        return delay
    }
    change trigger button, skill buttons and delays to your liking.
    It's not perfect but seems to work decent to my taste. You can't hold trigger key down but instead use stutterstepping

  10. Thanks EthEth, xerance (2 members gave Thanks to roska for this useful post)
  11. #9
    xerance's Avatar Active Member CoreCoins Purchaser
    Reputation
    32
    Join Date
    Jan 2018
    Posts
    150
    Thanks G/R
    36/30
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by roska View Post
    I found copilot usage bugging sometimes and being a little slow so here's an ahk script if anyone wants to try.
    Code:
    #IfWinActive  , ahk_class POEWindowClass
     
    #MaxThreadsPerHotkey   2
     
    
     
    ; Toggle key
    RButton::
       
        {
    	if (WinActive("ahk_class POEWindowClass") && !GetKeyState("Shift") && !GetKeyState("Ctrl") && !GetKeyState("Alt"))
           ; Prevent combo spamming if game loses focus or you hold Shift/Ctrl/Alt (when you interact with objects in inventory etc)
          						
            {
                ; bladefall
                Send, e
                ; Random delay with range
                sleep, % delay(200, 250)
    	    ;bladeblast
    	    Send, r
            }	
    	}	
    	
    return
     
    delay(a, b)
    {
        random, delay, a, b
        return delay
    }
    change trigger button, skill buttons and delays to your liking.
    It's not perfect but seems to work decent to my taste. You can't hold trigger key down but instead use stutterstepping
    hey, thanks for the base, ended up running this:

    Code:
    #IfWinActive  Path of Exile
    #NoEnv 
    #SingleInstance , Force
    #MaxThreadsPerHotkey   2
    SendMode, Input
    return
    
    
    RButton::
    While GetKeyState(A_ThisHotkey,"p") 
    {
    	if (!GetKeyState("Shift") && !GetKeyState("Ctrl") && !GetKeyState("Alt"))					
            {
                ; bladefall
                Send, {RButton} 
                ; Random delay with range
                sleep, % delay(350, 380)
    	    ;bladeblast
    	    if (GetKeyState(A_ThisHotkey,"p") && !GetKeyState("Shift") && !GetKeyState("Ctrl") && !GetKeyState("Alt")) 
                {
    		Send, t
    		sleep, % delay(310, 340)
    	    }
            }	
    }
    return
    
    
    
    delay(a, b)
    {
        random, delay, a, b
        return delay
    }
    skill setup:
    right click = blade fall
    t = blade blast

    supports holding down right click, to spam for maximum dmg, while retaining the right click function of inventory and chat.
    also allows you you to cancel the blade blast my releasing right click so you dont get stuck and die.

    found adjusting delay to around cast time -30/40 as min and actually cast time as max.



    update: added the missing (
    Last edited by xerance; 04-19-2021 at 06:35 AM.

  12. Thanks roska (1 members gave Thanks to xerance for this useful post)
  13. #10
    menuview2002's Avatar Member
    Reputation
    1
    Join Date
    Jul 2014
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @xerance I try to use your code but it give me this message:
    Script.jpg

  14. #11
    xerance's Avatar Active Member CoreCoins Purchaser
    Reputation
    32
    Join Date
    Jan 2018
    Posts
    150
    Thanks G/R
    36/30
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by menuview2002 View Post
    @xerance I try to use your code but it give me this message:
    Script.jpg
    sorry, accidently removed a "(". updated the code

    or you can manually add a ( after the if

  15. #12
    exec85's Avatar Member
    Reputation
    3
    Join Date
    Mar 2009
    Posts
    43
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    If you have any kind of macro mouse - all poblems are solved.
    I use my Razer Naga since years for exactly this surpose.

Similar Threads

  1. NO limits with macro
    By ketrish in forum World of Warcraft Exploits
    Replies: 11
    Last Post: 09-15-2012, 08:29 AM
  2. [Profession] SCRIBE'S DREAM:How to AFK mill and make inks for all of your herbs with macros/script
    By Sklug in forum World of Warcraft Guides
    Replies: 13
    Last Post: 09-09-2011, 11:07 PM
  3. Two tracking types at the same time (With Macro)
    By deathshadow13 in forum World of Warcraft Exploits
    Replies: 14
    Last Post: 02-01-2009, 02:19 AM
  4. Make a Cocky player feel stupid with Macros
    By Rayz in forum World of Warcraft General
    Replies: 9
    Last Post: 03-29-2008, 05:15 AM
  5. Stop falling damage with macro
    By crazyelfjj in forum World of Warcraft Exploits
    Replies: 20
    Last Post: 12-02-2007, 12:48 AM
All times are GMT -5. The time now is 04:04 AM. 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