AddToSpellDelayList function menu

User Tag List

Results 1 to 12 of 12
  1. #1
    Sisa12's Avatar Member
    Reputation
    1
    Join Date
    Sep 2024
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    AddToSpellDelayList function

    Hi,

    in PQR I have bladestorm binded to ALT key but when I spam ALT it often happens that bladestorm is skipped due to GCD and PQR continues to auto execute other abilities when GCD is off.
    I'd like to execute bladestorm first. So I'm searching for a way to pause the rotation when using ALT key and continue the rotation after bladestorm is executed.

    I tried the following but it doesn't seem to work:

    if PQR_RotationStarted == true then
    PQR_RotationStarted = false
    PQR_AddToSpellDelayList(46924, 0, 1)
    end

    Unfortunately that script doesn't seem to work. It doesn't delay the rotation when I use ALT key.

    Does anybody know how to set this up?
    Any help would be highly appreciated!

    AddToSpellDelayList function
  2. #2
    blue_silvi's Avatar Active Member CoreCoins Purchaser
    Reputation
    21
    Join Date
    Jun 2024
    Posts
    11
    Thanks G/R
    0/4
    Trade Feedback
    3 (100%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Sisa12 View Post
    Hi,

    in PQR I have bladestorm binded to ALT key but when I spam ALT it often happens that bladestorm is skipped due to GCD and PQR continues to auto execute other abilities when GCD is off.
    I'd like to execute bladestorm first. So I'm searching for a way to pause the rotation when using ALT key and continue the rotation after bladestorm is executed.

    I tried the following but it doesn't seem to work:

    if PQR_RotationStarted == true then
    PQR_RotationStarted = false
    PQR_AddToSpellDelayList(46924, 0, 1)
    end

    Unfortunately that script doesn't seem to work. It doesn't delay the rotation when I use ALT key.

    Does anybody know how to set this up?
    Any help would be highly appreciated!
    Add me in discord blue_silvi
    I will try to help you for free with sharescreen hopefully takes 5 mins to either register keypress or somehow flip an internal boolean to read bladestorm cast at the beginning of the spell loop
    I supose you are not the first person who need this

  3. #3
    Sisa12's Avatar Member
    Reputation
    1
    Join Date
    Sep 2024
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I found some kind of a work around. I have bound sweeping strikes on Alt key and then auto execute Bladestorm as highest priority when Sweeping Strikes is up. Sweeping strikes is not affected by GCD so that works pretty good.

    I'm surprised that every PQR profile that I have seen so far has no function to delay the rotation until the hotkey ability got executed.
    Kinda game breaking to classes like paly when you press the hotkey for stun hammer but the combat routine continues casting other stuff.

  4. #4
    blue_silvi's Avatar Active Member CoreCoins Purchaser
    Reputation
    21
    Join Date
    Jun 2024
    Posts
    11
    Thanks G/R
    0/4
    Trade Feedback
    3 (100%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    oh thats actually clever, glad to hear you got a workaround
    PQR is a very simple and old project if im not mistaken, i believe back in the day scripting was stil not defined as good as today and it was not well designed
    maybe you can somehow send commands thru macros into the lua environment like unlockers do or somehow you can with pqr api register keybinds to run code, but i didnt find anything obvius in google the other day for you, thats why i offered sharescreen maybe with some time ingame i could figure out

    if you need help with anything else in future feel free to ask <3

  5. #5
    Sisa12's Avatar Member
    Reputation
    1
    Join Date
    Sep 2024
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Another work around would be to bind /focus on your preferred hotkey and then in PQR auto execute BS when you have a focus target.
    It has the very big downside that you can't use focus for anything else then.

  6. #6
    EllieRussell's Avatar Member
    Reputation
    1
    Join Date
    Oct 2024
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thank you so much for the information.

  7. #7
    HarperFlores's Avatar Member
    Reputation
    1
    Join Date
    Nov 2024
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thank you.

  8. #8
    WyattMoore's Avatar Member
    Reputation
    1
    Join Date
    Nov 2024
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thank you so much.
    Last edited by WyattMoore; 01-08-2025 at 12:53 AM.

  9. #9
    AugustYork's Avatar Member
    Reputation
    1
    Join Date
    Dec 2024
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Bladestorm over other abilities by pausing the rotation during its execution. The issue might be related to how PQR handles rotation and delays. You could try adjusting the script to ensure the rotation pauses properly by using a more direct delay function or checking if Bladestorm has been cast before resuming. Consider adding a condition to check for the Bladestorm cooldown status or using a "pause until" function in your script.
    Last edited by AugustYork; 02-12-2025 at 05:24 AM.

  10. #10
    UptonRay's Avatar Member
    Reputation
    1
    Join Date
    Jan 2025
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    It like you need a way to pause the rotation when pressing ALT and resume after Bladestorm finishes. Try using PQR_IsKeyPressed to detect ALT and halt execution until Bladestorm is complete. Also, ensure PQR_AddToSpellDelayList uses the correct spell ID and delay values. Debugging with PQR_WriteToChat might help track execution flow.
    Last edited by UptonRay; 03-07-2025 at 03:25 AM.

  11. #11
    RansomKeaton's Avatar Member
    Reputation
    1
    Join Date
    Mar 2025
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    That solution should help ensure the ability executes first before continuing the rotation. Testing it out in-game and adjusting the timing for your specific needs might make it even smoother. Keep experimenting, and I'm sure you'll get the perfect setup! Let me know how it goes!
    Last edited by RansomKeaton; 05-02-2025 at 07:45 AM.

  12. #12
    SylasNorris's Avatar Member
    Reputation
    1
    Join Date
    Apr 2025
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    This function enhances spellcasting precision. Tweak delays to optimize timing for your class and playstyle, especially in PvP scenarios. As a college student juggling part-time work and deadlines, writing high-quality essays was a major challenge. That’s when I found ukwritings.com, and it truly changed my academic experience. UKwritings, writers understood my topic, followed instructions carefully, and delivered a polished paper on time. The best part? It didn’t feel generic—it sounded like me. I now rely on them whenever I need a reliable essay writing service that gets it right without the stress.
    Last edited by SylasNorris; 05-22-2025 at 07:53 AM.

Similar Threads

  1. [Release] Scan Pixels function for VB.net
    By suicidity in forum World of Warcraft Bots and Programs
    Replies: 6
    Last Post: 07-09-2014, 02:12 PM
  2. item Teleport [completed and functional]
    By venom9122 in forum World of Warcraft Emulator Servers
    Replies: 15
    Last Post: 12-13-2007, 11:46 PM
  3. [Release]Blizzlike Database - Fully Functioning
    By ~SaiLyn~ in forum World of Warcraft Emulator Servers
    Replies: 17
    Last Post: 11-12-2007, 09:52 PM
  4. Function locating.
    By HolyForce in forum World of Warcraft General
    Replies: 0
    Last Post: 03-03-2007, 07:19 AM
All times are GMT -5. The time now is 07:47 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search