Forge of Empires 1.9 Calculator

Forge of Empires 1.9 Calculator

The "1.9 system" in Forge of Empires is a popular method for efficiently leveling up Great Buildings (GBs) within a guild or community. It's based on the principle that contributors (other players) will pay 1.9 times the Forge Point (FP) reward they receive for placing FPs on a GB. This allows the GB owner to level their building without having to pay for all the spots themselves, while contributors gain blueprints and medals at a favorable rate.

This calculator helps you determine the exact amount of Forge Points needed for each spot under the 1.9 system, as well as the total FPs the GB owner needs to contribute to "lock" the building for the next level.

Enter the total Forge Points required to complete the current GB level.

The FP reward for the player taking the 1st spot.

The FP reward for the player taking the 2nd spot.

The FP reward for the player taking the 3rd spot.

The FP reward for the player taking the 4th spot.

The FP reward for the player taking the 5th spot.

Understanding the 1.9 System

The 1.9 system is a cornerstone of efficient Great Building progression in Forge of Empires. It's particularly beneficial for players with high-level Arcs, as the Arc's bonus increases the FP rewards for contributors, making the 1.9 ratio even more attractive.

  • For the GB Owner: It allows you to level up your Great Buildings faster by leveraging contributions from other players. You only need to pay a portion of the total FPs, typically enough to "lock" the building (meaning the remaining FPs are covered by the 1.9 contributions).
  • For Contributors: By paying 1.9 times the reward, contributors receive a guaranteed profit in blueprints and medals, which are essential for their own GB progression and city expansion. The 1.9 ratio is generally considered a fair exchange, especially when the contributor's Arc bonus is factored in.

How to Use This Calculator

  1. Total FPs for GB Level: Find this value in your Great Building's information panel for the next level.
  2. Spot Rewards: Also found in your Great Building's information panel, these are the base FP rewards for each of the top 5 spots.
  3. Calculate: Click the "Calculate 1.9 Values" button.

The calculator will then display the exact FPs each contributor should place for their respective spot, and most importantly, the total FPs you, as the GB owner, need to place to lock the building.

Example Scenario: Leveling an Arc from 80 to 81

Let's say you're leveling your Arc from level 80 to 81. The total FPs required for this level is 1990. The base FP rewards for the top 5 spots are:

  • Spot 1: 400 FPs
  • Spot 2: 200 FPs
  • Spot 3: 50 FPs
  • Spot 4: 10 FPs
  • Spot 5: 5 FPs

Using the calculator with these values:

  • Spot 1 Contributor Pays: 400 * 1.9 = 760 FPs
  • Spot 2 Contributor Pays: 200 * 1.9 = 380 FPs
  • Spot 3 Contributor Pays: 50 * 1.9 = 95 FPs
  • Spot 4 Contributor Pays: 10 * 1.9 = 19 FPs
  • Spot 5 Contributor Pays: 5 * 1.9 = 9.5 FPs

Total FPs from Contributors: 760 + 380 + 95 + 19 + 9.5 = 1263.5 FPs

Owner's Lock FPs: 1990 (Total Cost) – 1263.5 (Contributor FPs) = 726.5 FPs

This means you, as the owner, would place 726.5 FPs, and then the contributors would fill the spots according to the 1.9 rule, completing your GB level efficiently.

.calculator-container { font-family: 'Arial', sans-serif; background-color: #f9f9f9; padding: 20px; border-radius: 8px; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); max-width: 800px; margin: 20px auto; color: #333; } .calculator-container h2, .calculator-container h3 { color: #2c3e50; text-align: center; margin-bottom: 15px; } .calculator-container p { line-height: 1.6; margin-bottom: 10px; } .calculator-form { background-color: #ffffff; padding: 20px; border-radius: 8px; border: 1px solid #e0e0e0; margin-bottom: 20px; } .form-group { margin-bottom: 15px; } .form-group label { display: block; margin-bottom: 5px; font-weight: bold; color: #555; } .form-group input[type="number"] { width: calc(100% – 22px); padding: 10px; border: 1px solid #ccc; border-radius: 4px; font-size: 16px; } .form-group .input-description { font-size: 0.9em; color: #777; margin-top: 5px; } button { background-color: #28a745; color: white; padding: 12px 20px; border: none; border-radius: 4px; cursor: pointer; font-size: 18px; width: 100%; display: block; margin-top: 20px; transition: background-color 0.3s ease; } button:hover { background-color: #218838; } .calculator-result { background-color: #e9f7ef; padding: 20px; border-radius: 8px; border: 1px solid #d4edda; margin-top: 20px; font-size: 1.1em; color: #155724; } .calculator-result h3 { color: #155724; margin-top: 0; text-align: left; } .calculator-result p { margin-bottom: 8px; } .calculator-result strong { color: #000; } .calculator-container ul { list-style-type: disc; margin-left: 20px; margin-bottom: 10px; } .calculator-container ol { list-style-type: decimal; margin-left: 20px; margin-bottom: 10px; } .calculator-container li { margin-bottom: 5px; } function calculate19System() { var gbLevelCost = parseFloat(document.getElementById("gbLevelCost").value); var spot1Reward = parseFloat(document.getElementById("spot1Reward").value); var spot2Reward = parseFloat(document.getElementById("spot2Reward").value); var spot3Reward = parseFloat(document.getElementById("spot3Reward").value); var spot4Reward = parseFloat(document.getElementById("spot4Reward").value); var spot5Reward = parseFloat(document.getElementById("spot5Reward").value); if (isNaN(gbLevelCost) || gbLevelCost <= 0 || isNaN(spot1Reward) || spot1Reward < 0 || isNaN(spot2Reward) || spot2Reward < 0 || isNaN(spot3Reward) || spot3Reward < 0 || isNaN(spot4Reward) || spot4Reward < 0 || isNaN(spot5Reward) || spot5Reward < 0) { document.getElementById("result").innerHTML = "Please enter valid positive numbers for all fields."; return; } var spot1Contribution = spot1Reward * 1.9; var spot2Contribution = spot2Reward * 1.9; var spot3Contribution = spot3Reward * 1.9; var spot4Contribution = spot4Reward * 1.9; var spot5Contribution = spot5Reward * 1.9; var totalContributorFPs = spot1Contribution + spot2Contribution + spot3Contribution + spot4Contribution + spot5Contribution; var ownerLockFPs = gbLevelCost – totalContributorFPs; var resultHTML = "

1.9 System Calculation Results:

"; resultHTML += "FPs for Spot 1 (1.9x): " + spot1Contribution.toFixed(2) + " FPs"; resultHTML += "FPs for Spot 2 (1.9x): " + spot2Contribution.toFixed(2) + " FPs"; resultHTML += "FPs for Spot 3 (1.9x): " + spot3Contribution.toFixed(2) + " FPs"; resultHTML += "FPs for Spot 4 (1.9x): " + spot4Contribution.toFixed(2) + " FPs"; resultHTML += "FPs for Spot 5 (1.9x): " + spot5Contribution.toFixed(2) + " FPs"; resultHTML += "
"; resultHTML += "Total FPs from Contributors (1.9x): " + totalContributorFPs.toFixed(2) + " FPs"; if (ownerLockFPs < 0) { resultHTML += "Owner's Lock FPs: 0 FPs (The sum of 1.9 contributions exceeds the total GB cost. This usually means the rewards entered are too high for the GB level cost, or the owner has already placed FPs.)"; } else { resultHTML += "Owner's Lock FPs: " + ownerLockFPs.toFixed(2) + " FPs"; } document.getElementById("result").innerHTML = resultHTML; }

Leave a Reply

Your email address will not be published. Required fields are marked *