Jump to content

nicozo

Members
  • Posts

    58
  • Joined

  • Last visited

Posts posted by nicozo

  1. I saw on the forum that you can press a key on the keyboard with this code:

    robotManager.Helpful.Keyboard.PressKey(wManager.Wow.Memory.WowMemory.Memory.WindowHandle, System.Windows.Forms.Keys.Escape);

    is it possible to have the same code but the key remains pressed, and another code to tell him to release the key?

    Because you can set a key on the keyboard to disable the addon quickquest by letting it pressed, the time to interact with the npc

  2. hello matenia and thank you for the speed

    therefore, it will give:

     

    Thread t = new Thread(() =>
    {
     uint itemId = 60206;
     int questId = 26720;
     while (robotManager.Products.Products.IsStarted)
     {
      if (Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause)
      {
       if (!Quest.HasQuest(questId))
        break;
       if (ObjectManager.Target.IsValid && ObjectManager.Target.IsAlive && ObjectManager.Target.HealthPercent <= 50)
       {
        Fight.StopFight();
        ItemsManager.UseItem(itemId);
       }
      }
      Thread.Sleep(10000);
     }
    });
    t.Start();

     

    the problem is that the mob stun me, then the bot go to the next step

  3. Hello, I'm on a quest where you have to use an object on a mob, but only from a certain percentage. The problem is that the mob die too fast.

    Is there a code to force the bot to just auto attack to do the minimum damage to use this code then:

    Thread t = new Thread(() =>
    {
    	uint itemId = 62899;
    	int questId = 28000;
    	while (robotManager.Products.Products.IsStarted)
    	{
    		if (Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause)
    		{
    			if (!Quest.HasQuest(questId))
    				break;
    			if (ObjectManager.Target.IsValid && ObjectManager.Target.IsAlive && ObjectManager.Target.HealthPercent <= 25)
    			{
    				ItemsManager.UseItem(itemId);
    			}
    		}
    		Thread.Sleep(500);
    	}
    });
    t.Start();

    Thanks in advance <3

×
×
  • Create New...