Daily Hauling Bonus: Difference between revisions

From Push Industries Wiki
Jump to navigation Jump to search
No edit summary
 
(7 intermediate revisions by the same user not shown)
Line 1: Line 1:
== ''Daily Hauling Bonus''' ==
== '''Daily Hauling Bonus''' ==


If you haul frequently you are able to earn an extra bonus that is going to be deducted from your dues at the end of the month.
By hauling priority contracts and hauling daily you are able to earn an extra bonus that is deducted from your dues at the end of the week.


=== How does it work? ===
=== How does it work? ===


For every day you complete at least one contract in a given month you earn 5 Mil ISK in bonus. So if for example you haul on 10 days in a month you get 50 Mil ISK in bonuses. This way you are able to earn up to 150/155 Mil ISK extra every month.
Each contract hauled counts towards your daily bonus max of 5,000,000 ISK. '''Contracts in the top 10 of the queue earn a larger bonus'''. To get a full bonus, you must haul 5 days in a week.


You don't have to do anything but continue hauling as you already are. We are tracking your progress and will add you bonus as a deduction to your dues at the end of each month.
Bonuses are automatically tracked and added as a deduction to your dues at the end of each week.
 
An example of the formula is as follows:
 
<pre>
MaxDaily = 5,000,000
ContractMax = 1,000,000
 
FOR EACH DayOfWeek
  DailyBonusSum = SUM HaulersContracts(
    FOR EACH Contract
      IF ContractNumber = 1  THEN Bonus = ContractMax
      IF ContractNumber = 2  THEN Bonus = ContractMax * .90
      IF ContractNumber = 3  THEN Bonus = ContractMax * .85
      IF ContractNumber = 4  THEN Bonus = ContractMax * .80
      IF ContractNumber = 5  THEN Bonus = ContractMax * .75
      IF ContractNumber = 6  THEN Bonus = ContractMax * .70
      IF ContractNumber = 7  THEN Bonus = ContractMax * .65
      IF ContractNumber = 8  THEN Bonus = ContractMax * .60
      IF ContractNumber = 9  THEN Bonus = ContractMax * .55
      IF ContractNumber = 10 THEN Bonus = ContractMax * .50
      ELSE Bonus = ContractMax *.25
    END)
 
  DailyBonusSum = MAX(MaxDaily OR DailyBonusSum)
 
  WeeklyBonusSum = DailyBonusSum + WeeklyBonusSum
END
 
TotalBonus = WeeklyBonusSum * (MAX(1 OR (DaysHauled *.2)))
</pre>
 
Note: The Hauling Bonus display in the queue can take up to an hour to update due to caching.

Latest revision as of 20:20, 10 February 2022

Daily Hauling Bonus

By hauling priority contracts and hauling daily you are able to earn an extra bonus that is deducted from your dues at the end of the week.

How does it work?

Each contract hauled counts towards your daily bonus max of 5,000,000 ISK. Contracts in the top 10 of the queue earn a larger bonus. To get a full bonus, you must haul 5 days in a week.

Bonuses are automatically tracked and added as a deduction to your dues at the end of each week.

An example of the formula is as follows:

MaxDaily = 5,000,000
ContractMax = 1,000,000

FOR EACH DayOfWeek
  DailyBonusSum = SUM HaulersContracts(
    FOR EACH Contract
      IF ContractNumber = 1  THEN Bonus = ContractMax
      IF ContractNumber = 2  THEN Bonus = ContractMax * .90
      IF ContractNumber = 3  THEN Bonus = ContractMax * .85
      IF ContractNumber = 4  THEN Bonus = ContractMax * .80
      IF ContractNumber = 5  THEN Bonus = ContractMax * .75
      IF ContractNumber = 6  THEN Bonus = ContractMax * .70
      IF ContractNumber = 7  THEN Bonus = ContractMax * .65
      IF ContractNumber = 8  THEN Bonus = ContractMax * .60
      IF ContractNumber = 9  THEN Bonus = ContractMax * .55
      IF ContractNumber = 10 THEN Bonus = ContractMax * .50
      ELSE Bonus = ContractMax *.25
    END)
  
  DailyBonusSum = MAX(MaxDaily OR DailyBonusSum)

  WeeklyBonusSum = DailyBonusSum + WeeklyBonusSum
END

TotalBonus = WeeklyBonusSum * (MAX(1 OR (DaysHauled *.2)))

Note: The Hauling Bonus display in the queue can take up to an hour to update due to caching.