Skip to content
View in the app

A better way to browse. Learn more.

WRobot

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

ignore macros?

Featured Replies

How to ignore macros press in Easy Quests editor?

I want macro to stop working for a while until I give it instructions to continue working.

  • Author

Does anyone know how to suspend the work of MyMcros in EasyQuestsEditor? What command should I enter?

I tried wManager.CurrentSetting.IgnoreMacros = true.

It doesn't seem to work.

     // off before quest
        wManager.wManagerSetting.CurrentSetting.MyMacro1.Actif = false;
        wManager.wManagerSetting.CurrentSetting.MyMacro2.Actif = false;
        wManager.wManagerSetting.CurrentSetting.MyMacro3.Actif = false; //4 5 6 etc

 

        //on after quest
        wManager.wManagerSetting.CurrentSetting.MyMacro1.Actif = true;
        wManager.wManagerSetting.CurrentSetting.MyMacro2.Actif = true;
        wManager.wManagerSetting.CurrentSetting.MyMacro3.Actif = true; //4 5 6 etc

Use Runcode before and after quest, where u need off macros. Shoud work

instead of using macros with turn off, turn on (your gonna get some errors no matter what,) use this template for make your own plugin

using robotManager.Helpful;
using robotManager.Products;
using System;
using System.Threading;
using System.Windows.Forms;
using wManager.Plugin;
using wManager.Wow.Helpers;
using wManager.Wow.ObjectManager;

public class Main : IPlugin
{
    bool Launched;
	int timer = 1000;
	string PluginName = "[Plugin]: ";

    public void Initialize()
    {
        Launched = true;
		while (Launched && Products.IsStarted)
		{
			try
			{
				if (Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause)
				{
					
					if (!ObjectManager.Me.InCombat && !ObjectManager.Me.IsDead)
					{
						Lua.RunMacroText("Code here");

					}
					
				}
			}
			catch (Exception e)
			{
				Logging.WriteError(PluginName + "there was an error: " + e);
			}
			Thread.Sleep(timer);
		}
	}

    public void Dispose()
    {
        Launched = false;
    }

    public void Settings()
    {
		MessageBox.Show(PluginName + "There are no settings.");
    }
}

 

Create an account or sign in to comment

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.