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.

AlexTheCarMan

Banned
  • Joined

  • Last visited

Reputation Activity

  1. Like
    AlexTheCarMan got a reaction from i4mb1sh0p in "Target has mana"   
    Hey
    for C# you can use a Mana check like this 
    ObjectManager.Target.ManaPercentage > 0 or if you wish to use Lua 
    if UnitMana('player')/UnitManaMax('Player') < # then return true end # = number from 1 - 100, whatever % you wish to use.  
  2. Thanks
    AlexTheCarMan got a reaction from Zurkernine in Using mounts only to sell stuff   
    Here is a simple plugin that i made for you. (Untested.)
    using System; using robotManager.Helpful; using wManager.Wow.Helpers; using System.Threading; using System.ComponentModel; using wManager.Wow.ObjectManager; using System.IO; using robotManager; using wManager.Plugin; public class Main : IPlugin { bool loaded; public void Initialize() { MountVender.Load(); loaded = true; while(loaded) { try { robotManager.Events.FiniteStateMachineEvents.OnBeforeCheckIfNeedToRunState += (engine, state, cancelable) => { if (state.DisplayName == "To Town" && MountVender.CurrentSetting.MountName != string.Empty && !ObjectManager.Me.HaveBuff(MountVender.CurrentSetting.MountName) && ObjectManager.Me.Level >= 20) { SpellManager.CastSpellByNameLUA(MountVender.CurrentSetting.MountName); Thread.Sleep(2000); } }; } catch { } Thread.Sleep(100); } } public void Dispose() { loaded = false; } public void Settings() { MountVender.Load(); MountVender.CurrentSetting.ToForm(); MountVender.CurrentSetting.Save(); } } [Serializable] public class MountVender : Settings { [DefaultValue(1000)] [Category("Mount")] [DisplayName("Name")] [Description("Mount Name you wish to use.")] public string MountName { get; set; } private MountVender() { MountName = ""; ConfigWinForm( new System.Drawing.Point(300, 400), "ExamplePlugin " + Translate.Get("Settings") ); } public static MountVender CurrentSetting { get; set; } public bool Save() { try { return Save(AdviserFilePathAndName("MountVender", ObjectManager.Me.Name + "." + Usefuls.RealmName)); } catch (Exception e) { Logging.WriteError("MountVender > Save(): " + e); return false; } } public static bool Load() { try { if (File.Exists(AdviserFilePathAndName("MountVender", ObjectManager.Me.Name + "." + Usefuls.RealmName))) { CurrentSetting = Load<MountVender>( AdviserFilePathAndName("MountVender", ObjectManager.Me.Name + "." + Usefuls.RealmName)); return true; } CurrentSetting = new MountVender(); } catch (Exception e) { Logging.WriteError("MountVender > Load(): " + e); } return false; } }  
    or if you want to use the normal settings of wrobot use this instead.
     
    while(loaded) { try { robotManager.Events.FiniteStateMachineEvents.OnBeforeCheckIfNeedToRunState += (engine, state, cancelable) => { if (state.DisplayName == "To Town" && MountVender.CurrentSetting.MountName != string.Empty && !ObjectManager.Me.HaveBuff(MountVender.CurrentSetting.MountName) && ObjectManager.Me.Level >= 20) { SpellManager.CastSpellByNameLUA(MountVender.CurrentSetting.MountName); Thread.Sleep(2000); } else if (state.DisplayName == "To Town" && wManager.wManagerSetting.CurrentSetting.GroundMountName != string.Empty && !ObjectManager.Me.HaveBuff(wManager.wManagerSetting.CurrentSetting.GroundMountName) && ObjectManager.Me.Level >= 20) { SpellManager.CastSpellByNameLUA(wManager.wManagerSetting.CurrentSetting.GroundMountName); Thread.Sleep(2000); } }; } catch { } Thread.Sleep(100); }  
  3. Thanks
    AlexTheCarMan got a reaction from Zurkernine in Using mounts only to sell stuff   
    download mount plugin, move into plugin file within wrobot/Plugin/Here
    Mount Plugin.cs

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.