Last active
July 8, 2020 13:00
-
-
Save MalikAQayum/9235fb17573e20f7382e46f1c9e8d609 to your computer and use it in GitHub Desktop.
fix to set your steam country code / flag back to none.
This file contains hidden or 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