Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- var tried = "";
- var token = JSON.parse(localStorage.getItem("state")).account.token.access_token;
- function joinBlackjack(gameid) {
- grecaptcha.ready(function() {
- grecaptcha.execute('6LdfE8IUAAAAABLuc6iqkcPAk3t6gT5---xKFz0j').then(function(recaptcha) {
- fetch("https://api.zorgo.games/api/games/bj/join/" + gameid, {"credentials":"omit","headers":{"accept":"application/json","accept-language":"he-IL,he;q=0.9,en-US;q=0.8,en;q=0.7,nl;q=0.6","authorization":"Bearer " + token,"content-type":"application/json","sec-fetch-mode":"cors","sec-fetch-site":"same-site","x-client-id":"15747600981600.11132709368663685","x-nonce":"10784093"},"referrer":"https://zorgo.games/game/blackjack/lobby","referrerPolicy":"no-referrer-when-downgrade","body":"{\"g-recaptcha-response\":\"" + recaptcha + "\"}","method":"POST","mode":"cors"});
- });
- });
- }
- setInterval(function() {
- var split = window.location.href.split('/');
- if(split.length < 7)
- return;
- if(tried.indexOf(split[6]) == -1) {
- joinBlackjack(split[6]);
- tried += split[6] + ";";
- }
- }, 100);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement