And another one for this series. This time after noticing that people do not, and cannot, understand the way pve bounties are paid out.
The plugin for this system is called pvecontroller and is responsible for both bounties as well as extra drops from npcs.
Some basics that are configurable are:
The maximum reputation a player can have for the bounties to still be paid out.
maximum_reward_rep = 0.0
Makes it so that if you hit something above full neutral rep, you don't get a bounty
Also configurable is the reward timer. The time it takes from the first kill to pay out your bounties.
pool_payout_timer = 600
Makes it so that it takes 10 minutes for bounties to be paid out to you. This can be force paid out by docking for example
Now to the more interesting settings.
One thing that is always a debate is: How many people do I want to bring to farm something?
There is a modifier depending on how many people are in your group(and in the same system). They reduce the payout for the individual.
This makes it so that if you normally get a 1,000,000 bounty, you instead get 800,000 when you kill something with a friend in your group.
I'm sure people are also highly interested in how payouts work exactly.
First there is a base bounty amount per class. The ship classes you can find in FLStat or I might put them somewhere later. Discovery uses classes 0-19.
class = 0, 50000
class = 1, 60000
class = 2, 60000
class = 3, 60000
class = 4, 80000
class = 5, 70000
class = 6, 35000
class = 7, 35000
class = 8, 40000
class = 9, 40000
class = 10, 60000
class = 11, 900000
class = 12, 900000
class = 13, 4250000
class = 14, 4250000
class = 15, 2000000
class = 16, 3250000
class = 17, 3750000
class = 18, 4250000
class = 19, 40000
So for example a class 18, a heavy battleship, has a base payout of 4,250,000
Now these were ship classes. To make things easier for calculation, some of these are grouped. Small craft, transports, various caps.
So if you have a bomber, which is group one, and you destroy a battleship, the difference is 3 or larger. Meaning your payout will be multiplied by 1.5
So your 1,000,000 bounty turns into 1,500,000.
Now that is not the only multiplier. Another one are armor upgrades. Fighter NPCs do get those though they're usually not visible.
According to this, killing something equipped with a normal(2.5x HP) armour upgrade(armor_scale_10) multiplies your bounty by 10. Turning your 1,000,000 bounty into 10,000,000
In addition there is the option to make specific ship's override the entire calculation from before.
ship = dsy_pitrain_npc, 500000
This makes it so that killing ANY npc pirate train pays out 5,000,000 credits
There is also the option of modifying the multipliers per system.
system_multiplier = li06, 0
Causes npc bounties in li06(Connecticut) to be multiplied by 0 - disabled. But It'd be very well possible to buff these payouts in a specific system or nerf them.
Now we come to additional rewards.
One setting here is how the crates look that npcs drop, irrelevant really.
class = 11, commodity_sciencedata, 0.03
class = 12, commodity_sciencedata, 0.03
class = 13, dsy_codecr_blaster, 0.0025
class = 13, dsy_codecr_ionblaster, 0.0025
class = 13, dsy_codecr_mauler, 0.005
class = 13, dsy_codecr_repeater, 0.005
class = 14, dsy_codecr_blaster, 0.005
class = 14, dsy_codecr_ionblaster, 0.005
class = 14, dsy_codecr_mauler, 0.005
class = 14, dsy_codecr_repeater, 0.005
class = 15, commodity_sciencedata, 0.05
class = 16, commodity_sciencedata, 0.06
class = 17, commodity_sciencedata, 0.06
class = 18, commodity_sciencedata, 0.06
Let's pick out one example
class = 15, commodity_sciencedata, 0.05
This makes it so that when you kill a class 15(battlecruiser) there is a 5% chance for it to drop a unit of Science Data.
I don't understand the armor_scale part. Are missions different? For example killing an Destroyer in a mission gives me 2.55mill, which I can calculate as follows: Me a Dreadnaught -> class type 6 vs. Destroyer -> class type 4 --> class diff is -2, therefore multiplier of 0.6 => 4,250,000 * 0.6 = 2.55mill.
However, the Destroyer comes with 1,376,998 health, but has a base health of 810,000. So no bonus for mission generated health increase?