From 280dcd3a1c425fb45224624cd750d6579269cad5 Mon Sep 17 00:00:00 2001 From: Dunedan Date: Thu, 17 Apr 2025 17:15:43 +0200 Subject: [PATCH] Tweak probabilities of tip categories With the introduction of multiplayer loading screen tips, categories of tips and probabilities of how often to show tips from a certain category got introduced. The original probabilities ended up showing multiplayer tips in 60% of the cases. As the number of multiplayer tips is still fairly small, this resulted in very repetitive occurrence of the same multiplayer tips over and over when loading multiplayer matches. This commit changes that to give single-player tips a higher probability for multiplayer matches. It also adds showing tips from the "Beginner" category for multiplayer games, as there are regularly new players who start their experience with 0 A.D. by playing multiplayer matches with friends, instead of playing single-player matches and who'll therefore benefit from those tips being shown for multiplayer matches as well. --- binaries/data/mods/public/gui/reference/tips/tipfiles.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/binaries/data/mods/public/gui/reference/tips/tipfiles.json b/binaries/data/mods/public/gui/reference/tips/tipfiles.json index 571c0548f7..148f29966d 100644 --- a/binaries/data/mods/public/gui/reference/tips/tipfiles.json +++ b/binaries/data/mods/public/gui/reference/tips/tipfiles.json @@ -2,7 +2,7 @@ { "name": "Beginner", "loadingScreenOccurrence_SP": 0.33, - "loadingScreenOccurrence_MP": 0.0, + "loadingScreenOccurrence_MP": 0.15, "files": [ { "textFile": "autoqueue.txt", @@ -130,7 +130,7 @@ { "name": "Intermediate", "loadingScreenOccurrence_SP": 0.33, - "loadingScreenOccurrence_MP": 0.1, + "loadingScreenOccurrence_MP": 0.25, "files": [ { "textFile": "arrow_ship.txt", @@ -391,7 +391,7 @@ { "name": "Multiplayer", "loadingScreenOccurrence_SP": 0.0, - "loadingScreenOccurrence_MP": 0.6, + "loadingScreenOccurrence_MP": 0.3, "files": [ { "textFile": "dont_cheat.txt",