Created
October 17, 2014 08:02
-
-
Save jpillora/24e0d0d92217e004bd67 to your computer and use it in GitHub Desktop.
Battlelog: BF4: Open all battlepacks
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
//submit one, look at the network tab for the post-check-sum | |
//paste into console | |
var postCheckSum = "5f5a7b128a"; | |
$(".battlepack-item .btn").each(function() { | |
var id = $(this).attr("data-open-pack"); | |
$.post("http://battlelog.battlefield.com/bf4/battlepacks/openpack/"+id, {"packId":id, "post-check-sum":postCheckSum}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment