Jump to content

Vanilla Train Level 1.0.0

   (2 reviews)

1 Screenshot

About This File

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.


red_rogue

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

Works, but it spams the bot log

Link to review
TheSmokie

  

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.");
    }
}

 

Link to review
×
×
  • Create New...