Jump to content

Talamin

Elite user
  • Posts

    329
  • Joined

  • Last visited

Everything posted by Talamin

  1. Isn´t the float Precision a parameter which alters the Click by given yards? Like precision 3 means it´s altering the click by 3 yards?! Don´t know it exactly, so that´s my guess.
  2. Ich glaube das es nicht wirklich ein freies Plugin für so etwas gibt. Ich habe mal gesehen das jemand genau ein solches Plugin entwickelt hat, allerdings ist es nie public geworden, von daher stehen die Chancen dafür im Moment eher schlecht.
    Works out of the Box, quality Product as usual ? a long existent Problem get´s solved with this Plugin! It speed up the process of leveling dramatically and this since the first Alpha Release ?
    Gave it a quick Test on WOTLK Server with a level 33 Hunter, worked well. This is a nice idea btw. ?
  3. 07:53:57 - [Security] Pathfinder server seem down, pause bot for 20 secondes Same here! 1 out of 5 accounts.
  4. Well, it is suited actually for 5man Dungeons, so it should perform "ok" there. For Heroics i haven´t tested it but it should work, sometimes you have to adapt the Healing Treshholds. For Raids it could be that there will something come up. ? And about the Tranquility, i will give it another look. It should work but i think the Treshholds needs to be adjusted.
  5. Entering Treeform got completely lost by the updates ? So you have to enter it one time manually until the next patch. Tranquility is already in there, but i have to be honest, it pops not so often like i want it to have, so maybe this need some change.
  6. It does, just the Crusader is gone, while we did the Frameworkupdate. About the Blessing of Might: Thx for the report, will release an update in a minute.
  7. And about the Lock, i really don´t have the problem you described there. If you set the Treshhold for Wandusage he will use his Wand. And if you set another Pet then Imp he will cast it, when the Conditions are met like having Soulshards and so on. Tested it myself again with the latest Version and it worked fine for me.
  8. Thx for the compliment. We are doing our Best ? And Shaman Totem handling will get better and better, so if you have some points for improvement, feel free to tell us.
  9. You can make something like this: public static bool DebuffCheckOwner(Spell spell, bool owner = true) { List<Aura> DebuffList = ObjectManager.Target.GetAllBuff(); Aura aura = null; if(owner) { aura = DebuffList.FirstOrDefault(s => s.GetSpell.Name == spell.Name && s.Owner == ObjectManager.Me.Guid); if(aura != null) { return true; } } return false; }
  10. Dann poste doch mal deine Settings bitte ?
  11. Also bei der AIO WOTLK Fightclass castet er so lange bis er 20 Wasser hat und danach verbraucht er diese. Hast du da das gleiche Problem?
  12. Most, nearly all Bugs, Issues will be solved in the next large Update with a lot of speed improvements and a lot of behaviour changes. Maybe we can push it this weekend, we will see.
  13. Out of curiosity: Did you set the Force Mail List?
  14. I have the same setting enabled and I don’t have any problems. Can you be more exact? Class, level? Maybe a log?
  15. Wenn du auf einem Privat Server spielst auf dem eine Version läuft die Wrobot unterstützt, dann ja.
  16. You can build a List with all Party Members and then try to check each one of them: public static bool GroupCureSpellPoison(Spell spell) { if (!spell.KnownSpell || !spell.IsSpellUsable || !spell.IsDistanceGood || ObjectManager.Me.HaveBuff("Drink") || ObjectManager.Me.HaveBuff("Food")) { return false; } IEnumerable<WoWPlayer> members = Partystuff.getPartymembers().Where(o => o.IsAlive); if (members.Count() > 0) { foreach (WoWPlayer member in members) { if (!TraceLine.TraceLineGo(member.Position) && HasPoisonDebuff(member)) { Spells.Focus(spell, member); } } } return false; }
×
×
  • Create New...