Jump to content

Wrobot uses too much CPU


Recommended Posts

On some TBC servers, all meet objects (players, items, gameobjects, ...) seems to keeps in memory, if your character go to big city or if you running too long WRobot session the CPU usage can increment.

You can test if "/reload" resolve probleme (and run this macro sometimes)
 

You can also try this plugin Main.cs :

public class Main : wManager.Plugin.IPlugin
{
    public void Initialize()
    {
        wManager.wManagerSetting.CurrentSetting.ReadObjectManagerFTS = 2;
    }

    public void Dispose()
    {
    }

    public void Settings()
    {
    }
}

(you can change value line 5 (default WRobot value is 10))

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...