Console Game Trophy/Achievement Completion Percentage Calculator
ANA›Life Services Authority›National Calculator Authority›Console Game Trophy/Achievement Completion Percentage Calculator
.calc-container { max-width: 640px; margin: 2rem 0; padding: 1.5rem; background: #fff; border: 1px solid #ddd; border-radius: 8px; box-shadow: 0 1px 3px rgba(0,0,0,0.06); font-family: system-ui, -apple-system, sans-serif; } .calc-container h3 { font-family: Georgia, serif; font-size: 1.15rem; color: #1a1a1a; margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--ac, #3d5a80); } .calc-row { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; flex-wrap: wrap; } .calc-row label { min-width: 160px; font-size: 0.9rem; color: #333; font-weight: 500; } .calc-row input[type="number"], .calc-row select { flex: 1; min-width: 120px; max-width: 200px; padding: 0.5rem 0.6rem; border: 1px solid #ccc; border-radius: 4px; font-size: 0.9rem; font-family: system-ui, sans-serif; color: #1a1a1a; background: #fafaf8; } .calc-row input:focus, .calc-row select:focus { outline: none; border-color: var(--ac, #3d5a80); box-shadow: 0 0 0 2px rgba(26,74,138,0.12); } .calc-row .unit { font-size: 0.82rem; color: #888; min-width: 30px; } .calc-btn { display: inline-block; margin-top: 0.5rem; padding: 0.55rem 1.5rem; background: var(--ac, #3d5a80); color: #fff; border: none; border-radius: 4px; font-size: 0.9rem; font-weight: 600; cursor: pointer; font-family: system-ui, sans-serif; } .calc-btn:hover { opacity: 0.9; } .calc-result { margin-top: 1.25rem; padding: 1rem 1.25rem; background: #f0f6fc; border-left: 3px solid var(--ac, #3d5a80); border-radius: 0 6px 6px 0; display: none; } .calc-result.visible { display: block; } .calc-result-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: #666; margin-bottom: 0.25rem; } .calc-result-value { font-size: 1.6rem; font-weight: 700; color: var(--ac, #3d5a80); } .calc-result-detail { font-size: 0.85rem; color: #555; margin-top: 0.5rem; line-height: 1.5; } .calc-note { margin-top: 1rem; font-size: 0.8rem; color: #888; font-style: italic; } .calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-top: 0.75rem; } .calc-grid-item { padding: 0.6rem 0.8rem; background: #f8f9fa; border-radius: 4px; border: 1px solid #eee; } .calc-grid-item .label { font-size: 0.75rem; color: #888; text-transform: uppercase; letter-spacing: 0.04em; } .calc-grid-item .value { font-size: 1.1rem; font-weight: 600; color: #1a1a1a; } @media (max-width: 720px) { .calc-row { flex-direction: column; align-items: flex-start; gap: 0.3rem; } .calc-row label { min-width: auto; } .calc-row input[type="number"], .calc-row select { max-width: 100%; width: 100%; } .calc-grid { grid-template-columns: 1fr; } } .calc-chart { margin: 1rem 0; text-align: center; } .calc-chart svg { max-width: 100%; height: auto; } .calc-chart-legend { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem 1.2rem; margin-top: 0.6rem; font-size: 0.8rem; color: #555; } .calc-chart-legend span { display: inline-flex; align-items: center; gap: 0.3rem; } .calc-chart-legend i { display: inline-block; width: 10px; height: 10px; border-radius: 2px; font-style: normal; } .calc-related { max-width: 640px; margin: 2rem 0 1rem; padding: 1.25rem 1.5rem; background: #f8f9fa; border: 1px solid #e8e8e8; border-radius: 8px; } .calc-related h3 { font-family: Georgia, serif; font-size: 1rem; color: #1a1a1a; margin: 0 0 0.75rem; padding-bottom: 0.4rem; border-bottom: 2px solid var(--ac, #3d5a80); } .calc-related-list { list-style: none; padding: 0; margin: 0 0 0.75rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem 1.5rem; } .calc-related-list li a { font-size: 0.88rem; color: var(--ac, #3d5a80); text-decoration: none; } .calc-related-list li a:hover { text-decoration: underline; } .calc-browse-all { margin: 0.5rem 0 0; font-size: 0.9rem; font-weight: 600; } .calc-browse-all a { color: var(--ac, #3d5a80); text-decoration: none; } .calc-browse-all a:hover { text-decoration: underline; } @media (max-width: 720px) { .calc-related-list { grid-template-columns: 1fr; } }
Console Game Trophy/Achievement Completion Percentage Calculator
Calculate your trophy or achievement completion percentage. Supports both simple achievement counts and PlayStation-style weighted trophy tiers (Bronze, Silver, Gold, Platinum).
### Mode
Calculation Mode:
Simple (Achievements Unlocked / Total) Weighted PlayStation Trophies
### Simple Achievement Mode
Achievements Unlocked:
Total Achievements in Game:
### PlayStation Trophy Mode
Enter the number of each trophy type you have earned and the total available in the game.
Trophy Type Points Each Earned Total Available
🥉 Bronze 15
🥈 Silver 30
🥇 Gold 90
🏆 Platinum 300
Calculate ...
function conToggleMode() { var mode = document.getElementById('con-mode').value; document.getElementById('con-simple-section').style.display = (mode === 'simple') ? 'block' : 'none'; document.getElementById('con-weighted-section').style.display = (mode === 'weighted') ? 'block' : 'none'; document.getElementById('con-result').innerHTML = '...'; }
function conCalc() { var resultDiv = document.getElementById('con-result'); var mode = document.getElementById('con-mode').value;
if (mode === 'simple') { var unlocked = parseFloat(document.getElementById('con-unlocked').value); var total = parseFloat(document.getElementById('con-total').value);
if (isNaN(unlocked) || isNaN(total)) { resultDiv.innerHTML = 'Please enter both the number of achievements unlocked and the total available.'; return; } if (unlocked Total achievements must be greater than 0, and unlocked cannot be negative.'; return; } if (unlocked > total) { resultDiv.innerHTML = 'Achievements unlocked cannot exceed total achievements available.'; return; } if (!Number.isInteger(unlocked) || !Number.isInteger(total)) { resultDiv.innerHTML = 'Achievement counts must be whole numbers.'; return; }
var pct = (unlocked / total) * 100; var remaining = total - unlocked; var grade = conGetGrade(pct);
resultDiv.innerHTML = '### Results ' + 'Completion Percentage: ' + pct.toFixed(2) + '%
' + 'Achievements Unlocked: ' + unlocked + ' / ' + total + '
' + 'Remaining: ' + remaining + ' achievement' + (remaining !== 1 ? 's' : '') + '
' + 'Completion Grade: ' + grade + '
' + conProgressBar(pct);
} else { var bronzeE = parseFloat(document.getElementById('con-bronze-earned').value) || 0; var bronzeT = parseFloat(document.getElementById('con-bronze-total').value) || 0; var silverE = parseFloat(document.getElementById('con-silver-earned').value) || 0; var silverT = parseFloat(document.getElementById('con-silver-total').value) || 0; var goldE = parseFloat(document.getElementById('con-gold-earned').value) || 0; var goldT = parseFloat(document.getElementById('con-gold-total').value) || 0; var platE = parseFloat(document.getElementById('con-platinum-earned').value) || 0; var platT = parseFloat(document.getElementById('con-platinum-total').value) || 0;
var inputs = [bronzeE, bronzeT, silverE, silverT, goldE, goldT, platE, platT]; for (var i = 0; i All trophy counts must be non-negative whole numbers.'; return; } } if (bronzeE > bronzeT) { resultDiv.innerHTML = 'Bronze earned cannot exceed Bronze total.'; return; } if (silverE > silverT) { resultDiv.innerHTML = 'Silver earned cannot exceed Silver total.'; return; } if (goldE > goldT) { resultDiv.innerHTML = 'Gold earned cannot exceed Gold total.'; return; } if (platE > platT) { resultDiv.innerHTML = 'Platinum earned cannot exceed Platinum total.'; return; }
var totalTrophies = bronzeT + silverT + goldT + platT; if (totalTrophies === 0) { resultDiv.innerHTML = 'Please enter at least one trophy type with a total greater than 0.'; return; }
// PlayStation trophy point weights var BRONZE_PTS = 15; var SILVER_PTS = 30; var GOLD_PTS = 90; var PLAT_PTS = 300;
var pointsEarned = (bronzeE * BRONZE_PTS) + (silverE * SILVER_PTS) + (goldE * GOLD_PTS) + (platE * PLAT_PTS); var pointsTotal = (bronzeT * BRONZE_PTS) + (silverT * SILVER_PTS) + (goldT * GOLD_PTS) + (platT * PLAT_PTS);
var weightedPct = (pointsEarned / pointsTotal) * 100;
var totalEarned = bronzeE + silverE + goldE + platE; var simplePct = (totalEarned / totalTrophies) * 100; var grade = conGetGrade(weightedPct);
resultDiv.innerHTML = '### Results ' + 'Weighted Completion (by points): ' + weightedPct.toFixed(2) + '%
' + 'Simple Completion (by count): ' + simplePct.toFixed(2) + '%
' + 'Trophy Points Earned: ' + pointsEarned + ' / ' + pointsTotal + '
' + 'Trophies Earned: ' + totalEarned + ' / ' + totalTrophies + '
' + '' + '🥉 Bronze: ' + bronzeE + '/' + bronzeT + ' 🥈 Silver: ' + silverE + '/' + silverT + ' 🥇 Gold: ' + goldE + '/' + goldT + ' 🏆 Platinum: ' + platE + '/' + platT + '
' + 'Completion Grade: ' + grade + '
' + conProgressBar(weightedPct); } }
function conProgressBar(pct) { var color = pct >= 100 ? '#gold' : pct >= 75 ? '#4caf50' : pct >= 50 ? '#2196f3' : pct >= 25 ? '#ff9800' : '#f44336'; if (pct >= 100) color = '#ffd700'; return '' + '' + '' + (pct >= 10 ? pct.toFixed(1) + '%' : '') + '' + ''; }
function conGetGrade(pct) { if (pct >= 100) return '🏆 Platinum / 100% Complete!'; if (pct >= 90) return '🥇 Gold — Outstanding'; if (pct >= 75) return '🥈 Silver — Great Progress'; if (pct >= 50) return '🥉 Bronze — Halfway There'; if (pct >= 25) return '📘 Apprentice — Keep Going'; return '🎮 Just Started'; }
#### Formulas
Simple Mode: Completion % = (Achievements Unlocked ÷ Total Achievements) × 100
Weighted PlayStation Trophy Mode: Points Earned = (Bronze × 15) + (Silver × 30) + (Gold × 90) + (Platinum × 300) Points Total = (Bronzetotal × 15) + (Silvertotal × 30) + (Goldtotal × 90) + (Platinumtotal × 300) Weighted Completion % = (Points Earned ÷ Points Total) × 100
#### Assumptions & References
More Calculators
- Wood Stain & Finish Coverage Calculator
- Window U-Factor and Solar Heat Gain Coefficient Savings Calculator
- Wood Moisture Content Calculator
- Shelf Load & Sag Calculator
- Youth Sports Practice Drill Timer & Volume Calculator
- Team League Standings & Points Calculator
- CFM per Room Calculator
- Project Budget Estimator
- Contractor Hourly Rate Calculator
- Home Renovation ROI Calculator
- Contractor Contract Value Calculator
- AI Contractor ROI Calculator
Read Next
Study Time Planner Authority Network America › Life Services Authority › National Calculator Authority .calc-container { max-width: 640px;...