Close
Page 1 of 2 1 2 LastLast
Showing results 1 to 10 of 17
  1. #1

    Default AddOn to follow your variable MainChar

    Hey there! I was doing an addon, taht allow me to follow my MainChar with one KeyStroke. If my main dies, i use the other charakter and press this following-key. Thats it.

    Here are the source and filesnames if you are interessted:

    Multi.lua
    [code:1]
    function Multi_OnEvent()
    if(arg1 == "Multifollow") then
    FollowUnit(arg2);
    end
    end
    [/code:1]

    Multi.toc
    [code:1]## Interface: 20100
    ## Title: MultiboxerFollowing
    ## Notes: thats it
    Multi.xml[/code:1]

    Multi.xml
    [code:1]<Ui xmlns="http://www.blizzard.com/wow/ui/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.blizzard.com/wow/ui/
    ..\FrameXML\UI.xsd">
    <Script file="Multi.lua"/>

    <Frame name="Multi" parent="UIParent" hidden="false">
    <Scripts>
    <OnLoad>
    this:RegisterEvent("CHAT_MSG_ADDON");
    </OnLoad>
    <OnEvent>
    Multi_OnEvent();
    </OnEvent>
    </Scripts>
    </Frame>
    </Ui>[/code:1]


    Now, you have to setup a macro at each wow-client and bind a key to it, let us say "t".
    The macro are:
    [code:1]/script SendAddonMessage( "Multifollow", UnitName("player"), "RAID" );[/code:1]

    how will it work?
    Simple. you press "t" and your player sends your name via addonmessagechannel to all other members of your party/raid. the other clients receive this and follows the name of the "keypresser".

    works only if all of your mates are in a party. enjoy!

  2. #2

    Default

    yay! nice one.

    thank you for sharing
    [align=center]
    Deutscher Multi-Boxing Blog mit Tutorials, Einleitungen, Hardware-Setups ....
    Klickt hier und ihr werdet erleuchtet: http://beyond-tec.blogspot.com
    [/align]

  3. #3

  4. #4

  5. #5

  6. #6

    Default

    Can you not just use focus?
    The Zins - 10 Boxing
    Xzin, Azin, Bzin, Czin, Dzin
    Xyzin, Ayzin, Byzin, Cyzin, Dyzin
    Magtheridon - US

  7. #7

    Default

    Can you not just use focus?
    i think its nice not to use focus for follow, i would rather use focus for CC

  8. #8

    Default

    This addon don't use focus OR target. both will be available. It's only to follow a variable mainchar.

  9. #9

    Default

    confused on what to do to use ur addon

  10. #10
    Member Ughmahedhurtz's Avatar
    Join Date
    Jul 2007
    Location
    North of The Wall, South of The Line
    Posts
    7169

    Default

    Quote Originally Posted by wolviex
    confused on what to do to use ur addon
    See this line:

    [code:1]/script SendAddonMessage( "Multifollow", UnitName("player"), "RAID" );[/code:1]

    That sends a message to your other group members. If they have the mod installed, they will set their /follow target to whoever sent the message. So, bind that to a key/button on each machine. Want to switch leaders, just press that button on the machine you want to be leader and voila.

    At least, that's how it should work in theory. Haven't tested it myself. :P
    Now playing: WoW (Garona)

Similar Threads

  1. Replies: 9
    Last Post: 04-11-2009, 05:15 AM
  2. [Addon] Follow and Assist without focus or target
    By Zuri in forum Macros and Addons
    Replies: 4
    Last Post: 07-26-2008, 04:51 PM
  3. Replies: 5
    Last Post: 04-26-2008, 03:13 AM
  4. [WoW] Follow Spacing setting/addon?
    By Porc in forum Macros and Addons
    Replies: 8
    Last Post: 09-26-2007, 07:35 PM
  5. AddOn to follow your variable MainChar
    By tequilale in forum General WoW Discussion
    Replies: 0
    Last Post: 01-01-1970, 12:00 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
  •