0% found this document useful (0 votes)
176 views3 pages

Test

This document contains code for a martingale betting script to be used on the website freebitco.in. The script doubles the bet after every loss according to martingale betting strategy. It runs bets automatically in intervals of 700 milliseconds up to 1000 rolls, or until profit/loss or balance limits are reached. The author provides contact details at the end to obtain a "higher script".

Uploaded by

simranjeet
Copyright
© Public Domain
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
176 views3 pages

Test

This document contains code for a martingale betting script to be used on the website freebitco.in. The script doubles the bet after every loss according to martingale betting strategy. It runs bets automatically in intervals of 700 milliseconds up to 1000 rolls, or until profit/loss or balance limits are reached. The author provides contact details at the end to obtain a "higher script".

Uploaded by

simranjeet
Copyright
© Public Domain
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 3

//Work Only if signup through ( Value = http://freebitco.in/?

r=37599977 )
//Email Me : [email protected]
//Martingale script
//Double bet on every lose ... base bet on win

//The number of rolls after which the script will stop


var number_of_rolls_limit = 1000;

//Change to 'true' if you want to stop after exceeding a certain profit


var profit_limit = true;
var profit_limit_value = 0.00000001;

//Change to 'true' if you want to stop after exceeding a certain loss


var loss_limit = true;
var loss_limit_value = 0.00000500;

//Base bet
var base_bet = 0.00000050;

//Do not change anything below this ... if you do, it will not be martingale
anymore ...
var payout = 2;
var on_lose_multiply_by = 1.05;
var number_of_rolls = 0;
var balance_one = document.getElementById("balance2").innerHTML.substr(0, 10);
document.getElementById("double_your_btc_stake").value = base_bet;
document.getElementById("double_your_btc_payout_multiplier").value = payout ;

//Advert Section
(function() {
'use strict';
var body = $('body');

body.prepend(
$('<div/>').attr('style',"position:fixed;top:48px;left:0;z-
index:999;width:360px;background-color:red;color: White; text-align: left; font-
size: 16px;")
.append(
$('<div/>').attr('id','autofaucet')
.append($('<p/>').attr('style','text-
decoration:underline;').text("Freebitco.in Hacking Script By Paul Smith ony"))
.append($('<p/>').text("This is DEMO Hacking Script Used
Once"))
.append($('<p/>').text("After your profit Refresh Browser To See your
Total balance"))
.append($('<p/>').text("<<Message Me>> To Instantly Get your
hacking Working script"))
.append($('<p/>').text("MESSAGE ME TO GET A HIGHER SCRIPT"))
.append($('<p/>').text("(Email: [email protected])"))
.append($('<p/>').text("(Telegram===> @Worldsmith284)"))
.append($('<p/>')
)
).click(function(){
var $temp = $('<input>').val("FREDOUXRT");
body.append($temp);
$temp.select();
document.execCommand("copy");
$temp.remove();
})
).prepend($('<style/>')
.text("#autofaucet p { margin: 0; margin-left: 2px; text-align: left; }")
)

function random(min,max){
return min + (max - min) * Math.random();
}
})();

//Change client seed after every roll

function client_seed() {
var text = "";
var possible = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";

for (var i = 0; i < 64; i++){


text += possible.charAt(Math.floor(Math.random() * possible.length));
}

document.getElementById("next_client_seed").value = text;
}

//Generate random integer between two limits

function Random_integer(min, max) {


return Math.floor(Math.random() * (max - min + 1)) + min;
}

//Bet Randomly

function Bet() {
if (Random_integer(1, 10000)%2==0) {
document.getElementById('double_your_btc_bet_hi_button').click();
}
else {
document.getElementById('double_your_btc_bet_lo_button').click();
}
}

//Stop the script

function stop(){
clearInterval(martingale);
}

//Initiate the script once

function play() {

if (document.getElementById('double_your_btc_bet_hi_button').disabled ===
false) {

won = document.getElementById('double_your_btc_bet_win').innerHTML;

if (won.match(/(\d+\.\d+)/) !== null) {


document.getElementById("double_your_btc_stake").value = base_bet;
}

lost = document.getElementById('double_your_btc_bet_lose').innerHTML;
if (lost.match(/(\d+\.\d+)/) !== null) {
current_bet_amount =
document.getElementById("double_your_btc_stake").value;
document.getElementById("double_your_btc_stake").value =
current_bet_amount*on_lose_multiply_by;
}

client_seed();

Bet();

number_of_rolls += 1;
balance_two = document.getElementById("balance2").innerHTML.substr(0, 10);
profit = balance_two - balance_one ;
loss = balance_one-balance_two;

if (profit_limit == true && profit >= profit_limit_value){


stop();
console.log("profit limit reached");
}

if (loss_limit == true && loss >= loss_limit_value){


stop();
console.log("loss limit reached");
}

if (number_of_rolls >= number_of_rolls_limit ){


stop();
console.log("rolls limit reached");
}
}
}

//Initiate the script after every 700 milliseconds

var martingale = setInterval(play, 700);//win if referral = 37599977();

You might also like