Beans

Collect beans while you play OpenSeason in exchange for $FU Money at the end of the Epoch (1 week).

Beans worth dying for

Each Epoch a continuous amount of beans will be made available to be collected by playing OpenSeason. At the end of each Epoch $FU money is distributed to players relative to their bean share.

Beans are then reset to zero at the beginning of the next epoch allowing all players to start equally.

Earn extra beans with Game Pass Pro

If you are a Game Pass Pro holder, you earn 100% of the beans you collect. If you are a Game Pass holder—you used an access code to play the game—20% of the beans you collect are actually earned by the Game Pass Pro associated with your Game Pass.

The only way to earn 100% of the valid beans you collect is by holding a Game Pass Pro.

Beans collected vs beans earned.

You can collect beans by either playing Ranked or non Ranked matches. The more beans you earn the greater your share of the final $FU distribution!

The amount of beans you earn is actually different from the amount you collect. Game Pass holders for example, only earn 80% of the beans they collect. The remaining 20% goes to the Game Pass Pro NFT that generated the access code for that Game Pass.

The way the game is played also influences the amount of beans you earn. If you are a bean simp—only plays the game to collect beans and leaves— you will be penalized. Currently the formula for earning beans per match is (Kills + Deaths) / BeansCollected. If that value is below 1 the player will suffer a penalty and earn only the fraction of the beans they collected.

Example:

Alice finished the match with 20 kills, 10 deaths and 20 beans. (20 + 10) / 20 = 1.5

Because she is above the 1 point cut she keeps all of her beans.

Bob finished the match with 1 kill, 1 death and 40 beans. (1 + 1) / 40 = 0.05

Because Bob is below 1 a penalty will be applied.

The final amount of earned beans will be: 40 * 0.05 = 2

In short. The less interaction (Death or Kills) during the match and the more beans you collect the less beans you get to keep.

Bean Multipliers

A player's $FU share is calculated based on the total beans each player earned after different multipliers are applied. It is important to note that the multipliers are applied at the end of each match, this means that multipliers are constantly changing during the Epoch and are affecting your shares in real time.

Rank Multiplier

The Rank Multiplier formula is a simple linear function of your Epoch XP, Here's a simple JavaScript implementation:

 const baseMultiplier = 1;

function multiplierByXp(xp, bottomXp, topXp) {
    let maxMultiplier = 2;
    let ratio =  (xp - bottomXp) / (topXp - bottomXp);
    return baseMultiplier + maxMultiplier * ratio;
}

Example:

Given the following results of a match with players having the current XP at the current Epoch with 100 active players:

  • Player 1: 30,000 XP, 5 Earned Beans

  • Player 2: 20,000 XP, 10 Earned Beans

  • Player 100: 500 XP, 30 Earned Beans

The following multiplier would be applied:

For Player 1:

  • Ratio: ratio = (30,000 - 500) / (30,000 - 500) = 1

  • Multiplier: multiplier = 1 + 1 * 2 = 3

  • Shares: 15 * 3 = 45

For Player 2:

  • Ratio: ratio = (20,000 - 500) / (30,000 - 500) = 0.66

  • Multiplier: multiplier = 1 + 0.66 * 2 = 2.32

  • Shares: 10 * 2.32 = 23.2

For Player 100:

  • Ratio: ratio = (500 - 500) / (30,000 - 500) = 0`

  • Multiplier: multiplier = 1 + 0 * 2 = 1

  • Shares: 30 * 1 = 30

The EXP (Epoch XP) is reset at the end of each Epoch.

During the initial test phase of rewards, 100,000 $FU is being allocated per Epoch with plans to increase this amount as $FU utility is further developed.

Game Pass Pro Multiplier

Players who hold a Game Pass Pro will earn a multiplier based on how long they have the GPP activated for. Below is the formula for the multiplier:

AccrualSpeed = 14;
Multiplier = 5;

AccruedAmount = Days / (Days + AccrualSpeed)
EarnedMultiplier = Multiplier  * AccruedAmount;

Where Days is how long the GPP has been active for.

Below is a table with multipliers accrued at different time frames:

$FU Multiplier

The $FU Multiplier works similarly as the GPP Multiplier with the difference that instead of time, the qualifier for determining the multiplier is quantity. The more $FU is in a player’s wallet at the end of a match the closer the multiplier reaches its maximum value.

Below is the formula for the $FU Multiplier:

Constants:
AccrualSpeed = 100000;
Multiplier = 5;

Formulas:
AccruedAmount = TokenBalance / TokenBalance + AccrualParameter)
EarnedMultiplier = Multiplier  * AccruedAmount;

Below is a table with multipliers accrued at different $FU amounts:

$FU Distribution

At the end of each Epoch, the final bean earned amount is calculated and $FU is distributed to all wallets.

Important! If by the end of the Epoch, you don’t have a wallet verified on OpenSeason.games, you will not earn any $FU for that Epoch and that $FU will be distributed to those who have their wallets verified.

Last updated