
zcriptz
1
Ómicron
Programador
Verificación en dos pasos activada
Verificado por Whatsapp
Suscripción a IA
Ayer vi un tutorial de como ganar dinero de SatoshiCannon
Vi que el combustible se gasta rápidamente y no te permite ganar fácilmente...
Así que con este código podrán hacer que se reponga el combustible automáticamente.
1.- Entrar y loguearse en SatoshiCannon.
2.- Presionar F12 e ir a Consola/e.
3.- Poner el siguiente código y enter.
Se debe dejar la ventana abierta.
Espero que les sirva, saludos!
PD: Si van a hacer algo en el juego, háganlo en una nueva pestaña porque si se refresca no seguirá reponiendo el combustible.
Vi que el combustible se gasta rápidamente y no te permite ganar fácilmente...
Así que con este código podrán hacer que se reponga el combustible automáticamente.
1.- Entrar y loguearse en SatoshiCannon.
2.- Presionar F12 e ir a Consola/e.
3.- Poner el siguiente código y enter.
Se debe dejar la ventana abierta.
Insertar CODE, HTML o PHP:
function createRequestObject(){
var peticion;
var browser=navigator.appName;
if(browser=="Microsoft Internet Explorer"){
peticion=new ActiveXObject("Microsoft.XMLHTTP");
}else{
peticion=new XMLHttpRequest();
}
return peticion;
}
var http=new Array();
function ajax(url, callback, id, datos){
var act=Math.random();
http[act]=createRequestObject();
if(typeof datos != "undefined"){
http[act].open('post',url);
}else{
http[act].open('get',url);
}
http[act].onreadystatechange=function(){
if(http[act].readyState==4){
var texto=http[act].responseText;
callback(texto, id);
}
}
if(typeof datos != "undefined"){
http[act].setRequestHeader('Content-Type','application/x-www-form-urlencoded');
http[act].send(datos);
}else{
http[act].send(null);
}
}
function Elem(i){
return document.getElementById(i);
}
Elem('fuel_value').id = 'fuel_value2';
Elem('sat_value').id = 'sat_value2';
Elem('fuel_calc').id = 'fuel_calc2';
Elem('fuel_calc2').innerHTML += '<div id="fuel_value" style="display:none"></div><div id="fuel_calc" style="display:none"></div><div id="sat_value" style="display:none"></div>';
function getFuel(){
ajax('https://www.cannonsatoshi.com/account/fuel', setFuel);
}
setInterval(getFuel, 2000);
function setFuel(h){
var regex = /<p id="sat_value">(\d+)<\/p>/gi;
sat = regex.exec(h)[1];
Elem('sat_value2').innerHTML = sat;
var regex = /<p id="fuel_value">(\d+)<\/p>/gi;
max_fuel = regex.exec(h)[1];
Elem('fuel_value2').innerHTML = max_fuel;
Elem('fuel_calc2').width = '100%';
var regex = /name="buyf" value="(\d+)"/gi;
Fuel = regex.exec(h)[1];
if(Fuel != 0){
ajax('https://www.cannonsatoshi.com/account/fuel', setFuel, '', 'buyf='+Fuel+'&okbuy=comprar');
}
}
Espero que les sirva, saludos!
PD: Si van a hacer algo en el juego, háganlo en una nueva pestaña porque si se refresca no seguirá reponiendo el combustible.
Última edición: