0% found this document useful (0 votes)
139 views

My Script

This document contains code for a script on the freebitco.in website. The script sets initial values like a start betting amount of 0.00000001 BTC, a stop percentage of 0.001, and a maximum wait time of 10 milliseconds. It also tracks the number of games played, the user's initial balance, and initializes an object to analyze betting amounts and counts. The script provides functionality for a betting game on the freebitco.in site.

Uploaded by

somethinghay
Copyright
© © All Rights Reserved
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
139 views

My Script

This document contains code for a script on the freebitco.in website. The script sets initial values like a start betting amount of 0.00000001 BTC, a stop percentage of 0.001, and a maximum wait time of 10 milliseconds. It also tracks the number of games played, the user's initial balance, and initializes an object to analyze betting amounts and counts. The script provides functionality for a betting game on the freebitco.in site.

Uploaded by

somethinghay
Copyright
© © All Rights Reserved
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
You are on page 1/ 1

Script of freebitco.

in
var startValue = '0.00000001', // Don't lower the decimal point more than 4x of current balance

stopPercentage = 0.001, // In %. I wouldn't recommend going past 0.08

maxWait = 10, // In milliseconds

stopped = false,

stopBefore = 1; // In minutes

counterr = 1;

zareset = 0;

numGames = 1000;

balanceBefore = parseFloat($('#balance').text());

var analize = {};

analize['0.00000001'] = { multi: 0.00000001, count:0 }; //1

analize['0.00000002'] = { multi: 0.00000002, count:0 }; //2

analize['0.00000004'] = { multi: 0.00000004, count:0 }; //3

You might also like