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.

Vanilla Train Level 1.0.0

(2 reviews)

1 Screenshot

Are you tired of stopping your leveling to go learn your spells every level ?

VanillaTrainLevel lets you learn spells more effectively in order to speed up the leveling :

  • Every 2 levels from 1 to 10
  • Every 6 levels from 10 to 50 
  • Every 2 levels from 50 to 60 
 
How to use : 
Add the VanillaTrainLevel.cs file to the Wrobot Plugins folder.
After this, start up bot, go to the tab called "Plugins" and turn "VanillaTrainLevel.cs" by on.
 
 

User Feedback

You may only provide a review once you have downloaded the file.

   1 of 1 member found this review helpful 1 / 1 member

Log spam | little fix.

using System;
using System.Collections.Generic;
using System.Threading;
using robotManager.Helpful;
using wManager.Plugin;
using wManager.Wow.ObjectManager;
using robotManager.Products;

public class Main : IPlugin
{
    private bool _isLaunched;
    public static List<uint> Level = new List<uint> { 2, 4, 6, 8, 10, 14, 16, 20, 26, 30, 36, 40, 46, 50, 52, 54, 56, 58, 60 };

    public void Initialize()
    {
        Logging.Write("[Vanilla Train Level] Started.");
        _isLaunched = true;
        if (_isLaunched)
        {
            try
            {
                if (Products.IsStarted && !Products.InPause)
                {
                    wManager.wManagerSetting.CurrentSetting.TrainNewSkills = Level.Contains(ObjectManager.Me.Level);
                }
            }
            catch (Exception e)
            {
                Logging.WriteError("[Vanilla Train Level]: " + e);
            }
            Thread.Sleep(550);
        }
    }

    public void Dispose()
    {
        _isLaunched = false;
        Logging.Write("[Vanilla Train Level]: Stoped.");
    }

    public void Settings()
    {
        Logging.Write("[Vanilla Train Level]: No setting.");
    }
}

 

   2 of 4 members found this review helpful 2 / 4 members

Works, but it spams the bot log

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.