Mobile game parameter balancing and tuning

TRUETECH is engaged in the development, support and maintenance of iOS, Android, PWA mobile applications. We have extensive experience and expertise in publishing mobile applications in popular markets like Google Play, App Store, Amazon, AppGallery and others.
Development and support of all types of mobile applications:
Information and entertainment mobile applications
News apps, games, reference guides, online catalogs, weather apps, fitness and health apps, travel apps, educational apps, social networks and messengers, quizzes, blogs and podcasts, forums, aggregators
E-commerce mobile applications
Online stores, B2B apps, marketplaces, online exchanges, cashback services, exchanges, dropshipping platforms, loyalty programs, food and goods delivery, payment systems.
Business process management mobile applications
CRM systems, ERP systems, project management, sales team tools, financial management, production management, logistics and delivery management, HR management, data monitoring systems
Electronic services mobile applications
Classified ads platforms, online schools, online cinemas, electronic service platforms, cashback platforms, video hosting, thematic portals, online booking and scheduling platforms, online trading platforms

These are just some of the types of mobile applications we work with, and each of them may have its own specific features and functionality, tailored to the specific needs and goals of the client.

Showing 1 of 1 servicesAll 1735 services
Mobile game parameter balancing and tuning
Complex
ongoing support
FAQ
Our competencies:
Development stages
Latest works
  • image_mobile-applications_feedme_467_0.webp
    Development of a mobile application for FEEDME
    760
  • image_mobile-applications_xoomer_471_0.webp
    Development of a mobile application for XOOMER
    640
  • image_mobile-applications_rhl_428_0.webp
    Development of a mobile application for RHL
    1056
  • image_mobile-applications_zippy_411_0.webp
    Development of a mobile application for ZIPPY
    947
  • image_mobile-applications_affhome_429_0.webp
    Development of a mobile application for Affhome
    874
  • image_mobile-applications_flavors_409_0.webp
    Development of a mobile application for the FLAVORS company
    449

Mobile Game Balance Tuning

Balance isn't an Excel table with numbers updated quarterly. It's a living system where changing one parameter shifts the optimal choice point across the entire progression tree. Increased base sword damage 15%—players stop buying "Hero Sword" in shop, ARPU drops 12% in a week. This happens regularly.

Game balance solves multiple tasks simultaneously: difficulty management (not too easy, not too hard), economy management (who, when, and for what pays), and retention management (player wants to return tomorrow).

Mathematical Progression Models

Foundation of any balance—progression curve. For RPGs, strategies, and most casual games power-law or exponential relationships are used:

Next level cost:

cost(n) = base_cost × growth_factor^n

Example: base_cost = 100, growth_factor = 1.5. Then:

  • Level 1: 100
  • Level 5: ~759
  • Level 10: ~5766
  • Level 20: ~332,525

At growth_factor > 1.6 progression becomes too steep—player hits wall and either pays or leaves. At < 1.3 it's too gentle, no sense of achievement.

Level difficulty curve:

enemy_hp(level) = base_hp × (1 + level × difficulty_scale)
player_dps(level) = base_dps × (1 + level × power_scale)

Key parameter—ratio difficulty_scale / power_scale. If player gains power faster than difficulty grows (power_scale > difficulty_scale)—game becomes trivial mid-game. If slower—pay-wall appears.

Instrumentation and Process

Balance isn't done blind—it needs data. Use combination:

GameAnalytics / PlayFab Analytics — check retention by levels, pass rate, first exit point:

// Log death with context
GameAnalytics.NewProgressionEvent(
    GAProgressionStatus.Fail,
    "world_1", "level_07",
    score: remainingHP  // health at death as difficulty proxy
);

// Log completion time
GameAnalytics.NewDesignEvent("Level:CompletionTime:world1_07",
    (float)completionTime.TotalSeconds);

From score = remainingHP on Fail you see how close player came to victory. remainingHP = 5% means "almost beat"—slightly reduce difficulty. remainingHP = 80% means "didn't even start"—big balance gap.

Google Sheets / Airtable as balance sheet. Enemy parameters, items, abilities—in table with formulas. Changing one cell recalculates all dependent values. Then JSON/CSV exports to game via Remote Config or Addressables:

// Unity: load balance table from Addressables
var balanceHandle = Addressables.LoadAssetAsync<BalanceConfig>("balance_config");
await balanceHandle.Task;
BalanceManager.Instance.ApplyConfig(balanceHandle.Result);

Remote Config for balance hot-patch. Critical parameters (drop rate, shop prices, damage multipliers) via Firebase Remote Config—change without update:

var remoteConfig = FirebaseRemoteConfig.DefaultInstance;
await remoteConfig.FetchAndActivateAsync();

float bossHealthMultiplier = (float)remoteConfig.GetValue("boss_health_multiplier").DoubleValue;
float goldDropRate = (float)remoteConfig.GetValue("gold_drop_rate").DoubleValue;

Economy: Three Pillars

Currency sources: quests, levels, daily bonuses, achievements, sometimes ads. Should be predictable—player plans accumulation.

Currency sinks: upgrades, consumables, content unlocks, cosmetics. Should consume actively, otherwise currency devalues.

Exchange rate: real-world time needed for game value unit without payment. This is the main monetization lever.

Balance is healthy if time to goal without payment stays reasonable (1–3 days to next meaningful goal) and payment accelerates but doesn't block progress. Exception: cosmetic-only monetization—different balance.

Typical problem signals in analytics:

Symptom Likely Cause
Day-7 retention drops sharply on specific level Too high difficulty, pay-wall
First purchase conversion < 1% No sense of "need" for currency
High ARPU but DAU dropping Monetization too aggressive, turns players away
Average session < 3 minutes No "one more run" mechanic, loop too short

PvP and Multiplayer: Matchmaking and Rating

In PvP games balance gets complex with matchmaking system. ELO-like systems (TrueSkill, Glicko-2) are base, but with mobile constraints: can't hold player in queue long. Typical compromise—tight skill range first 15 seconds of queue, wider after:

float skillRange = Mathf.Lerp(50f, 300f,
    Mathf.Clamp01(queueTime / maxQueueTime));
var opponent = MatchmakingService.FindOpponent(playerRating, skillRange);

Log match data and analyze: if top 10% win rate > 75%—rating system doesn't work.

Balance Iteration Process

Iteration should be fast. Scheme:

  1. Hypothesis: "Level 12 too hard—pass rate 23%, norm 55-65%"
  2. Change: reduce level enemy HP 20% via Remote Config
  3. Rollout: to 10% audience (A/B test via Firebase)
  4. Measure: in 3 days check pass rate and retention in experimental group
  5. Decide: if pass rate 58% and retention didn't drop—rollout to 100%

Without A/B testing balance iterations are blind flights. Change might improve one metric and kill another.

What's Included

  • Audit current analytics: retention by level, drop points, economic flows
  • Develop or audit progression mathematical model
  • Set up analytics events for balance data
  • Extract balance parameters to Remote Config / Addressables for hot-patch
  • Design balance sheet with dependencies
  • A/B testing setup for iterations
  • PvP matchmaking recommendations (if applicable)

Timeline

Audit and balance recommendations for existing game: 3–5 days. Full system design from scratch + analytics: 2–4 weeks. Cost calculated individually.