Close
Showing results 1 to 6 of 6

Hybrid View

  1. #1

    Default Trouble with modifiers.

    So I recently got into MultiBoxing and I am using HotKeyNet. I have a decent understanding of how the basics work but when it comes to modifiers, I can't seem to get it to work properly. What I am trying to do is send Ctrl + key pressed to both windows so that I can access a second bar. I've managed to do individual keys that caused an end result of Ctrl + Specified Key ( For instance. If I press K it sends Ctrl 1).

    Code I am currently using

    Code:
     <KeyList It A-D,F-P,S-Z, 0-9, Numpad0-Numpad9, Esc, Space, Plus, Minus, F1-F12 except W, A, S, D>
    
    <Hotkey ScrollLockOn It>
    <SendLabel w1, w2>
    <Key %Trigger%>
    
    
    
    
    <Hotkey ScrollLockOn Shift It; Alt It; Ctrl It;>
    <SendLabel w1, w2>
    <Key %Trigger%>
    Another thing I am wondering is does anyone have any advice for repositioning the Slave so it faces the mobs. I'm playing mages and using Interact with target tied to my assist macro but mages don't go into melee so she ends up sideways half the time.
    Last edited by Odox : 11-15-2017 at 03:26 AM

  2. #2

    Default

    I'm guessing by the 100+ views and no replies, that no one knows how to do what I am asking. So I'll ask another question. Am I able to do this in ISB?

  3. #3

    Default

    Most people do not use Hotkeynet these days, so getting answers is rather hard sadly. Personally I am usually just too tired when I finally get to sit down to start troubleshooting stuff on a program I don't use anymore.

    I went ahead and dowloaded it again just for this kind of stuff...

    So... You just want to be able to use Modifier+*KEY* right?

    If so, couldn't you just do:

    Code:
    <Hotkey LCtrl 0-9>
    <SendLabel w1, w2>   /// I'm testing this on 2 clients, edit to match your config
    <Key %Trigger%>
    That seems to work just fine to me, unless I'm not understanding what you wish to do.


    As far turning your slaves towards an enemy, you could make a hotkey that on KeyDown send your ingame Interact With Target keybind and on KeyUp sends S (or whatever you have backpeddle bound to). If you have Click to Move on, your toon would start to move towards the target until you release the key. Getting the timing on it right might take some practise, to get it down to where the toons faces the enemy but does not move too much. Or alternative you could have keys for keyboard turning.

    And yes, ISB could do all of this as well naturally.


    **EDIT**

    And with a bit of googling I did this:

    Code:
    <KeyList MyKeys 0-9, Q, E>
    <Hotkey ScrollLockOn MyKeys; ScrollLockOn Alt MyKeys; ScrollLockOn Shift MyKeys; ScrollLockOn Ctrl MyKeys>
    <SendLabel w1, w2>
    <Key %Trigger%>
    That has all modifier keys working for fine for me through a keylist for my 1-9, Q and E keys
    Last edited by Wubsie : 11-27-2017 at 02:55 PM Reason: added the second script

  4. #4

    Default

    Sorry. I should have mentioned I solved my slave facing issue by doing more or less what you suggested. So ty =)

    You're second code is almost exactly the code I provided that hasn't worked unfortunately. What I am trying to do is have 0-9 work as sending 0-9. Then also have modifiers+ 0-9 that send as the modifier+ 0-9. Basically the way my UI is set up is I have a basic 12 slot bar keybound with 0-9,+,- Then I have it paging using ctrl,alt or shift to a secondary 12 slot bar.

    I'm just trying not to change up my playstyle a hell of a lot but I have been looking into making macros and round robin set ups if I can't do the paging. If that doesn't feel right then I'll bite the bullet and buy ISB.

  5. #5

    Default

    Well, what I posted seemed to work fine. I only tried Ctrl and Alt modifiers though. Could I see your full script? Ofc take out any personal info if any is present.

  6. #6

    Default

    First off I want to apologize for the late reply. My computer broke and I had to build a new one. Had to wait for my friend to work his magic on my old HDD to recover as much as he could. This is the code I used for HKN

    Code:
     
    //-----------------------------------------------------------
    // TO RENAME WOW'S AND HIDDEN BOXES
    //-----------------------------------------------------------
    
    
    <Hotkey ScrollLockOn Ctrl R>
        <SendPC local>
            <RenameWin "World of Warcraft" HiddenDia>
            <RenameWin "World of Warcraft" HiddenDia>
            <RenameWin "World of Warcraft" WoW1>
            <RenameWin "World of Warcraft" WoW2>
    
    
    
    
     
    //-----------------------------------------------------------
    // LABELS FOR SENDING KEY STROKES
    //-----------------------------------------------------------
    <Label w1 Local SendWinM WoW1>
    <Label w2 Local SendWinM WoW2>
     
    //-----------------------------------------------------------
    // DEFINED HOTKEYS THAT WILL GET SENT TO BOTH WOWS. 
    //-----------------------------------------------------------
    <Hotkey ScrollLockOn Q>
      <If ActiveWinIs WoW1>
        <SendLabel w2>
        <Key %Trigger%>
    <If ActiveWinIs WoW2>
        <SendLabel w1>
        <Key %Trigger%>
    
    
    <Hotkey ScrollLockOn E>
      <If ActiveWinIs WoW1>
        <SendLabel w2>
        <Key %Trigger%>
        <Key V>
    <If ActiveWinIs WoW2>
        <SendLabel w1>
        <Key %Trigger%>
        <Key V>
    
    
    
    
    <KeyList It A-D,F-P,S-Z, 0-9, Numpad0-Numpad9, Esc,Ctrl, Alt, Shift, Space, Plus, Minus, F1-F12 except W, A, S, D>
    
    
    <HotKey ScrollLockOn Tab>
    <If ActiveWinIs WoW1>
        <SendLabel w1>
        <Key %Trigger%>
    <If ActiveWinIs WoW2>
        <SendLabel w2>
        <Key %Trigger%>
     
    <Hotkey ScrollLockOn It>
    <SendLabel w1, w2>
    <Key %Trigger%>
    
    
    
    
    <Hotkey ScrollLockOn Shift It; ScrollLockOn Ctrl It;>
    <SendLabel w1, w2>
    <Key %Trigger%>
    
    
    //-----------------------------------------------------------
    // DEFINED MOVEMENT KEYS
    //-----------------------------------------------------------
    <MovementHotkey ScrollLockOn W, A, S, D>
      <If ActiveWinIs WoW1>
        <SendLabel w1>
        <Key %Trigger%>
    <If ActiveWinIs WoW2>
        <SendLabel w2>
        <Key %Trigger%>
     <MovementHotkey ScrollLockOn Left, Right>
      <If ActiveWinIs WoW1>
        <SendLabel w2>
        <Key %Trigger%>
      <If ActiveWinIs WoW2>
        <SendLabel w1>
        <Key %Trigger%>
    //-----------------------------------------------------------
    // BROADCAST MOUSE CLICKS. 
    //-----------------------------------------------------------
    <UseKeyAsModifier Oem3>
     
    <Hotkey ScrollLockOn Ctrl MButton, LButton, RButton, Button4, Button5>
       <SendLabel w1, w2>
          <ClickMouse %TriggerMainKey%>
                    <RestoreMousePos>

Posting Rules

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