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.

how do i make quester set hearthstone

Featured Replies

Something like

var bindLocation = Lua.LuaDoString("hearth=GetBindLocation();", "hearth");
while (bindLocation != "Goldshire")
{
	wManager.Wow.Bot.Tasks.GoToTask.ToPositionAndIntecractWithNpc(innkeeper.Position, innkeeperEntry);
 	Lua.LuaDoString("SelectGossipOption(1)");	// WRobot has a command for this too, I forgot it
	Lua.RunMacroText("/click StaticPopup1Button1");
}

I can't remember what I did but thats the basic idea.

2 hours ago, skeletonboy360 said:

Something like


var bindLocation = Lua.LuaDoString("hearth=GetBindLocation();", "hearth");
while (bindLocation != "Goldshire")
{
	wManager.Wow.Bot.Tasks.GoToTask.ToPositionAndIntecractWithNpc(innkeeper.Position, innkeeperEntry);
 	Lua.LuaDoString("SelectGossipOption(1)");	// WRobot has a command for this too, I forgot it
	Lua.RunMacroText("/click StaticPopup1Button1");
}

I can't remember what I did but thats the basic idea.

Should add some wait time between commands especially after last command so if there is lag it wont redo same crap

  • 1 year later...

Old topic. Wanted to leave a post since well fuck it? lol.

Setting your Hearthstone. (This code can be used for many many other situations.) my own making,

// How to set your Hearthstone, the pro way

// Step 1 - Set IF Statment.
IF Statment  IF code in the quest order editor IF (link code below)

Lua.LuaDoString<string>("bindlocation = GetBindLocation(); return bindlocation;") != "Orgrimmar"

// Step 2 - RUNCODE - Change the Location + NPC ID of your new innkeeper (using the helper tools)

var position = new Vector3(1633.99f, -4439.37f, 15.43382f);
int npcEntryId = 6929;
{
	if (wManager.Wow.Bot.Tasks.GoToTask.ToPositionAndIntecractWithNpc(position, npcEntryId))
	System.Threading.Thread.Sleep(3000 * 2);
 	Lua.LuaDoString("GossipTitleButton1:Click();");
	System.Threading.Thread.Sleep(2000 * 2);
	Lua.LuaDoString("StaticPopup1Button1:Click();");
	System.Threading.Thread.Sleep(3000 * 2);
	Lua.LuaDoString("StaticPopup1Button1:Click();");
	Lua.LuaDoString("CloseMerchant()");
	System.Threading.Thread.Sleep(3000 * 2);
    if (wManager.Wow.Bot.Tasks.GoToTask.ToPositionAndIntecractWithNpc(position, npcEntryId))
	System.Threading.Thread.Sleep(3000 * 2);
	Lua.LuaDoString("GossipTitleButton2:Click();");
	System.Threading.Thread.Sleep(3000 * 2);
	Lua.LuaDoString("StaticPopup1Button1:Click();");
	System.Threading.Thread.Sleep(3000 * 2);
	Lua.LuaDoString("StaticPopup1Button1:Click();");
	Lua.LuaDoString("CloseMerchant()");
}

// ENDIF -- Add an ENDIF Statment.
//This will force the bot to run to the npc location, it will do each step every 2 seconds (click the bind option) And a 2nd timeincase the bind is on button 2.

 

  • 1 year later...

I thought id share a better, cleaner way to set HearthStone.

var Stone = Lua.LuaDoString<string>("bindlocation = GetBindLocation(); return bindlocation;");
		if (Stone != "LocationName" && wManager.Wow.Bot.Tasks.GoToTask.ToPositionAndIntecractWithNpc(new Vector3(x, y, z), NpcID))
		{
			Usefuls.SelectGossipOption(GossipOptionsType.binder);
			Thread.Sleep(100);
			Lua.LuaDoString("StaticPopup1Button1");
			Lua.LuaDoString("CloseMerchant()");
		}

 

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.