TwoBoxToolkit is an addon that has this built in. Check it out and see how that handles follow breaking...Originally Posted by 'mmcookies',index.php?page=Thread&postID=105805#po st105805
-j
TwoBoxToolkit is an addon that has this built in. Check it out and see how that handles follow breaking...Originally Posted by 'mmcookies',index.php?page=Thread&postID=105805#po st105805
-j
Personally at this point I'd check Jamba-Follow. It's very good at notifications of follow failure.
[> Sam I Am (80) <] [> Team Doublemint <][> Hexed (60) (retired) <]
[> Innerspace & ISBoxer Toolkit <][> Boxing on Blackhand, Horde <]
"Innerspace basically reinvented the software boxing world. If I was to do it over again, I'd probably go single PC + Innerspace/ISBoxer." - Fursphere
Nah, after having some room to think about the features I need, I'm probably just going to make the AutoFollowStatusText more noticeable (bigger and brighter).Originally Posted by 'zanthor',index.php?page=Thread&postID=160783#post 160783
Someguy: "You must really like playing with yourself"
Me: "OH HELLS YEAH!"
Success! This is the extremely simple addon I wrote just now.
I run the 4 shammies on a second comp and monitor so this is perfect for me.
It makes the follow text big and bright yellow on my slave screens (with shadowed outline).
On breaking follow, it displays huge red text that fades away as normal.
PHP Code:
function PM_BigFollow_OnLoad()
this:RegisterEvent("AUTOFOLLOW_BEGIN");
this:RegisterEvent("AUTOFOLLOW_END");
end;
function PM_BigFollow_OnEvent(event)
if PM_IsSlave(UnitName("player")) then
if event == "AUTOFOLLOW_BEGIN" then
AutoFollowStatusText:SetFontObject(NumberFont_Outline_Huge);
AutoFollowStatusText:SetTextHeight(40);
AutoFollowStatusText:SetTextColor(1.0, 1.0, 0.0, 1.0);
elseif event == "AUTOFOLLOW_END" then
AutoFollowStatusText:SetFontObject(NumberFont_Outline_Huge);
AutoFollowStatusText:SetTextHeight(80);
AutoFollowStatusText:SetTextColor(1.0, 0.0, 0.0, 1.0);
end;
end;
end;
Someguy: "You must really like playing with yourself"
Me: "OH HELLS YEAH!"
Connect With Us