Skip to content
View in the app

A better way to browse. Learn more.

WRobot

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Need help with Flightclass Focus target

Featured Replies

Hi gues, I am trying to make my LifeBloom be cast on my focus taget at all times. Need a string that sets Tank as my current focus target.

The code I got so fare is. Cant get it to work. Plz help me

#region get tanks
List<WoWPlayer> getTanks()
{
List<WoWPlayer> ret = new List<WoWPlayer>();
public bool CastSpell(string name, wManager.Wow.ObjectManager.WoWObject obj)
{
if (!string.IsNullOrWhiteSpace(name) && obj != null)
{
var tmp = wManager.Wow.ObjectManager.ObjectManager.Me.FocusGuid;
wManager.Wow.ObjectManager.ObjectManager.Me.FocusGuid = obj.Guid;
new wManager.Wow.Class.Spell(name).Launch(false, false, false, "focus");
wManager.Wow.ObjectManager.ObjectManager.Me.FocusGuid = tmp;
WoWPlayer p = new WoWPlayer(unit.GetBaseAddress);
ret.Add();
}
return false;
}
}
#endregion
  • Author

new update. Visual studio almost accept my code.

        #region get tanks
        List<WoWPlayer> getTanks()
        {
            List<WoWPlayer> ret = new List<WoWPlayer>();
            var u = Party.GetPartyHomeAndInstance().Where(p => p.GetDistance < 80 && p.IsValid && !TraceLine.TraceLineGo(p.Position));

            if (u.Count() > 0)
            {
                var p = ObjectManager.Me.FocusGuid;
                ObjectManager.Me.FocusGuid = unit;
                Lua.RunMacroText("/target focus");
                ObjectManager.Me.FocusGuid = p;
                WoWPlayer p = new WoWPlayer(unit.GetBaseAddress);
            }
            if (ret.Count() == 0)
            {
                Logging.WriteError("CANNOT HEAL TANK IS TOO FAR OR NOT SET!!");
                WoWPlayer v = new WoWPlayer(ObjectManager.Me.GetBaseAddress);
                ret.Add(v);
            }
            return ret;
        }
        #endregion

still cant get the Unit to work. Marks it as red!

Please help guys. will be the best restro druid flightclass if it just works.

Druid healing in 3.3.5a ported from 6.x by ME.cs

Create an account or sign in to comment

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.