Jump to content

How many bots at the same time do you use?


Recommended Posts

Hey guys,

 

I am asking because with like 5 or 6 bots opened my cpu is on 100%. It is an I7-6700HQ.

 

Is there any way to optimize it other than reinstalling the wrobot ( which already helped alot )?

 

How many instances are you running in vanilla wow before it gets too choppy?

 

Greetings

Link to comment
Share on other sites

Not vanilla but before the update I had 100% cpu with 4 bots. Not sure if its that update that lowered it or something else I did. But I think it was my plugins, way too many.

Link to comment
Share on other sites

Wow.exe is not even the problem.

Wrobot.exe is eating my cpu with 10 percent in walking mode and up to 25% in combat. Depends on fightclass.

Is there any trick to lower the cpu usage when the bots are fighting?? I am using only paid fightclasses.

Link to comment
Share on other sites

8 hours ago, bio33 said:
22 hours ago, NameChanger3000 said:

@bio33 21 bots plus 21 vanilla wows?

 

howwww?

i set minimal setting in wow

how much electricity takes this ? i mean watt? not only processor  full machine with 21 wow + wrobots

Link to comment
Share on other sites

Hello, try WRobot plugin like this: Low CPU usage.cs

using System.Threading;
using robotManager.Helpful;
using wManager.Wow.Helpers;

public class Main : wManager.Plugin.IPlugin
{
    public void Initialize()
    {
        // Wow
        // Src: https://www.reddit.com/r/wow/comments/4wnadq/i_got_an_extreme_yet_effective_way_to_play_wow/
        var wowSettings = @"
/console groundEffectDensity 16
/console groundEffectDist 1
/console horizonfarclip 1305
/console farclip 90
/console characterAmbient 1
/console smallcull 1
/console skycloudlod 1
/console detailDoodadAlpha 1
/console shadowMode 0
/console ShadowTextureSize 1024
/console waterDetail 0
/console rippleDetail 0
/console reflectionMode 0
/console SunShafts 0
/console particleDensity 10
/console weatherDensity 0
/console SSAO 0
/console environmentDetail 60
/console ffx 0
/console componentTextureLevel 1
/console TerrainMipLevel 1
/console WorldBaseMip 2
/console gxDepthBits 16
/console gxColorBits 16
/console gxRestart
/console m2faster 1
/console hwPCF 1
/console overridefarclip 0
/console componentTextureLevel 1
/console spellEffectLevel 1
/console set renderscale 0.4
/console maxfps 15
/console maxFPSBk 15
";
        foreach (var line in Others.TextToArrayByLine(wowSettings))
        {
            Lua.RunMacroText(line);
        }

        // WRobot:
        wManager.wManagerSetting.CurrentSetting.ReadObjectManagerFTS = 1;
        robotManager.Events.FiniteStateMachineEvents.OnAfterRunState += (engine, state) =>
        {
            Thread.Sleep(50);
        };
        robotManager.Events.FiniteStateMachineEvents.OnBeforeCheckIfNeedToRunState += (engine, state, cancel) =>
        {
            Thread.Sleep(5);
        };
        robotManager.MemoryClass.Hook.SleepTimeWaitCalled = 10;
    }

    public void Dispose()
    {
    }

    public void Settings()
    {
    }
}
  

(of course, edit wow to your usage, wait next update to uncomment "SleepTimeWaitCalled" line)

Do not hesitate to tell me if you get result, or share edit (if you have new wow or wrobot settings)

Link to comment
Share on other sites

On 5/2/2018 at 3:00 PM, Droidz said:

It is Vanilla version (but not working correctly, wow settings need to be adjusted for this game version?Low CPU usage VANILLA.cs

The main parameter affecting the processor load is the maximum fps.
I unfortunately did not find a solution ... maybe you know the way?

Link to comment
Share on other sites

14 hours ago, MausFarm said:

The main parameter affecting the processor load is the maximum fps.
I unfortunately did not find a solution ... maybe you know the way?

Wait next update, I tried to avoid processor load when you use low wow fps.

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...