Close
Showing results 1 to 10 of 16

Hybrid View

  1. #1

    Default

    Thank you for the link to blue quotes, it was very informative.

    The delay is officially "not okay", but it is mostly about GCD and spell cooldowns. I use delay only for /assist macro and only because current targets of nearby characters are updated with some delay. I guess this is against the word of ToS but not against the spirit of ToS: minion character does exactly the same thing as main - picks a target.

    Also the idea to split keydown and keyup events is illegal:

    "Just make absolutely certain that you’re not making more than one keypress (for the purposes of the word ‘keypress’ this includes a single key press AND release with no delays), or including delays between key-presses with each action."

    It works just because, in practice, generating several keypresses simultaneously is not punished.

  2. #2

    Default

    Quote Originally Posted by sharpMouse View Post
    Also the idea to split keydown and keyup events is illegal:

    "Just make absolutely certain that you’re not making more than one keypress (for the purposes of the word ‘keypress’ this includes a single key press AND release with no delays), or including delays between key-presses with each action."

    It works just because, in practice, generating several keypresses simultaneously is not punished.
    I'm assuming you're responding to others. I was very particular in that I said leader on key down and others on key up. Each character in that case is still just one action per keypress and this is fine. You can then create your own variable length delay by holding the key.

  3. #3

    Default

    I'm wondering if I can do this on a single key press:

    keydown (Master):
    Code:
    /startattack
    /cast Spell
    keyup (Slaves):
    Code:
    /assist Master
    /cast Heroic Strike
    USE IWT hotkey
    Is this allowed and is this how ISBoxer does this? IWT + Cast is done at the same time? I couldn't find anything in the docs: http://isboxer.com/wiki/WoW:Interact_with_Target

    EDIT: Specifically I want to know if the key-up action you can see up here is OK (or do I need to separate the IWT from it).
    Last edited by aasi888 : 09-15-2019 at 09:22 AM Reason: Formatting2

  4. #4

    Default

    Quote Originally Posted by aasi888 View Post
    I'm wondering if I can do this on a single key press:

    keydown (Master):
    Code:
    /startattack
    /cast Spell
    keyup (Slaves):
    Code:
    /assist Master
    /cast Heroic Strike
    USE IWT hotkey
    Is this allowed and is this how ISBoxer does this? IWT + Cast is done at the same time? I couldn't find anything in the docs: http://isboxer.com/wiki/WoW:Interact_with_Target

    EDIT: Specifically I want to know if the key-up action you can see up here is OK (or do I need to separate the IWT from it).
    I would expect this to be fine the triggering of the actions to be fine. For what you're doing on the trigger, the question to ask is "Could I write an in game macro (or addon) that does that?"

Posting Rules

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •