• Warhammer Online Addons
  • Warhammer Online
  • Average Rating:

  • Your Rating

  • Share
  • Report Abuse

FollowMyLead

 
Project Updated:
Files Updated: Fri, Oct 16 2009
Supports Game Version: 1.3.1
Category: Chat & Communication, and Combat
Tags:

[Edit Tags]

Project Manager: Aiiane
Additional Authors: No additional authors
Current Version: 1.4
License: MIT License
Development Site: CurseForge.com
Avg Daily DL (last 30 days): 15
Downloads Total: 8,719
Favorites: 14
Comments: 13
  • About FollowMyLead
  •  

FollowMyLead gives you an easy way to place a marker on a specific unit, to make that unit easy to find again in a crowd/around obstacles.

If you have LibSlash installed, simply use the command /leader while targeting someone, or /leader Name, to set who the symbol should be put on (/fml or /followmylead will also work). (If specifying a name, the symbol won't show up until you next mouseover or select that person.)

If you don't have LibSlash, use /script FollowMyLead() instead.

To clear the symbol, simply use the command while not targeting anyone, and without specifying a name.

  • Downloads (5)
  •  
File Name Release Type Game Version Downloads Date
Addon Curse.com Beta 2.3.3 0 9/29/2008
  File Name Release Type Game Version Downloads Date  
  FollowMyLead 1.4 Release 1.3.1 1,977 10/16/2009
  FollowMyLead 1.3 Release 1.30b 1,423 8/18/2009
  FollowMyLead 1.2 Release 1.2.1 1,916 6/16/2009
  FollowMyLead 1.1 Release 1.1.1 2,341 4/16/2009
  FollowMyLead 1.0 Release Beta 3.0 1,061 11/9/2008
  • 1 page(s)
  • Comments

Add Comment  

Add

You need to login or register to post.

Benefits of Registration

  • Interact with hundreds of thousands of other gamers on an open social network.
  • Post your stories, news, images, videos, and other content to share.
  • Create a network with your fellow gamers or join an existing one.
  • Gain reputation for everything you do.
  • oamer said

    Just need this on a few targets and this mod is golden

    Reply Report Permalink
  • Hello

    Can you add another cross like /fml1 /fml2 /fml3, to see different guildmates in different situations?

    Thanks à lot

    Reply Report Permalink
  • Xanthian said

    is it possile in anyway to change the icon, make it bigger, change the colour etc.?

    Reply Report Permalink
  • IDispatch said

    The icon is in fact some text and in this case "+".
    You can change the text at the top of the .lua file:
    LabelSetText("FollowMyLeadText", L"+")
    Setting the text to "|||||" may provide a bigger "icon".

    You can change the color in the .xml file with red/green/blue values:


    As for the size I imagine you can change it in the .xml file in:

    Reply Report Permalink
  • IDispatch said

    Hum, the forum swallowed the xml.
    For color:
    <Color r="255" g="0" b="255" a="255" />
    For the size:
    <Label name="$parentText" font="font_heading_huge"

    Reply Report Permalink
  • IDispatch said

    Would it be possible to have 2 markers for 2 leaders?
    We usually have a main leader in one warband and a secondary leader in another warband and if you are in the second warband you may need to switch frequently between the leaders.

    Also would it be possible to setup a macro to stick to a leader without its name hardcoded (/target leader1, /follow) ?

    Reply Report Permalink
  • IDispatch said

    I created a function to add at the end of FollowMyLead.lua which allows you to macro the /follow command: /script FollowMyLead.StickLeader()

    I couldn't find a way to do this in one click so you have to click once to target your leader (there's a little delay) and to click another time to follow him.
    As a bonus, if you have no leader set, the first click will assign your target as leader and will issue the /follow command.
    To clear your leader you still have to type /fml with no target.

    In plain english here is what the function does:
    if no leader is set then set my current target as leader.
    if my target is my leader then follow him
    else target my leader



    function FollowMyLead.StickLeader()
    if FollowMyLead.target == nil then
    FollowMyLead.SetTarget()
    end

    if FollowMyLead.target == nil then return end

    TargetInfo:UpdateFromClient()

    if (TargetInfo:UnitName("selffriendlytarget")):match(L"([^^]+)^?([^^]*)") == FollowMyLead.target then
    SystemData.UserInput.ChatText = L"/follow"
    BroadcastEvent(SystemData.Events.SEND_CHAT_TEXT)
    else
    SystemData.UserInput.ChatText = L"/target "..FollowMyLead.target
    BroadcastEvent(SystemData.Events.SEND_CHAT_TEXT)
    end
    end

    Reply Report Permalink
  • This addon is excellent. i think it is legitimate, but I am LB and this is a must have.

    Reply Report Permalink
  • Fascion said

    Uh, this mod seems like it might walk the thin line of legitimacy. This basically amounts to being able to see through walls with little more than a /command.

    Now, I notice you seem to only be able to have this active on one person. Is this a limitation of the game or the mod. If the mod, then this could get out of hand quickly, flagging everyone you see to be marked in Open RVR so that no one is safe from your watchful eye.

    Reply Report Permalink
  • Fascion said

    Apparently this was a bit buggy the first time I played with it. Seems to be working as intended now after a CTD.

    So, now I can track 6 different targets... through walls... up to about 250-300 ft away. It seems to require that you at least get a glimpse of the target before it will track once you have gone out of range, so its not quite as abuse-able as expected.

    But again, I must ask... what is to stop someone from modding this mod to track not 6... but 60 targets?

    Reply Report Permalink
  • Can't seem to get it to work for me. I've done /leader and /fml and nothing happens. The only addon I have that might conflict with this is BuffHead since it does the same thing for debuffs. I have LibSlash updated.

    Reply Report Permalink
  • Oh...this only works on Players, not NPCs.

    Reply Report Permalink
  • But this doesn't work in a macro...I tried it on a player!

    Reply Report Permalink
  • kbk said

    it does work on NPC's fyi

    you might have installed it incorrectly , it shouldnt conflict with buffhead

    to test it out just target an npc and type in /leader in the chat box and/or /script FollowMyLead() . (case sensetive). If neither of those shows the pink cross above the npc then your install didnt work properly.

    Reply Report Permalink
  • unfever said

    marking in my war? no wai! screenshit or it didnt happen

    Reply Report Permalink
  • Tafka said

    Is it possible to set up the Curse Client to subscribe to an author and just install all their stuff? Could we call it the Aiiane button?

    Reply Report Permalink
  • Nice work. I was thinking of writing something like this except for party members (to make it easy for healers to follow your group if you are a healer).

    Reply Report Permalink
  • kbk said

    nice works well
    probs would be good to give people a little pic of what the icon looks like
    and maybe a brief guide as to how to turn it into a macro so that it can be put on the action bar for quick activation for those that are unsure about macros (got mine to work after i realised you needed the /script command not the /say /leader hehe)

    Reply Report Permalink
  • Bobloblaw said

    Nice one aiiane, is it possible to get multiple targets tho?

    Does this work on enemies as well?

    Reply Report Permalink
  • nofic said

    First post :)
    love all your mods

    Reply Report Permalink
  • 1 page(s)
  • Addon Packs Containing FollowMyLead

Most Downloads / Day

FollowMyLead has not been added to any Addon Packs yet.

  • Similar Addons
  •  

Average downloads per day

  1. 73 Twister Buffs & Debuffs, Action Bars...
  2. 63 Warhammer Scrolling Combat Text Combat
  3. 41 Calling Combat, and PvP
  4. 39 Aura PvP, Buffs & Debuffs, and...
  5. 32 Dammaz Kron PvP, and Combat