fix to set your steam country code / flag back to none.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* setting your country code / country flag back to none. | |
go to: https://steamcommunity.com/my/edit/ | |
open console (chrome f12) | |
paste the below request. | |
*/ | |
$J.post( "https://steamcommunity.com/profiles/"+g_rgProfileData.steamid+"/edit/", { | |
sessionID: g_sessionID, | |
type: "profileSave", | |
weblink_1_title: "", | |
weblink_1_url: "", | |
weblink_2_title: "", | |
weblink_2_url: "", | |
weblink_3_title: "", | |
weblink_3_url: "", | |
personaName: g_rgProfileData.personaname, | |
real_name: $J("input[name=real_name]").val(), | |
customURL: g_rgProfileData.url.split('/')[4], | |
country: "", | |
state: "", | |
city: "", | |
summary: $J("textarea[name=summary]").val(), | |
json: 1 | |
}); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment