September 16, 20178 yr Can someone provide a guide as to how to get quester to use a vehicle to kill mobs for a quest instead of running the normal fight class? I have some experience getting the bot to push certain buttons, but not while being in its own vehicle which can move and have several buttons to click.
September 16, 20178 yr Author Also have problem with it not wanting to target mobs I need to kill. It will black list them for 30 sec and then do circles on top of them. If i target manually it will kill though.
September 22, 20178 yr Use wManager.Wow.Helpers.ClickOnTerrain.Spell(uint spellId, Vector3 vector3, bool waitCasting = true, bool stopMove = true); wManager.Wow.Helpers.ClickOnTerrain.Pulse(Vector3 vector3);
October 15, 20178 yr Author On 9/22/2017 at 5:41 AM, Droidz said: Use wManager.Wow.Helpers.ClickOnTerrain.Spell(uint spellId, Vector3 vector3, bool waitCasting = true, bool stopMove = true); wManager.Wow.Helpers.ClickOnTerrain.Pulse(Vector3 vector3); Sorry for the long reply back, been busy on my end. Thread t = new Thread(() => { uint spellId = 248292; int questId = 47992; while (robotManager.Products.Products.IsStarted) { if (Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause) { if (!Quest.HasQuest(questId)) break; if (ObjectManager.Target.IsValid && ObjectManager.Target.IsAlive) { wManager.Wow.Helpers.ClickOnTerrain.Spell(uint spellId, Vector3 vector3, bool waitCasting = true, bool stopMove = true); wManager.Wow.Helpers.ClickOnTerrain.Pulse(Vector3 vector3); } } Thread.Sleep(700); } }); t.Start(); Gives the error: Quote [E] 12:09:26 - Compilator Error : warning CS1685: The predefined type 'System.Runtime.CompilerServices.ExtensionAttribute' is defined in multiple assemblies in the global alias; using definition from 'c:\Windows\Microsoft.NET\Framework\v4.0.30319\mscorlib.dll' c:\Users\Michael\AppData\Local\Temp\lgfqpqo0.0.cs(39,48) : error CS1525: Invalid expression term 'uint' c:\Users\Michael\AppData\Local\Temp\lgfqpqo0.0.cs(39,55) : error CS1002: ; expected c:\Users\Michael\AppData\Local\Temp\lgfqpqo0.0.cs(39,55) : error CS1525: Invalid expression term ',' c:\Users\Michael\AppData\Local\Temp\lgfqpqo0.0.cs(39,57) : error CS1002: ; expected c:\Users\Michael\AppData\Local\Temp\lgfqpqo0.0.cs(39,74) : error CS1041: Identifier expected; 'bool' is a keyword c:\Users\Michael\AppData\Local\Temp\lgfqpqo0.0.cs(39,99) : error CS1041: Identifier expected; 'bool' is a keyword c:\Users\Michael\AppData\Local\Temp\lgfqpqo0.0.cs(39,119) : error CS1002: ; expected c:\Users\Michael\AppData\Local\Temp\lgfqpqo0.0.cs(39,119) : error CS1525: Invalid expression term ')' c:\Users\Michael\AppData\Local\Temp\lgfqpqo0.0.cs(40,51) : error CS1026: ) expected c:\Users\Michael\AppData\Local\Temp\lgfqpqo0.0.cs(40,58) : error CS1002: ; expected c:\Users\Michael\AppData\Local\Temp\lgfqpqo0.0.cs(40,58) : error CS1525: Invalid expression term ')' Needless to say, I think I'm using it wrong? Thread t = new Thread(() => { int questId = 47992; while (robotManager.Products.Products.IsStarted) { if (Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause) { if (!Quest.HasQuest(questId)) break; if (ObjectManager.Target.IsValid && ObjectManager.Target.IsAlive) { Lua.LuaDoString("OverrideActionBarButton1:Click()"); } } Thread.Sleep(1600); } }); t.Start(); The above code does get it to work, but only when it targets an enemy or itself. It does not auto target demons that it comes in combat with, and so will still do circles.
December 2, 20178 yr Author Bump. Still looking for assistance on this. Still cannot figure out how to get it to target the demons it pulls or aggroes or to make it stop spinning in circles.
December 4, 20178 yr Thread t = new Thread(() => { uint spellId = 248292; int questId = 47992; while (robotManager.Products.Products.IsStarted) { if (Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause) { if (!Quest.HasQuest(questId)) break; if (ObjectManager.Target.IsValid && ObjectManager.Target.IsAlive) { wManager.Wow.Helpers.ClickOnTerrain.Spell(spellId, ObjectManager.Target.Position, true, false); wManager.Wow.Helpers.ClickOnTerrain.Pulse(ObjectManager.Target.Position); } } Thread.Sleep(700); } }); t.Start();
December 6, 20178 yr Author That makes it worse. It still only targets itself (no clearing target), does not target mob in combat with it, consistently runs to the mob, making it run in tiny circles, but now it no longer uses the abilities when I manually target mobs.
Create an account or sign in to comment