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.

Snippets codes for quest profiles

Featured Replies

  • Author

Ignore the attack of a specific mob

if (wManager.Wow.ObjectManager.ObjectManager.BlackListGetUnitAttackPlayerGuidTime.ContainsKey(CurrentTarget.Guid))
    wManager.Wow.ObjectManager.ObjectManager.BlackListGetUnitAttackPlayerGuidTime.Remove(CurrentTarget.Guid);
wManager.Wow.ObjectManager.ObjectManager.BlackListGetUnitAttackPlayerGuidTime.Add(CurrentTarget.Guid, System.DateTime.Now + System.TimeSpan.FromMinutes(5)); 

(this code ignore mob attack for 5 minutes)

  • 3 years later...

Different way to buy items

var position = new Vector3(9684.1, -7363.6, 11.93153);
int npcEntryId = 16618;

{
    if (wManager.Wow.Bot.Tasks.GoToTask.ToPositionAndIntecractWithNpc(position, npcEntryId))
    {
        Usefuls.SelectGossipOption(GossipOptionsType.vendor);
        {
            Thread.Sleep(2000);
        }

        Lua.RunMacroText("/run BuyMerchantItem(8,28)"); //8 that an item position in vendor window, 28 amound of items to buy
    }
}

 

Talent asign for WOTLK via quest order editor

RunMacroText("/click TalentMicroButton") opens talent tree
RunMacroText("/click PlayerTalentFrameTab3") the talent tree, can be 1,2,3 from left to right
RunMacroText("/click PlayerTalentFrameTalent6") the talent position in the talent tree, /fstack ingame command to collect the information
RunMacroText("/click TalentMicroButton") close talents tree

This is for wow Sirus talents asign method

RunMacroText("/click TalentMicroButton")
RunMacroText("/click PlayerTalentFramePanel2Talent2")
RunMacroText("/click PlayerTalentFrameLearnButton")
RunMacroText("/click StaticPopup1Button1")
RunMacroText("/click TalentMicroButton")

by RunLuaCode

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.