Jump to content

Marsbar

Elite user
  • Posts

    411
  • Joined

  • Last visited

Bug Report Comments posted by Marsbar

  1. Nah some ruski server that some of my testers are on called wowcircle
    A lot of broken things on it so wouldn't be surprised if it was the server

  2. Sounds like you switched characters without restarting wrobot, if you were on a mana class before and didn't restart it still thinks the char has a mana bar instead of rage bar.

    Nevermind, just saw your log file, it isn't that.

  3. On 4/7/2018 at 5:37 PM, Findeh said:

    Btw, it's not just about regenerane. Conditions about mana are broken as well. For example inside my FC i'm checking is there enough mana to heal and then turn back to a bear. If yes, then lets heal, if no, better fight to the death. And as a result of that bug, he always fight to the death, because thinks that he got no mana for healing and shapeshifting.

    Not at home atm and cant check but you could use lua to get mana and use heals based on that. The below code is written from memory so may not work.. I'll come back to update it in the evening

    var druidMana = Lua.LuaDoString<decimal>(return manaPercent = UnitPower("player", 0) / UnitPowerMax("player", 0) * 100);

     

  4. foreach (WoWUnit Mob in ObjectManager.GetObjectWoWUnit().Where(x => obj.Contains(x.Name)))
                        {
                            Radar3D.DrawCircle(Mob.Position, 1f, System.Drawing.Color.Yellow, true);
                            Radar3D.DrawLine(Mob.Position, ObjectManager.Me.Position, System.Drawing.Color.Yellow);                        
                            //Radar3D.DrawString(Mob.Name, Mob.Position, 5f, System.Drawing.Color.Yellow, 255, System.Drawing.FontFamily.GenericMonospace);
                        }

    Default radar 3d is also not correct for me

×
×
  • Create New...