Created
July 5, 2017 01:18
-
-
Save Kowiz/741c7e3e84ffdf83fdf5a2c31421f307 to your computer and use it in GitHub Desktop.
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
function openPack(){ | |
jQuery.post("https://steamcommunity.com/profiles/76561198198486997/stickersopen").done(function( data ){ | |
if(data.stickerpacks>=1){ | |
openPack(); | |
}else{ | |
for(i=0;i<15;i++){ | |
jQuery.post("https://steamcommunity.com/profiles/76561198198486997/stickerscomplete/", { scene: i } ); | |
} | |
} | |
}); | |
} | |
openPack(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment