I have the same, except, i'm running at 4.8ghz. Got any other plugins installed? With *only* Trinity and QuestTools alone - no other plugins, you should get
much higher. 1 bot running alone and the "tick mod" gets a steady > 100 ticks/s for me.
While you have all your bots running, open task manager, click 'show processes from all users', and sort by CPU time. Make sure D3 is using more than DB and nothing is using more CPU time than either of them.
P.S.:
Tick mod:
Plugins\Trinity\Helpers\BotManager.cs
Lines 42-56 ish
Set BotMain.TicksPerSecond to Int32.MaxValue
Code:
[FONT=courier new] internal static void SetBotTPS()
{
// Carguy's ticks-per-second feature
if (Settings.Advanced.TPSEnabled)
{
BotMain.TicksPerSecond = (int)Settings.Advanced.TPSLimit;
Logger.Log(TrinityLogLevel.Verbose, LogCategory.UserInformation, "Bot TPS set to {0}", (int)Settings.Advanced.TPSLimit);
}
else
{
[SIZE=4] [U]BotMain.TicksPerSecond = Int32.MaxValue;[/U]
[/SIZE] Logger.Log(TrinityLogLevel.Verbose, LogCategory.UserInformation, "Reset bot TPS to default", (int)Settings.Advanced.TPSLimit);
}
}[/FONT]
Restart Demonbuddy.
In Trinity advanced settings window uncheck "Enable TPS modification".