Report LinksWe do not store any files or images on our server. XenPaste only index and link to content provided by other non-affiliated sites. If your copyrighted material has been posted on XenPaste or if hyperlinks to your copyrighted material are returned through our search engine and you want this material removed, you must contact the owners of such sites where the files and images are stored.
1.Go to https://socialclub.rockstargames.com/activate
2.Sign in.
3.Press "Use Rockstar Code"
4.Press ctrl+shift+j (to open console).
5.Paste the following code below and click enter.
6.Follow the prompts and begin generating+checking!
Code:
document.getElementsByName("voucher")[0].setAttribute("id", "input");
document.getElementsByName("voucher-preview")[0].setAttribute("id", "redeem-code");
var speed = prompt("Speed of checker/gen (Recommended 1000 for fast pcs, 500 for slow)")
function generateCode() {
var code = "";
var chars = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
for (var i = 0; i < 4; i++)
code += chars.charAt(Math.floor(Math.random() * chars.length));
return code;
}
function main() {
document.getElementById("input").value = generateCode()+ "-"+ generateCode()+ "-"+ generateCode()+"-"+ generateCode();
document.getElementById("redeem-code").click();
}