Close
Showing results 1 to 6 of 6

Hybrid View

  1. #1

    Default Keyclone and Macro questions

    Hey all! I'm pretty new at the whole dual boxing thing, so any help would be much appreciated!

    I've read through both of Khat's guides; found them very informative.

    I do have a few questions related to a certain debuff macro of mine, as well as odd behavior of KeyClone.

    First of all, I have a very basic setup of KeyClone. WQSE and arrow keys marked not to pass, WoW1 on Primary Monitor, WoW2 on Secondary Monitor. That being said, is there any reason WoW1, when launched from KeyClone, is stuck behind the Windows Taskbar? As a temporary fix, I simply set the Windows Taskbar to auto-hide, but I can't stand that feature.
    Secondly, is it just KeyClone's nature (even when broadcasting is paused) to try to force WoW on top? I wasn't able to find any setting to disable this. I'll occasionally try to tab out to browser, and WoW will pull itself back on top. Again, this only happens when I run via KeyClone.

    My second question has to do with my warlock's macro. "Curse of Enfeeblement" doesn't seem to be recognized as a spell, even when run through macroexplain.com. How exactly should I set up a DoT macro? This is what I have at the moment...

    Code:
    /assist PLAYER
    /castsequence reset=combat Corruption, Curse of Enfeeblement
    While I'm at it, if I have the master focused, shouldn't this macro target correctly?
    Code:
    /castsequence reset=combat [@focustarget] Shadow Bolt
    When I tried an [@focustarget] modifier (the only modifier I had), with my master toon on focus, and in range, nothing would cast. Would much rather have my casts @focustarget rather than adding an assist line. Even if they both achieve the same thing, just seems "cleaner" if that makes sense.


    Any help would be much appreciated!
    -Geheiligt

  2. #2
    Member
    Join Date
    Sep 2008
    Location
    Calgary, AB and Vancouver, BC
    Posts
    7638
    Blog Entries
    2

    Default

    Not sure on the reason for KC to being on top.
    I haven't used it in quite a while.

    The macro, with /assist Player...
    Player, in macro terms refers to the current character.
    So you're essentially saying assist yourself, which won't change your target.

    If you always have the active window/master as your focus.
    You'd want to either:

    #show
    /cast [@focustarget] Whatever

    #show
    /assist [@focus]
    /cast Whatever
    EverQuest I: Bard / Enchanter / Druid / Wizard / 2x Magician.
    Diablo III: 4x Crusader & 4x Wizard.

    My Guide to IS Boxer http://www.dual-boxing.com/showthread.php?t=26231 (somewhat dated).
    Streaming in 1080p HD: www.twitch.tv/ualaa
    Twitter: @Ualaa


  3. #3

    Default

    Oh, hahah I didn't know "/assist player" was an actual macro string. By player I meant my master character's name.

    Does /castsequence work in conjunction with [@focustarget] then? I may have had some other error I overlooked.

    EDIT: What is the #show at the start of your examples?

  4. #4
    Member
    Join Date
    Sep 2008
    Location
    Calgary, AB and Vancouver, BC
    Posts
    7638
    Blog Entries
    2

    Default

    #show = Display the buff icon.
    #showtooltip = Also give mouse-over information

    @ is the same as target=

    @player = self cast

    @party1 = The F2 target in the party (the leader, if you're not the leader or the first member of the party if you're leading)



    #showtooltip
    /assist [@focus]
    /castsequence reset=combat/target Spell 1, Spell 2, Spell 3, Spell 1

    #show
    /cast [help,@targettarget][help,@targettargettarget] Heal Spell
    EverQuest I: Bard / Enchanter / Druid / Wizard / 2x Magician.
    Diablo III: 4x Crusader & 4x Wizard.

    My Guide to IS Boxer http://www.dual-boxing.com/showthread.php?t=26231 (somewhat dated).
    Streaming in 1080p HD: www.twitch.tv/ualaa
    Twitter: @Ualaa


  5. #5

    Default

    Quote Originally Posted by Geheiligt View Post
    is there any reason WoW1, when launched from KeyClone, is stuck behind the Windows Taskbar? As a temporary fix, I simply set the Windows Taskbar to auto-hide, but I can't stand that feature.
    The Windows Taskbar is rather...aggressive in Win7.

    http://www.dual-boxing.com/threads/3...-my-mainwindow

    Or you could go into the Maximizer section and manually draw the main window to leave 20 or so pixels at the bottom for the task bar.

    Secondly, is it just KeyClone's nature (even when broadcasting is paused) to try to force WoW on top? I wasn't able to find any setting to disable this. I'll occasionally try to tab out to browser, and WoW will pull itself back on top.
    This is an old thread, but I don't think the settings have changed


    http://www.dual-boxing.com/threads/1...-Always-on-Top


    My second question has to do with my warlock's macro. "Curse of Enfeeblement" doesn't seem to be recognized as a spell, even when run through macroexplain.com. How exactly should I set up a DoT macro?
    Macro Explain doesn't always recognize spells because it's not really been updated. The tag on the site says "Current WoW version is 4.0.6", so it's not going to recognize spells that are new or have had their IDs changed since then. But, I haven't found a better site yet that will break down a macro and spit out exactly what it's supposed to do as well as that one does. It still works very well for tracking down syntax errors and the like for macros. An example would be your second macro

    Code:
    /castsequence reset=combat [@focustarget] Shadow Bolt
    Plugging the into the Macro-explain tells you why it's not working under the Macro Errors box {under the macro entry field}

    Code:
     /castsequence reset! = combat [ @ focus target ] Shadow Bolt
    If you mouse over the ! in the box on the site it says

    Options for resetting a sequence must be placed after any macro conditions. Example: /castsequence [conditions] reset=...
    Which means the reset is in the wrong position. It should read

    Code:
    /castsequence [@focustarget] reset=combat Shadow Bolt
    Though since it's only one spell, you don't really even need a sequence

    Code:
    /cast [@focustarget] Shadow Bolt
    Which macro explain returns as

    Explanation
    Cast Shadow Bolt on the unit saved as your focus target's currently targeted unit
    Last edited by Khatovar : 01-28-2013 at 12:29 AM
    Blog : Herding Khats
    Team : Kina - Çroaker - Messkit - Lìfetaker - Wìdowmaker
    Newbie Guides : Multiboxing Vol. 1 - Multiboxing Vol. 2 - HotKeyNet - Jamba
    The Almighty Lax made a liar out of me, apparently I DO get prizes for it.
    *Commences Wielding the Banhammer like there's piñatas up in here and I'm Lady Thor*

    _ Forum search letting you down? Use the custom Google search _

  6. #6

    Default

    Thanks for the replies all! The link that Khatovar shared regarding the Win7 Taskbar seems to have fixed my issue! However, I've double checked both Command and Maximizer settings in KeyClone - neither of which have "always on top" checkmarked. I've also tried disabling Maximizer all together, in which case it forces both WoW windows onto my primary monitor, instead of one on each.

    Also, if someone could shed some light onto why my macros don't seem to be working, I would greatly appreciate it.

    1.
    Code:
    /castsequence [nochanneling] [@focustarget] reset=3 shadow bolt, Soul Fire
    -My master is indeed set as the focus, so I'm not sure as to why it simply won't cast on his target.
    -Works if I add an /assist tag at the top in place of @focustarget.

    2.
    Code:
    /assist Pally
    /castsequence reset=combat Corruption, Curse of Enfeeblement
    -Regardless of my targeting issues, Curse of Enfeeblement simply never goes off.
    -All within the same combat session.

    Thanks again everyone for the quick replies!

    EDIT: By not working I mean they simply won't cast, if that means anyway. Broadcast is not muted, etc. Not sure what I'm missing.
    Last edited by Geheiligt : 01-29-2013 at 03:08 AM

Posting Rules

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