Je zit in de gevangenis
Je word over $verschil seconden vrijgelaten
ENDHTML;
}
else{
$spel = $_GET['spel'];
$owner = mysql_query("SELECT * FROM `[buildings]` WHERE `city`='{$data->land}' AND `type`='bj'");
$owner1 = mysql_query("SELECT * FROM `[buildings]` WHERE `city`='{$data->land}' AND `type`='bj'");
$owner3 = mysql_fetch_object($owner);
$owner2 = mysql_fetch_object($owner1);
if(isset($_GET['spel']) && mysql_num_rows($owner) == 1) {
if($owner3->owner !=""){
print "Dit casino is al door iemand in gebruik.";
}
elseif($data->cash < 500000){
print "Je hebt niet genoeg geld op zak, het kost €1.500,000 en je hebt maar €$data->cash Contant";
}
else{
mysql_query("UPDATE `[casino]` SET `owner`='$data->login' WHERE `spel`='$spel' AND `city`='{$data->city}'");
mysql_query("UPDATE `[users]` SET `cash`=`cash`-'1500000' WHERE `login`='{$_SESSION['login']}'");
print "Het is gelukt je hebt het casino gekocht.";
}
}
if($_GET['owner'] =='' && mysql_num_rows($owner1) == 1){
if($owner2->owner !=""){
print "Er is al een blackJack eigenaar!";
}
elseif($data->cash < 1500000){
print "Het kost €1.500.000 om een blackjack te kopen.";
}
else{
mysql_query("UPDATE `[buildings]` SET `owner`='$data->login' WHERE `city`='{$data->land}' AND `type`='bj'");
mysql_query("UPDATE `[users]` SET `cash`=`cash`-'1500000' WHERE `login`='{$_SESSION['login']}'");
print "Je bent nu De Trotste bezitter van een BlackJack Tafel";
}
}
}
?>