Hello,
I have edited your profile with position of my current zone and it works fine, I am cannot tell you why you get this problem.
Can you try to remove "Quest.HasQuest(39495) &&" in IsCompleteCondition
Hello, you can try to use this c# code:
System.Threading.Thread.Sleep(robotManager.Helpful.Others.Random(0, wManager.Wow.ObjectManager.ObjectManager.Target.CastingTimeLeft - 350));
wManager.Wow.Helpers.SpellManager.CastSpellByNameLUA("Spell Name In English");
with spell option "Not Spell, Is C# code" (and custom condition to check if your spell is ready and good distance and ...)
Hello, read this guide: http://wrobot.eu/forums/topic/1381-repairinstall-wrobot/#comment-966
If your problem is not resolved post new thread with your log files and more details.
With lua code like
local targetExists = UnitExists("target"); TargetNearestEnemy(); FocusUnit("target"); if targetExists then TargetLastTarget(); else ClearTarget(); end
or
TargetNearestEnemy(); FocusUnit("target"); TargetLastTarget();
Hello, use this c# code:
if (wManager.Wow.Helpers.Party.IsInGroup())
{
var o = wManager.Wow.ObjectManager.ObjectManager.GetNearestWoWGameObject(wManager.Wow.ObjectManager.ObjectManager.GetWoWGameObjectByName("Guild Chest"));
if (o.IsValid)
{
wManager.Wow.Helpers.Interact.InteractGameObject(o.GetBaseAddress, true);
}
}
(replace "Guild Chest" by game object name how is appear in game (you can get object name when you put mouse over)
Hello, you can get number of mob kills in "wManager.Statistics.Kills".
The better way is to create plugin. But you can add this code in your custom profile:
int maxKill = 10;
if (wManager.Statistics.Kills >= maxKill &&
Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause &&
!Conditions.IsAttackedAndCannotIgnore)
{
try
{
Memory.WowMemory.Memory.GetProcess().Kill(); // if you want close game
}
catch {}
robotManager.Products.Products.ProductStop();
}