Moin Community,
hier mal ein Trick um euer Abzeichen auf dem Profil zu entfernen.
Anleitung:
1. Öffnet euer Steam-Profil im Browser und geht auf die Abzeichen-Einstellungen.
2. Rechtsklick irgendwo -> Untersuchen -> Konsole
3. Folgenden Code in die Konsole abschicken und das Steam-Profil speichern.
QuoteDisplay Morevar access_token = "";
var badgeid = 0;
if (window.location.href.indexOf("steampowered") > -1) {
access_token = $J("[data-loyaltystore]").data("loyaltystore").webapi_token;
}
else if(window.location.href.indexOf("steamcommunity") > -1)
{
access_token = JSON.parse($J("#profile_edit_config").attr("data-profile-edit")).webapi_token;
SetFavoriteFeaturedBadge(access_token, badgeid);
}
else
{
console.log("go to: https://store.steampowered.com/points/shop or https://steamcommunity.com/my/edit/info");
SetFavoriteFeaturedBadge(access_token, badgeid);
}function SetFavoriteFeaturedBadge(access_token, badgeid) {
$J.post( 'https://api.steampowered.com/IPlayerService/SetFavoriteBadge/v1?', {
access_token: access_token,
badgeid: badgeid
});
}
Quelle: [Steam Guide]