Close
Showing results 1 to 6 of 6

Hybrid View

  1. #1

    Default Click healing from Tank Window using an Addon

    Just downloaded Healbot for my priest for solo play. Never raid healed so fiddling with it. Must say its a pretty cool add on.

    I did a little searching on these boards, but could find if anyone has found a way to....

    Use an addon like healbot from your "main's" window (my tank). I'm wondering if there'd be some way to modify healbot or use another add on (like a Jamba type) to translate a click on Healbot from you main into a single keypress to take the dictated action in your healer's window. I'm guessing the selecting of a target would be the limiting factor. I just thought of how easy it would be to use healbot versus my multitude of keys I use today. (I use my numpad and probably have 15 key combinations for various healer actions mapped there. I have to "a" get the correct key and "b" remember which key/key combo goes to which toon/spell.) My system works but click healing on my tank's window would be much simplier and more flexible.
    80 Blood Elf Paladin, 80 Blood Elf Priest,80 Troll Mage, 80 Undead Warlock, 80 Tauren Druid, 80 Undead Rogue
    80 x4 Shaman (Orc x3, Troll)

    Madoran - Horde - PvE

  2. #2

    Default

    you can't do this directly only by an addon, because you need to trigger the heal somehow on your healer...

    ..what i'm doing for all my group heals is:

    1. I use grid to show all my chars on my main in alphabetic order
    2. I use this grid-unitframes as graphical layout for my healing buttons
    3. When I click on such a virtual healing button, i broadcast a specific key-combo which identifys the target and which heal to use to my healer (like an ftl button)
    4. my Healer has on this key, an ftl-style healing macro

    To make this work as I said I use Grid and HotKeyNet.

    To get an Idea who this could be done with hotkeynet, the corrsponding parts on my script look like this, for activating a Greatar Heal by left clicking:

    Code:
    <Hotkey LButton>
     	<If MouseIsOverWindowRect WoW1 900 600 40 40>  //This means its on window WoW1 (which is my tank) over the first grid entry (which is CharA)
               	<Sendlabel healer>
                     	<Key rctrl o>
     	<Else If MouseIsOverWindowRect WoW1 940 600 40 40>  //This means its on window WoW1 (which is my tank) over the second grid entry (which is CharB)
                	<Sendlabel healer>
                      	<Key ralt o>
     	<Else If MouseIsOverWindowRect WoW1 980 600 40 40>  //This means its on window WoW1 (which is my tank) over the third grid entry (which is CharC)
                	<Sendlabel healer>
                      	<Key rshift o>
     	<Else If MouseIsOverWindowRect WoW1 1020 600 40 40>  //This means its on window WoW1 (which is my tank) over the fourth grid entry (which is CharD)
                	<Sendlabel healer>
                      	<Key lshift o>
     	<Else If MouseIsOverWindowRect WoW1 1060 600 40 40>  //This means its on window WoW1 (which is my tank) over the fifth grid entry (which is CharE)
                	<Sendlabel healer>
                      	<Key lalt o>
     	<Else>   //To pass the mouseclick, if no region was hit
             	<SendFocusWin>
                    	<ClickMouse>
    with the following macro on my healer bound to 'o':
    Code:
    /cast [mod:rctrl,target=CharA][mod:ralt,target=CharB][mod:rshift,target=CharC][mod:rlshift,target=CharD][mod:lalt,target=CharD] Greater Heal
    Of course, if you would get Healbot to sort alphabetical (and when you find this option, please say so!), you could simply position it the same on your tank and heaer and broadcast the mouseclicks...
    OLIPCS - ordinary life is pretty complex stuff
    ----------------------------------------------------------------
    Pala, Priest, Druid, Hunter, Mage
    Focusless Targetless Leaderless - Wiki
    HotKeyNet - Guide

  3. #3
    Member Otlecs's Avatar
    Join Date
    May 2007
    Location
    EU-Aggramar, Alliance.
    Posts
    1367

    Default

    if you would get Healbot to sort alphabetical (and when you find this option, please say so!),
    You can change the sort order with setting your guys as "targets" alphabetically. By default that's done with CTRL+ALT+RCLICK.

    I use Healbot both for multiboxing and on my current main raider :love:

    But then I often play my healer hands-on.

  4. #4

    Default

    Quote Originally Posted by 'olipcs',index.php?page=Thread&postID=218511#post2 18511
    Code:
    <Hotkey LButton>
     	<If MouseIsOverWindowRect WoW1 900 600 40 40>  //This means its on window WoW1 (which is my tank) over the first grid entry (which is CharA)
               	<Sendlabel healer>
                     	<Key rctrl o>
     	<Else If MouseIsOverWindowRect WoW1 940 600 40 40>  //This means its on window WoW1 (which is my tank) over the second grid entry (which is CharB)
                	<Sendlabel healer>
                      	<Key ralt o>
     	<Else If MouseIsOverWindowRect WoW1 980 600 40 40>  //This means its on window WoW1 (which is my tank) over the third grid entry (which is CharC)
                	<Sendlabel healer>
                      	<Key rshift o>
     	<Else If MouseIsOverWindowRect WoW1 1020 600 40 40>  //This means its on window WoW1 (which is my tank) over the fourth grid entry (which is CharD)
                	<Sendlabel healer>
                      	<Key lshift o>
     	<Else If MouseIsOverWindowRect WoW1 1060 600 40 40>  //This means its on window WoW1 (which is my tank) over the fifth grid entry (which is CharE)
                	<Sendlabel healer>
                      	<Key lalt o>
     	<Else>   //To pass the mouseclick, if no region was hit
             	<SendFocusWin>
                    	<ClickMouse>
    ive just set this up and am trying it out, it works fine but one problem i have is that while i can still click other areas on my main screen, clicking the left button and dragging the mouse has no effect (ie moving my camera angle, using scrollbars etc). is there a way to fix that? ill just be using button4 instead of lbutton if not.
    5box teams
    kakimo hayaku ikuze urusai sukidesu
    kitsuné kitsunę kitsunë kitsunč kėtsune

  5. #5

    Default

    It's not possile with the current version of HKN, which is a bit unfortunate.

  6. #6

    Default

    Code:
    	<Else>
       	 <SendFocusWin>
       		 <ClickMouse Down %Trigger%>
    <HotkeyUp LButton>
        <SendFocusWin>
       	 <ClickMouse Up %Trigger%>
    If you use that for your else you will still be able to mouse look.

Similar Threads

  1. Innerspace & RDX: Click Healing Demo
    By zanthor in forum Movies
    Replies: 15
    Last Post: 06-29-2009, 03:44 AM
  2. Druid healing macro? /click
    By Totemtotem in forum New Multi-Boxers & Support
    Replies: 2
    Last Post: 03-25-2009, 08:30 PM
  3. Click Based Healing with Innerspace & RDX
    By zanthor in forum Screenshots and Digital Art
    Replies: 3
    Last Post: 12-08-2008, 01:27 PM
  4. I can't click into the wow window sometimes.
    By Bigdaddy2 in forum Software Tools
    Replies: 2
    Last Post: 10-02-2008, 07:06 PM
  5. Replies: 14
    Last Post: 05-28-2008, 07:51 PM

Posting Rules

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