Skip to content

Instantly share code, notes, and snippets.

@Kowiz
Created July 5, 2017 01:18
Show Gist options
  • Save Kowiz/741c7e3e84ffdf83fdf5a2c31421f307 to your computer and use it in GitHub Desktop.
Save Kowiz/741c7e3e84ffdf83fdf5a2c31421f307 to your computer and use it in GitHub Desktop.
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