Skip to content

Instantly share code, notes, and snippets.

@MalikAQayum
Last active July 8, 2020 13:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MalikAQayum/9235fb17573e20f7382e46f1c9e8d609 to your computer and use it in GitHub Desktop.
Save MalikAQayum/9235fb17573e20f7382e46f1c9e8d609 to your computer and use it in GitHub Desktop.
fix to set your steam country code / flag back to none.
/* 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