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.

Change Current settings!

Featured Replies

Hello guys!
i try to find info about this but couldnt find!
i am levling dks, and to make my life easier i would like to set in my quest profile the currrent settings for ;

#disable blockages in last 10 mins
#turn on "try to detect evading mobs
#mount Distance to 5

 

Also Failed to autoload my plugins!


public class LoadPlugins
    {
        public static void Allplugins()
        {
            wManager.Plugin.PluginsManager.DisposeAllPlugins();
            foreach (var p in wManager.wManagerSetting.CurrentSetting.PluginsSettings)
            {
                if (p.FileName == "BetterTalents.dll")
                p.Actif = true;
                if (p.FileName == "Death knight Item Manager.dll")
                p.Actif = true;
            }
            wManager.Plugin.PluginsManager.LoadAllPlugins();
        }
    }

Hello,

On 4/7/2020 at 7:07 PM, binban said:

#disable blockages in last 10 mins
#turn on "try to detect evading mobs
#mount Distance to 5

Run code:

wManager.wManagerSetting.CurrentSetting.DetectEvadingMob = true;
wManager.wManagerSetting.CurrentSetting.CloseAfterXBlockagesActive = false;
wManager.wManagerSetting.CurrentSetting.MountDistance = 5;

 

On 4/7/2020 at 7:07 PM, binban said:

Also Failed to autoload my plugins!


public class LoadPlugins
    {
        public static void Allplugins()
        {
            wManager.Plugin.PluginsManager.DisposeAllPlugins();
            foreach (var p in wManager.wManagerSetting.CurrentSetting.PluginsSettings)
            {
                if (p.FileName == "BetterTalents.dll")
                p.Actif = true;
                if (p.FileName == "Death knight Item Manager.dll")
                p.Actif = true;
            }
            wManager.Plugin.PluginsManager.LoadAllPlugins();
        }
    }

Try to run it in separed thread:

public class LoadPlugins
{
    public static void Allplugins()
    {
        new System.Threading.Thread(o =>
        {
            foreach (var p in wManager.wManagerSetting.CurrentSetting.PluginsSettings)
            {
                if (p.FileName == "BetterTalents.dll")
                    p.Actif = true;
                if (p.FileName == "Death knight Item Manager.dll")
                    p.Actif = true;
            }
            wManager.Plugin.PluginsManager.DisposeAllPlugins();
            wManager.Plugin.PluginsManager.LoadAllPlugins();
        }).Start();
    }
}

 

  • Author

@Droidz Thanks alot for your Reply! was very helpful!

now i am facing another problem! i am new to c# ?

#why bot ignores it ? --->  if (!(Quest.HasQuest(12706))   i have quest  

# also what does means " ! "  tried with or without it and goes to next step

 

if (!(Quest.HasQuest(12706)) && !(ObjectManager.Me.Position.DistanceTo2D(new Vector3(2414.296f, -5624.672f, 376.9641f)) < 60))
{
Logging.Write("[Settings]: I AM FAR");
Logging.Write("[Settings]: I AM FAR");
Logging.Write("[Settings]: I AM FAR");
MessageBox.Show("I AM FAR");
wManager.Wow.Helpers.Lua.RunMacroText("/equip Plated Saronite Bracers");
wManager.Wow.Bot.Tasks.GoToTask.ToPosition(new Vector3(2402.86f, -5727.03f, 156.007f));
wManager.Wow.Bot.Tasks.MountTask.DismountMount();
wManager.Wow.Bot.Tasks.GoToTask.ToPositionAndIntecractWithNpc(new Vector3(2402.86f, -5727.03f, 156.007f), 29501, 1, false);
System.Threading.Thread.Sleep(17000);
}

if (!(Quest.HasQuest(12706)) && (ObjectManager.Me.Position.DistanceTo2D(new Vector3(2414.296f, -5624.672f, 376.9641f)) < 60))
{
Logging.Write("[Settings]: IN SPOT");
Logging.Write("[Settings]: IN SPOT");
Logging.Write("[Settings]: IN SPOT");
MessageBox.Show("IN SPOT");
}
return true;

This script belong to smokie! and what i am trying to do here to check if my death knight  is at plat form in air and in land!

@binban 
I don't mean to be rude, but you can't expect other people to do all the work for you. Mindlessly copypasting won't really get you anywhere.
! is a negation of a boolean and if evaluates a boolean.

There are so many unecessary brackets in that statement, it becomes pretty much unreadable. Try reading up on the very BASE principles on programming and you'll be able to understand any modify scripts at will. 

I highly recommend https://java-programming.mooc.fi/
If you spend 1-2 days on it, you should be set.

  • Author
6 minutes ago, Matenia said:

@binban 
I don't mean to be rude, but you can't expect other people to do all the work for you. Mindlessly copypasting won't really get you anywhere.
! is a negation of a boolean and if evaluates a boolean.

There are so many unecessary brackets in that statement, it becomes pretty much unreadable. Try reading up on the very BASE principles on programming and you'll be able to understand any modify scripts at will. 

I highly recommend https://java-programming.mooc.fi/
If you spend 1-2 days on it, you should be set.

You are Right!
I will try Harder From now on!
Sorry to give you Alot of work! ?
Thanks alot for the advise!
Have a good day ?

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.