Close
Showing results 1 to 7 of 7

Hybrid View

  1. #1

    Default WoW Modifiers / Need some ideas (Hotkeynet User)

    What I'm trying to accomplish is a variation of the focusless/leaderless setup that's stickied above. I don't want to go focusless since I'm used to it, but what I want to do is have each toon solo viable by sending any key + modifier to slaves, and my main window receive just the unmodified keystrokes. That's easily accomplished in HKN and the window resize/relocate/renaming scripts work beautifully. With some macros I always have my "main" window as the leader and focus.

    Okay, now that I got that out of the way... here's my problem:

    My problem is I play using a lot of modifiers already. All 7 of my "extra" mouse buttons on my MX logitech revolution are assigned to a hotkey, and I already use CTRL+button x, ALT+button x, Shift+button x for pretty much all my abilities. To my knowledge the only keys defined as "modifiers" in WoW is shift/alt and ctrl...

    I also don't want to use HKN as a "translator" and turn CTRL+MouseButton 4 to "]"+MouseButton4 either because I'd like for my WoW keybindings to be functional without having to rely on HKN to "translate" the keystrokes to something else.

    Can anyone think of a (better) way for me to retain my current keybinds and still utilize a macro that basically does [nomod] = /cast X , [mod:x] = /cast X target focustarget?

  2. #2

    Default

    For a better description, this is how I want my script written... the problem is Key + Ctrl/Alt/Shift is already assigned in WoW to one of the spots in my hotbar.

    Window names:

    WoW1: Broadcast Key (as-is)
    WoW2: Broadcast Key + modifier
    WoW3: Broadcast Key + modifier
    WoW4: Broadcast Key + modifier
    WoW5: Broadcast Key + modifier

    When I switch mains, the windows rotate, WoW1 goes to WoW5's "position", WoW2 goes to WoW1's position, all the wya down the line, then all the windows get renamed (WoW5=WoW1, WoW1=WoW5, etc.)

  3. #3

    Default

    Sorry to be no help for you, kinda cause I am not really sure what you are driving at, but any chance you want to share your script for the switching of windows?

  4. #4

    Default

    Sure thing, mine is 24" monitor. 1920 x 1200. Main window is 1920x900, the top 4 is 480x300

    =============================
    <Command SetPip>
    <TargetWin %1%>
    <SetWinPos 0 300>
    <SetWinSize 1920 900>
    <TargetWin %2%>
    <SetWinSize 480 300>
    <SetWinPos 0 0>
    <TargetWin %3%>
    <SetWinSize 480 300>
    <SetWinPos 480 0>
    <TargetWin %4%>
    <SetWinSize 480 300>
    <SetWinPos 960 0>
    <TargetWin %5%>
    <SetWinSize 480 300>
    <SetWinPos 1440 0>
    <TargetWin %1%>
    <SetForegroundWin>
    <TargetWin %2%>
    <SetForegroundWin>
    <TargetWin %3%>
    <SetForegroundWin>
    <TargetWin %4%>
    <SetForegroundWin>
    <TargetWin %5%>
    <SetForegroundWin>
    <TargetWin %1%>
    <SetForegroundWin>
    <UpdateWin>

    <Hotkey LCtrl NumPadMinus>
    <Toggle>
    <SetPip WoW5 WoW1 WoW2 WoW3 WoW4>
    <SendPC local>
    <RenameWin "WoW5" "WoW5t">
    <RenameWin "WoW1" "WoW1t">
    <RenameWin "WoW2" "WoW2t">
    <RenameWin "WoW3" "WoW3t">
    <RenameWin "WoW4" "WoW4t">
    <RenameWin "WoW5t" "WoW1">
    <RenameWin "WoW1t" "WoW2">
    <RenameWin "WoW2t" "WoW3">
    <RenameWin "WoW3t" "WoW4">
    <RenameWin "WoW4t" "WoW5">

  5. #5

    Default

    [align=left]Let me see if I can remember the code I wrote for this, I only dual box by the way...[/align]








    [align=left]
    Code:
     
    
    // Usage ------------------ 
    // <applyTemplate SendModKey Shift 1> 
    // Send '1' to w1 and Shift 1 too w2 
    // Change the Shift or the 1 depending on the key or modifier you want. 
    
    <template SendModKey> 
    <Hotkey %2%> 
    <If ActiveWinIs wow1> 
    <SendLabel w1> 
    <Key %trigger%> 
    <SendLabel w2> 
    <Key %1% %trigger%> 
    <else> 
    <SendLabel w1> 
    <Key %1% %trigger%> 
    <SendLabel w2> 
    <Key %trigger%> 
    </endtemplate>
    [/align]

    or

    Code:
     
    // -------- USAGE --------- 
    // <applytemplate SendModKey 1 Shift 3> 
    // Send '1' to foreground, send Shift 3 to background. 
    // Drawback is you have to supply a modifier, so you can not 
    // send an unmodified keystroke to the background window. 
    
    <template SendAltModKey> 
    
    <Hotkey %1%> 
    
    <If ActiveWinIs wow1> 
    
    <SendLabel w1> 
    <Key %trigger%> 
    <SendLabel w2> 
    <Key %2% %3% 
    
    <else> 
    
    <SendLabel w1> 
    <Key %2% %3%> 
    <SendLabel w2> 
    <Key %trigger%> 
    
    </endtemplate>





    [align=left]I think thatll do...[/align]
    :| ~ 9-1-1
    ;( ~ Yeah, I'm having trouble breathing. I'm all out of breath. Damn....I think I'm going to pass out.
    ?( ~ Sir, where are you calling from?
    :S ~ I'm at a pay phone. North and Foster.
    ?( ~ Sir, an ambulance is on the way. Are you an asthmatic?
    :huh: ~ No
    ?( ~ What were you doing before you started having trouble breathing?
    inch: ~ Running from the Police.
    8|

  6. #6

    Default

    The more I think about it, the more I realize there is no way around WoW's "modifier" limitation.

    I'll just have to re-write my script and have HKN translate the keybinds i'm used to (Ctrl + X, etc.) and translate it to some other key like PageUp or ] and it should work fine.

  7. #7

    Default

    well, the only way i know, arround wows modifier limitations, is to diferentiate between left/right modifiers in macros.
    You could try to use the left ones, for normal gameplay, and the right ones for the switching.
    OLIPCS - ordinary life is pretty complex stuff
    ----------------------------------------------------------------
    Pala, Priest, Druid, Hunter, Mage
    Focusless Targetless Leaderless - Wiki
    HotKeyNet - Guide

Similar Threads

  1. L and R modifiers
    By rahven32 in forum Software Tools
    Replies: 3
    Last Post: 06-04-2009, 02:58 AM
  2. Replies: 1
    Last Post: 11-26-2008, 09:41 PM
  3. Macros and Modifiers
    By phr00t in forum New Multi-Boxers & Support
    Replies: 7
    Last Post: 09-18-2008, 12:32 PM
  4. WHAT is up with /follow modifiers etc?
    By magwo in forum Macros and Addons
    Replies: 5
    Last Post: 09-06-2008, 10:58 AM
  5. Modifiers
    By TMNT in forum Macros and Addons
    Replies: 9
    Last Post: 07-29-2008, 01:16 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
  •