Need help finding the location for xp boost

textony

New Member
Joined
Jun 20, 2017
Messages
7
I'm trying to find where the file the houses the entertainer xp and the artisan sampling xp as well as the sampling sizes.
Can anyone point me in the right direction? 

-T
 

Pake

Member
Joined
Dec 8, 2011
Messages
147
I believe its in the tre files. Check datatables/performance/performance.iff
 

textony

New Member
Joined
Jun 20, 2017
Messages
7
Pake said:
I believe its in the tre files.  Check datatables/performance/performance.iff
Thanks Pake.
Any idea where to find the surveying XP and the Sampling rate at?

-T
 

sygnum

New Member
Joined
Aug 26, 2015
Messages
6
anyone ever figure out where to adjust the sampling rate at? I've seen servers with faster sampling rate so someone has to have figured this out, a little incite?
 

shoted45

New Member
Joined
Jul 30, 2018
Messages
11
anyone ever figure out where to adjust the sampling rate at? I've seen servers with faster sampling rate so someone has to have figured this out, a little incite?
Hope this is still useful to you and if not maybe the next person looking for an answer will.
At any rate it appears this file MMOCoreORB/src/server/zone/managers/resource/resourcespawner/resourcespawner.cpp
Is the one in control of the experience gained from sampling amount.

line #993 int maxUnitsExtracted = (int) (density * (25 + System::random(3)));

The default is 25 + system::random which gave me around 10 ish per hand sample with a novice artisan, I then increased it to 100 and it gave ~20 I then increased it to 1000 which gave ~189. Which is outrageous, you would need to do further testing to see exactly how the ratio is determined. I just did a few quick tweaks to make sure I was on the right track. There is also other parts in this file that can be modified to change how the minigame rich sample works.
 
Top Bottom