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

kafflaff

New Member
Joined
Feb 19, 2015
Messages
25
Reaction score
0
Hey guys.

I would like to know if it would be possible to make Adventure write xp gained and XP/h to a log file.
This would help a hella lot on finding the sweet spot for XP farming.

It's already logging it in the console.

[Adventurer][Rift] Total XP Gained: 16,370,793,971
[Adventurer][Rift] XP / Hour: 72,698,195,206

Besg regards,
Kafflaff
 
wow 72 b/h sounds nice. Alone or in group? What class, what was your sweetspot?
 
Hey guys.

I would like to know if it would be possible to make Adventure write xp gained and XP/h to a log file.
This would help a hella lot on finding the sweet spot for XP farming.

It's already logging it in the console.

[Adventurer][Rift] Total XP Gained: 16,370,793,971
[Adventurer][Rift] XP / Hour: 72,698,195,206

Besg regards,
Kafflaff
can u show your combat trinity settings?
 
trash count 4, ignore minions, remove the checks in avoidables. that's the only changes ive done.

But quite frankly, just watch the bot do like 4-5 rifts, and you'll quickly be able to see if he dies to trash, or get stuck and loose alot of time on blocking, etc. and just fiddle the settings.
Ive spend the better part since monday to fiddle with the settings to get it optimal, and as long as @jubisman is as active with the updates as he is, i will contenue to fiddle with them daily.
 
You can do this in command prompt and make your own text file.

Open Command Prompt and type whats below; you will need to specify the correct / most up to date log file.

type "C:\DBv2\Logs\5912 2016-01-21 23.15.txt" | find "XP / Hour" > xpfarming.txt

Open up xpfarming.txt in the logs folder and boom, you have the following:

16:33:40.205 WARN Logger [Adventurer][Rift] XP / Hour: 114,937,949,720
16:41:23.154 WARN Logger [Adventurer][Rift] XP / Hour: 78,088,396,609
16:49:22.491 WARN Logger [Adventurer][Rift] XP / Hour: 72,179,968,672

I've had to do this because Trinity use to have stats, but now they took it out? So annoying :(
 
What influxau said works you can also if you no how to create and write in java (someone around might no ive never done it). The place where demonbuddy tracks exp is:

c://.../demonbuddy/plugins/Adventurer/Game/Stats

The experiencetracker.cs

Find this section of code.

private void ReportExperience(string reporterName)
{
Logger.Warn("[{0}] Total XP Gained: {1:0,0}", reporterName, CurrentExperience);
Logger.Warn("[{0}] XP / Hour: {1:0,0}", reporterName, CurrentExperience / (DateTime.UtcNow - _startTime).TotalHours);
}

If you somehow have java create a new text file and have it print out CurrentExperience and CurrentExperience / (DateTime.UtcNow - _startTime).TotalHours you will have a text file with only that data. Someone better than me will have to give you the exact code thou I can only show you where the code needs to go.
 
Back
Top