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.

Useful scripts

Featured Replies

  • Author

Get wow bouton/window name:

/run print(GetMouseFocus():GetName())

or

/run DEFAULT_CHAT_FRAME:AddMessage(GetMouseFocus():GetName())

Copy this script in wow chat, put your mouse over an button and press enter key. In wow chat appear button name (you can use this like "/click TheButtonName" or "TheButtonName:Click()" or "RunMacroText("/click TheButtonName")" if you use it in fightclass).

You can also use macro:

/framestack

More info: http://wow.gamepedia.com/Framestack 

  • Author

Get base (parent) spell name and the id:

 

Launch this script (in tab "Tools" > "Development Tools" > copy script in textbox and click on button "Lua (return value in 'ret')).

for i=1,1000 do
	local spellName = GetSpellBookItemName(i, BOOKTYPE_SPELL);
	if not spellName then break; end
	local _, tid = GetSpellBookItemInfo(i, "player");
	local spellNameReal = GetSpellInfo(tid);
	if  spellNameReal and spellName ~= spellNameReal then
		print(spellName .. " > " .. "\124cFF4FF763" .. spellNameReal .. " (id: " .. tid .. ")");
	else
		print(spellName .. " (id: " .. tid .. ")");
	end
end 
This write in wow chat list of spells of your spellbook and if exist (in green) the parent spell name. (By sample, http://www.wowhead.com/spell=12294/mortal-strike is the parent of http://www.wowhead.com/spell=78/heroic-strike )
 
ps: Now normally WRobot found automatically the childrens/parents spells.
  • 1 month later...

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.