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.

Use hearthstone when bags are full

Featured Replies

Hello, use plugin like HearthstoneToGoToTown.cs (not tested):

using System;
using System.ComponentModel;
using System.Threading;
using System.Windows.Forms;
using robotManager.Events;
using robotManager.FiniteStateMachine;
using robotManager.Helpful;
using wManager.Wow.Helpers;
using wManager.Wow.ObjectManager;

public class Main : wManager.Plugin.IPlugin
{
    public void Initialize()
    {
        FiniteStateMachineEvents.OnRunState += FiniteStateMachineEventsOnOnRunState;
        Logging.Write("[HearthstoneToGoToTown] Loadded.");
    }

    public void Dispose()
    {
        Logging.Write("[HearthstoneToGoToTown] Disposed.");
    }

    public void Settings()
    {
        MessageBox.Show("[HearthstoneToGoToTown] No settings for this plugin.");
    }

    private void FiniteStateMachineEventsOnOnRunState(Engine engine, State state, CancelEventArgs cancelable)
    {
        try
        {
            if (string.IsNullOrWhiteSpace(state.DisplayName) || 
                state.DisplayName != "To Town")
                return;

            Logging.WriteDebug("[HearthstoneToGoToTown] Use Hearthstone.");
            var o = wManager.wManagerSetting.CurrentSetting.CloseIfPlayerTeleported;
            wManager.wManagerSetting.CurrentSetting.CloseIfPlayerTeleported = false;
            MovementManager.StopMove();
            Thread.Sleep(Usefuls.Latency + 150);
            Lua.LuaDoString("local itemName, _, _, _, _, _, _, _ = GetItemInfo(6948); RunMacroText('/use ' .. itemName);");
            Thread.Sleep(Usefuls.Latency + 500);
            if (ObjectManager.Me.IsCast)
            {
                Usefuls.WaitIsCasting();
                Thread.Sleep(Usefuls.Latency + 10000); // wait load screen
            }
            wManager.wManagerSetting.CurrentSetting.CloseIfPlayerTeleported = o;
        }
        catch (Exception e)
        {
            Logging.WriteError("[HearthstoneToGoToTown] " + e);
        }
    }
}

 

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.