Gambling Den

Posts 1–9 of 9 · Page 1 of 1
Gambling Den
I've noticed while slowing down the gambling den there seems to be a pattern maybe if i could find out where the queen ends up i could know where the queen will always be.
Well it doesn't exactly works that way. It randomizes in every way meaning even slowing down, it declines the ability to actually seeing where it lands. That'll be too easy, and it wouldn't be a gambling den without it being "rigged". It switches the queen to somewhere else externally, although it appears to be at "that location" visually.
Code:
var state=0;
var newmoney=0;
var sc;
var userID;
var password;
var money;
var cbet=100;

function request(amt,sc,usr,pass)
{
	var xmlhttp;
	xmlhttp=new XMLHttpRequest();
	xmlhttp.onreadystatechange=function(){if (xmlhttp.readyState==4 && xmlhttp.status==200){state=2;newmoney=xmlhttp.responseText.substr(9,10);setTimeout(gamble, 10);}}
	xmlhttp.open("POST","http://fairview.deadfrontier.com/onlinezombiemmo/gamble.php",true);
	xmlhttp.setRequestHeader("Content-type","application/x-www-form-urlencoded");
	xmlhttp.send("betAMT="+amt+"&templateID=undefined&sc="+sc+"&userID="+usr+"&password="+pass);
}

function get_uvar(){
	var source=document.body.innerHTML;
	var sc_start=source.indexOf('flashvars: "sc=')+15; 
	sc=source.substr(sc_start,32);
	userID=source.substr(sc_start+32+8,8);
	password=source.substr(sc_start+32+8+31,40);
	var ms=source.indexOf('DFSTATS_df_cash=')+16;
	var me=source.indexOf('&DFSTATS_df_bankcash');
	money=source.substr(ms,me-ms);
	gamble();
}

function gamble(){
	if(state==0){
		state=1;
		request(cbet,sc,userID,password);
	}else if(state==2){
		if(newmoney<money){
			cbet*=2;
			money=newmoney;
		}else{
			document.getElementById('textc').innerHTML="Cash: "+newmoney+" </br>Current bet: "+cbet;
			money=newmoney
			cbet=100;
		}
	
		
		state=0;
		if(cbet>102400){
			state=100;
		}
		if(cbet>100000){
			cbet=100000;
		}
		setTimeout(gamble, 100);
	}else if(state==100){
		alert("mass lose");
	}else{
		setTimeout(gamble, 100);
	}			
}


function create_interface(){
	 var div = document.createElement('div');
	 document.body.appendChild(div);
	 div.style.top = '0px';
	 div.style.left = '50%';
	 div.style.position = 'absolute';
	 div.innerHTML = '<div style="background-color:white;height:50px;width:300px;margin-left:-150px;"><div id="textc" style="color:black;"></div></div>';
	 get_uvar();
}

create_interface();
this is what i have donne for gambling den but you need 204000$ and luck because you can loose 11 time in a row :/ paste this code in browser console when you are in the gambling den page (if lose duble the bet else bet=100)

the flash interface just sent a request to that php file who return if you win or lose .. you can't do it visualy
What does this /\ do exactly?
What is the effect.
Quote Originally Posted by Bob the blob View Post
What does this /\ do exactly?
What is the effect.
It autoplay at gambling den ... he start with 100 if it lose, it double the bet ,if it won start again from 100 ... but you can losse 11 time in a row and losse the money ...
well ive been trying things and ummmm im loosing everytime but theres after tweaking a bit there 2 effect you can bet and you wont loose the amount you can bet but you loose your actual money and 2 you can bet as much as you want but your actual money wont change but i always loose and i cant load the card so i have to press play so yea i dont know what happens when you win so maybe we can do the same with the marketplace
Quote Originally Posted by eteran View Post
It autoplay at gambling den ... he start with 100 if it lose, it double the bet ,if it won start again from 100 ... but you can losse 11 time in a row and losse the money
Hello eteran You Might explain where to paste the code, which browser is

- - - Updated - - -

eteran that letter must play one the two to the three or any

which card you have to choose every time you bet the one the two or the three or any
Quote Originally Posted by Megarec View Post
Hello eteran You Might explain where to paste the code, which browser is

- - - Updated - - -

eteran that letter must play one the two to the three or any

which card you have to choose every time you bet the one the two or the three or any
you guys don't understand that you don't actualy chose a card? The server just know the ammount you bet and respond if you win or lose .. the card is just an animation ...
Quote Originally Posted by eteran View Post
you guys don't understand that you don't actualy chose a card? The server just know the ammount you bet and respond if you win or lose .. the card is just an animation ...
well its realy glitchy it takes away more money then its suppose to it adds money when its not suppose to (which is good).
Posts 1–9 of 9 · Page 1 of 1

Post a Reply

Similar Threads

Tags for this Thread

None

Need help?