Sorry, I haven't check EU servers.
To resolve problem:
Close WRobot.
Download wManager.dll and move (and replace) file in folder "\WRobot\Bin\".
Start WRobot again and skip update
Hello, can you read this: https://wrobot.eu/forums/topic/1381-repairinstall-wrobot/#comment-966
If you problem is not resolved, can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
Hello, can you read this: https://wrobot.eu/forums/topic/1381-repairinstall-wrobot/#comment-966
If you problem is not resolved, can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
Try code like (not tested)
ulong lastTarget = 0;
wManager.Events.InteractEvents.OnInteractPulse += (target, cancelable) =>
{
try
{
if (lastTarget == target)
return;
if (!Logging.Status.StartsWith("Farm"))
return;
var o = ObjectManager.GetObjectByGuid(target);
if (o.IsValid && o.Type == WoWObjectType.GameObject)
{
var go = new WoWGameObject(o.GetBaseAddress);
if (go.IsValid)
{
lastTarget = target;
cancelable.Cancel = true;
Interact.InteractGameObject(target);
Thread.Sleep(1500);
}
}
}
catch { }
};
(run this code one time per session)