Jump to content

Vindikaar Console


createdby

Recommended Posts

Hi everyone
I am currently writing the Argus questline and I have a problem

how did the bot use the Vindikaar Console?

WoWScrnShot_121217_134758.thumb.jpg.44df0c6d4440530cde721b6331e26814.jpg


and how does he click my first point?

WoWScrnShot_121217_134810.thumb.jpg.ae6747c5351276306cbd80db788d414a.jpg

 

other Problem

Waypoint on Vindikaar no aviable?

 

thanks for answer

best gregards

Link to comment
Share on other sites

The only way I found to be able to do it is with

 

robotManager.Helpful.Mouse.CurseurWindowPercentagePosition(wManager.Wow.Memory.WowMemory.Memory.WindowHandle, 43, 58);
robotManager.Helpful.Mouse.ClickLeft(); 

 

Just have to change the cords depending on which point you want to click on. 

Bad part is it will actually move your mouse if you are doing something in another window. 

Link to comment
Share on other sites

thanks for this info

Use interact? 

i have tested with use interact with Npc  and the bot use the console, but i have no idea for click the point on the map

robotManager.Helpful.Mouse.CurseurWindowPercentagePosition(wManager.Wow.Memory.WowMemory.Memory.WindowHandle, 43, 58);
robotManager.Helpful.Mouse.ClickLeft();  

how did I use that? With RunCode?

Edited by createdby
Link to comment
Share on other sites

I use RunCode with this:

Thread t = new Thread(() =>
{
 int questId = 48199;
 while (robotManager.Products.Products.IsStarted)
 {
  if (Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause)
  {
   if (!Quest.HasQuest(questId))
      break;
   {
robotManager.Helpful.Mouse.CurseurWindowPercentagePosition(wManager.Wow.Memory.WowMemory.Memory.WindowHandle, 43, 58);
robotManager.Helpful.Mouse.ClickLeft(); 
   }
  }
  Thread.Sleep(5000);
  }
 });
t.Start();

Then I interact with NPC to bring up the map. 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...