Updated Laosy.cs... changed distance from 70 to 50 yards
The Thunder Below - no idea how to make bot to come to dragon.. a lot of bad staff on the floor. Its not so easy but will try
He knows what he's doing - need to make quest behavior for it
Offering a Warm Welcome - never seen before
it would help him if you posted your logs since basically what you posted tells him nothingStarting the bot!
Changing current profile to Golden Lotus Dailies
[Singular] Your Level 90 Tauren Blood DeathKnight Build is
[Singular] ... running the Questing bot Solo in Vale of Eternal Blossoms
[Singular] Context changed, re-creating behaviors
[Profile Message]: Golden Lotus Daily Quests Profile Loaded
Could not create current behavior in quest bot; exception was thrown
Bot Stopped! Reason: Could not create current behavior in quest bot, exception was thrown.
probably something I have done wrong, but any idea one how to fix it?
He beat me by a few seconds QQWithout log i cant tell you what you are doing wrong
public WoWUnit Tormentor
{
get
{
return ObjectManager.GetObjectsOfType<WoWUnit>().FirstOrDefault(u => u.Entry == 59238 && u.Distance < 15 && !u.IsDead);
}
}
public WoWUnit Behemoth
{
get
{
return ObjectManager.GetObjectsOfType<WoWUnit>().FirstOrDefault(u => u.Entry == 65824 && u.Distance < 30);
}
}
if(Behemoth!=null)
{
//
}
ObjectManager.GetObjectsOfType<WoWUnit>().Where(u => u.Entry == SomeID && u.Distance < 15 && !u.IsDead).OrderBy(u => u.Distance).FirstOrDefault();
OR, return it as an IEnumerable,
ObjectManager.GetObjectsOfType<WoWUnit>().Where(u => u.Entry == SomeID && u.Distance < 15 && !u.IsDead).OrderBy(u => u.Distance);
and in your code do
if(SomeUnit.Any())
<CustomBehavior File="LoadProfile" ProfileName="..\Vego\AugustCelestialDaily.xml" />