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.

Wrobot does't press keybind from " my macros" setting

Featured Replies

So i set in "my macros" wrobot to press specific button, in combat it only presses once, when i start wrobot and thats it, when not in combat(in city for example, it works well)
below settings.
obraz.png.a4150cff97f4f834f4990094767d09ab.png

Hello,

Prefer to add it to your fightclass, or use a plugin like :

using robotManager.Helpful;
using System.Threading;
using wManager.Wow.Helpers;

public class AutoPressKey : wManager.Plugin.IPlugin
{
    private bool _isRunning;

    public void Initialize()
    {
        _isRunning = true;
        PressKeyThread();
    }

    public void Dispose()
    {
        _isRunning = false;
    }

    private void PressKeyThread()
    {
        while (_isRunning)
        {
            if (Conditions.InGameAndConnected)
            {
                Keyboard.PressKey(wManager.Wow.Memory.WowMemory.Memory.WindowHandle, "1");
            } 
            Thread.Sleep(1000);
        }
    }

    public void 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.