What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

modify what to get high ticks/sec (>45)

thale

Member
Joined
Apr 25, 2014
Messages
45
Reaction score
7
Hello,

I would like to get my ticks up higher than 45, i know back in the days there was a workaround where you changed the value to "
Int32.MaxValue", then you would always get the max ticks according to your computer and settings in diablo.

Ive been trying to find the file to modify that but cant find it...

thanks for the help

thale
 
I guess you can modify the settings xaml slider max to go to 200 and see where the DB will get you. In detail, open
Plugins\Trinity\UI\Advanced.xaml

see the section
Code:
                <GroupBox Header="Ticks Per Second">
                    <StackPanel>
                        <TextBlock TextWrapping="Wrap">Set below 10 to reduce CPU use (but dumb the bot down). You can experiment above 10 (Default), but this will eat CPU)</TextBlock>
                        <UniformGrid Columns="2"  VerticalAlignment="Center">
                            <CheckBox IsChecked="{Binding Advanced.TpsEnabled}" VerticalAlignment="Center">Enable TPS modification</CheckBox>
                            <Slider Template="{DynamicResource SliderEditable}" IsEnabled="{Binding Advanced.TpsEnabled}"
                    Interval="500" Maximum="200" Minimum="1" SmallChange="1" TickFrequency="3" TickPlacement="BottomRight"
                    Value="{Binding Advanced.TpsLimit}"
                    HorizontalAlignment="Stretch" Margin="5,0,5,0"
                        ToolTip="Set below 10 to reduce CPU use (but dumb the bot down). You can experiment above 10 (Db Default), but this will eat CPU)"/>
                        </UniformGrid>
                    </StackPanel>
                </GroupBox>
In particular Maximum="200".
 
great thanks! i cant get my ticks past 47 it seems but ok, i see a big improvement in bot behavior with higher ticks ;)
 
Back
Top