Talamin
Elite user-
Posts
329 -
Joined
-
Last visited
Content Type
Forums
Articles
Bug Tracker
Downloads
Store
Everything posted by Talamin
-
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.
-
-
[Free] Project Wholesome - WOTLK Fightclasses (all 10 included)
Talamin commented on Talamin's file in Fight Classes - Wotlk
-
you can try the AIO
-
-
07:53:57 - [Security] Pathfinder server seem down, pause bot for 20 secondes Same here! 1 out of 5 accounts.
-
[Free] Project Wholesome - WOTLK Fightclasses (all 10 included)
Talamin commented on Talamin's file in Fight Classes - Wotlk
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. -
[Free] Project Wholesome - WOTLK Fightclasses (all 10 included)
Talamin commented on Talamin's file in Fight Classes - Wotlk
-
[Free] Project Wholesome - WOTLK Fightclasses (all 10 included)
Talamin commented on Talamin's file in Fight Classes - Wotlk
-
[Free] Project Wholesome - WOTLK Fightclasses (all 10 included)
Talamin commented on Talamin's file in Fight Classes - Wotlk
-
[Free] Project Wholesome - WOTLK Fightclasses (all 10 included)
Talamin commented on Talamin's file in Fight Classes - Wotlk
-
[Free] Project Wholesome - WOTLK Fightclasses (all 10 included)
Talamin commented on Talamin's file in Fight Classes - Wotlk
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. -
[Free] Project Wholesome - WOTLK Fightclasses (all 10 included)
Talamin commented on Talamin's file in Fight Classes - Wotlk
-
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; }
-
Dann poste doch mal deine Settings bitte ?
-
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?
-
[Free] Project Wholesome - WOTLK Fightclasses (all 10 included)
Talamin commented on Talamin's file in Fight Classes - Wotlk
-
-
Bump again, just to be sure ?
-
[Free] Project Wholesome - WOTLK Fightclasses (all 10 included)
Talamin commented on Talamin's file in Fight Classes - Wotlk
-
[Free] Project Wholesome - WOTLK Fightclasses (all 10 included)
Talamin commented on Talamin's file in Fight Classes - Wotlk
-
Wenn du auf einem Privat Server spielst auf dem eine Version läuft die Wrobot unterstützt, dann ja.
-
Decurse Group debuffs and switch target
Talamin replied to dripcommander's topic in Fight Classes assistance
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; }