Jump to content

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
https://wrobot.eu/forums/topic/9235-how-many-bots-at-the-same-time-do-you-use/
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.

  On 4/28/2018 at 11:23 AM, bio33 said:
  On 4/27/2018 at 9:14 PM, NameChanger3000 said:

@bio33 21 bots plus 21 vanilla wows?

 

howwww?

Expand  

i set minimal setting in wow

Expand  

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

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)

  On 4/29/2018 at 4:46 PM, NameChanger3000 said:

This made my cpu usage so much better. OMG! Thank you so much!

Expand  

I tried to improve CPU usage in the next update (~30% less on my computer)

  On 5/1/2018 at 10:04 PM, inselmann said:

Sadly on vanilla it does not work for me

Expand  

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

  On 5/2/2018 at 11:00 AM, 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

Expand  

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

  On 5/9/2018 at 6:53 PM, 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?

Expand  

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

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