7amadayedh
Digital Asset Manager
2
MONTHS
2 2 MONTHS OF SERVICE
LEVEL 1
100 XP
Heya y'all.
I got great news for you!
Sick of csgodouble.com? Got no free credits to use for a roulette and didn't get a chance to bot csgodouble.com?
Have no fear, I am here.
I've found a new csgo roulette site with a bot included, this is not my work, just found it.
Go to http://csgospins.com
Work is not mine but I have tested it for a few minutes and will report my winnings later.
Code is written in Javascript, so all you need to do is read the code below and make sure you know how to run it.
What u need to know:
1. Bot is betting on last rolled color.
2. Bot is not betting on green color, if green was rolled last time then bot will bet on color which was before
3. If bot lost bet then value of bet will be increased twice.
4. Please be aware that you can lose all of your points.
5. The start bet is set to 10, it's the lowest possible amount.
6. To start the bot just paste code into chrome console (F12).
PROMO CODE: "NULLED.CR" for 500 free coins to start with this nice script for profit!
Use promo code: "NULLED.CR" for this website
Edited by yenari, 11 March 2016 - 05:51 AM.
I got great news for you!
Sick of csgodouble.com? Got no free credits to use for a roulette and didn't get a chance to bot csgodouble.com?
Have no fear, I am here.
I've found a new csgo roulette site with a bot included, this is not my work, just found it.
Go to http://csgospins.com
Work is not mine but I have tested it for a few minutes and will report my winnings later.
Code is written in Javascript, so all you need to do is read the code below and make sure you know how to run it.
What u need to know:
1. Bot is betting on last rolled color.
2. Bot is not betting on green color, if green was rolled last time then bot will bet on color which was before
3. If bot lost bet then value of bet will be increased twice.
4. Please be aware that you can lose all of your points.
5. The start bet is set to 10, it's the lowest possible amount.
6. To start the bot just paste code into chrome console (F12).
PROMO CODE: "NULLED.CR" for 500 free coins to start with this nice script for profit!
Code:
var StatusElem = document.getElementById("AnnouncementText");
var BalanceElem = document.getElementById("balance");
var RedButtonElem = document.getElementById("panelRed").getElementsByClassName("betButton")[0];
var BlackButtonElem = document.getElementById("panelBlack").getElementsByClassName("betButton")[0];
var BetTokensElems = document.getElementsByClassName("betshort");
var ResultsElems = document.getElementById("past").getElementsByTagName("div");
var betplaced = false;
var betcount = 1;
var betvalue = 10;
function GetStatus()
{
return StatusElem.innerText;
}
function GetBalance()
{
return BalanceElem.innerText;
}
function GetLastResult(i)
{
var last = ResultsElems[ResultsElems.length - i].className;
switch(last)
{
case "ball ball-r":
return "red";
case "ball ball-b":
return "black";
case "ball ball-g":
return "green";
}
}
function SetBetAmount(amount)
{
for(var i = 0;i -1
}
function MainLoop()
{
var activity = GetStatus();
var lastresult = GetLastResult(1);
if(hasSubString(activity, "Rolling in"))
{
if(!betplaced)
{
console.log("Bet Number: " + betcount)
if(betcount > 1)
{
if(placedbet != lastresult)
{
console.log("Last Bet Status: LOSE");
betvalue+=betvalue;
}
else
{
betvalue = 10;
console.log("Last Bet Status: WIN");
}
}
if(betvalue < GetBalance())
{
if(lastresult != "green")
{
placedbet = lastresult;
PlaceBet(placedbet,betvalue);
}
else
{
placedbet = GetLastResult(2);
PlaceBet(placedbet,betvalue);
}
}
else
{
clearInterval(interval);
console.log("LOSER");
}
betcount++;
}
}
else
{
betplaced = false;
}
}
var interval = setInterval(MainLoop, 8000);
Edited by yenari, 11 March 2016 - 05:51 AM.