Ok, try to use quest type "OverridePulseCSharpCode" and use code like :
new Spell("Death Gate", false).Launch();
Thread.Sleep(Usefuls.Latency + 500);
if (ObjectManager.GetNearestWoWGameObject(ObjectManager.GetWoWGameObjectByEntry(190942)).GetDistance < 10)
wManager.Wow.Bot.Tasks.GoToTask.ToPositionAndIntecractWithGameObject(ObjectManager.Me.Position, 190942);
return true;
@joseocnejo
Can you try that:
(Windows 10 only):
And if you can also try to run: https://www.microsoft.com/en-us/download/details.aspx?id=30135
And https://blogs.msdn.microsoft.com/astebner/2008/08/28/net-framework-cleanup-tool-users-guide/ ( dotnetfx_cleanup_tool )
Hello,
For download and use trial version read this:https://wrobot.eu/forums/topic/2972-download-wrobot-for-tbc/
For start guide: https://wrobot.eu/forums/topic/3633-getting-started-with-wrobot-video/
2017-07-26_20-32-37.mp4 He works (Wotlk),
If you want you can increment reactivity of eventlua, for that put lower valua at "wManager.wManagerSetting.CurrentSetting.EventsLuaWithArgsWaitTime"
Hello,
I don't get this problem, and few update ago I added time before blacklist vendor. Can you share log file of WRobot session with this problem please (with WRobt updated)
Hello, can you read this: https://wrobot.eu/forums/topic/1381-repairinstall-wrobot/#comment-966
If you problem is not resolved, request help on forum with your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
Try code like
EventsLuaWithArgs.OnEventsLuaWithArgs += (id, args) =>
{
if (id == wManager.Wow.Enums.LuaEventsId.UNIT_SPELLCAST_START)
{
for (int i = 0; i < args.Count; i++)
{
Logging.Write("Arg" + (i + 1) + " contains: " + args[i]);
}
}
};
(your code probably crash a lot of time)