As a passionate Fortnite streamer who goes live most nights, tracking your performance is crucial. In Fortnite, "crown wins" are a prestigious achievement: every time you win a game, you earn a crown. Winning a game while wearing a crown—either by having won the previous game or by defeating an opponent who has one—counts as a crown win. This metric is a valuable indicator of a player’s skill in the game.
I recently reached out to osirion.gg, a fantastic platform dedicated to improving Fortnite gameplay, with a request for a new feature: a crown win tracker. They responded promptly and added the ability to incorporate crown wins into a stream overlay. This feature is a game-changer for streamers who want to showcase their prowess in real-time.
Adding the overlay will help you display your crown wins prominently, letting your audience keep track of your victories and appreciate your skill even more.
The crown win overlay will work with most streaming software, and for those that support CSS customisation, it's easy to make some changes to customise how things look. I've created some CSS snippets below, that allow you to customise how this will look on your stream.
To remove the default "Crown Wins" text:
.overlay-crown-wins-text-info {
display: none;
}
To add text before the number of crown wins:
.overlay-crown-wins-text-count::before {
content: 'Crown Wins so far: ';
}
To add text after the number of crown wins:
.overlay-crown-wins-text-count::after {
content: ' Crown Wins so far';
}
To change the default color of the text:
.overlay-crown-wins-text {
color: gold;
}
Finally, if we put it all together, we should end up with something like this
.overlay-crown-wins-text-info {
display: none;
}
.overlay-crown-wins-text-count::before {
content: 'I have ';
}
.overlay-crown-wins-text-count::after {
content: ' crown wins this season';
}
.overlay-crown-wins-text {
color: gold;
}
Of course, you don't have to use the text I've provided, and you can certainly add a local translation using the above methods.You also won't see the "by osirion.gg" watermark if you are a Osirion Pro user, as I am.
Happy streaming, and may your crown wins keep piling up!
Comments
Post a Comment