<?php
// Игра Рулетка
// Created by ENTER 2oo8 г
// Icq 633748
Error_Reporting(E_ALL & ~E_NOTICE);
$b = getenv('HTTP_USER_AGENT');
$ip = getenv('REMOTE_ADDR');
echo "
<?xml version=\"1.0\" encoding=\"UTF-8\"?>
<!DOCTYPE html PUBLIC \"-//WAPFORUM//DTD XHTML Mobile 1.0//EN\" \"http://www.wapforum.org/DTD/xhtml-mobile10.dtd\">
<html xmlns=\"http://www.w3.org/1999/xhtml\"><head><body><title>Рулетка</title>
<script language=\"JavaScript\">
var cuMsg = 'MouseOver Message!';
function update(msg) {
var pad_str=\"\";
n = msg.length;
if(n<80) {
pad = (80-n)/2;
for(var i=0; i<pad; i++) {
pad_str+=\" \";
}
}
cuMsg = pad_str + msg;
document.ccMsg.field.value = cuMsg;
}
function none()
{
alert(\"Минимальная сумма для вывода 10$\");
}
</SCRIPT>
<style type=\"text/css\">
body {
text-align:center;
max-width: 600px;
margin: 3px auto;
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:12px;
background-color: snow;
background-image: url(img/bg.gif);
color: green;
text-align: left;
}
input.ibutton
{
color: black;
background-color:gray;
border-top: 1px solid #FFF;
border-left: 1px solid #FFF;
border-right: 1px solid #000;
border-bottom: 1px solid #000;
padding: 0px 2px 0px 2px;
}
div {
margin: 4px 0px;
padding: 0px;
}
a {
color: blue;
text-decoration: none;
}
a:hover {
color: blue;
text-decoration: underline;
.text2 {
background: #8D8D8D;
border: 1px solid #E0E0E0;
color: black;
font-family: Verdana, Tahoma, helvetica, sans-serif;
}.sub {font-weight: bold; height: 15px; margin-right: 10px; background: #ffffff url(img/bg_but.gif)}
div.c5{padding:1px 1px 1px 1px; background-color: gray;width:295px;
border: 1px solid tan; color: white }
</style>
<div align=center>";
if ($id == "start")
{
if ($mode == "1")
{
$on = "<a href=?id=start>Выключить</a>";
$p = "<meta http-equiv=\"refresh\" content=\"1; url=?id=start&mode=1\"/>";
}
else
{
$on = "<a href=?id=start&mode=1>Включить</a>";
}
echo $p;
$info = "$ip|$b";
$file = file("baza.dat");
foreach($file as $key => $value)
{
if(@strstr(trim($value),$info))
{
$e = "1";
$key_ = $key;
break;
}
else
{
$e = "0";
}
}
if ($e == "0" or $e == "")
{
$write = "$info|0|0|0";
//@chmod("baza.dat", 0777);
$fopen = fopen("baza.dat", "a");
fwrite($fopen, "$write\n");
}
$exp = explode("|", $file[$key_]);
$rand_1 = rand(1,9);
$rand_2 = rand(1,9);
$rand_3 = rand(1,9);
//$rand_1 = 6;$rand_2 = 6;$rand_3 = 6;
$loto = "
<table><tr>
<td>$rand_1</td>
<td>$rand_2</td>
<td>$rand_3</td>
</tr></table>
";
$loto = str_replace("1","<img src=img/1.gif>",$loto);
$loto = str_replace("2","<img src=img/2.gif>",$loto);
$loto = str_replace("3","<img src=img/3.gif>",$loto);
$loto = str_replace("4","<img src=img/4.gif>",$loto);
$loto = str_replace("5","<img src=img/5.gif>",$loto);
$loto = str_replace("6","<img src=img/6.gif>",$loto);
$loto = str_replace("7","<img src=img/7.gif>",$loto);
$loto = str_replace("8","<img src=img/8.gif>",$loto);
$loto = str_replace("9","<img src=img/9.gif>",$loto);
$file=file("baza.dat");
$count = count($file);
if( (($rand_1 == $rand_2)||($rand_2 == $rand_3)) && ($rand_1 != $rand_3))
{
$win = "Вы выиграли <b>10$</b> <br />
<img src=img/win.jpg>";
$new_win = $exp[2]+1;
$bal_new = $exp[4]+10;
$write = "$exp[0]|$exp[1]|$new_win|$exp[3]|$bal_new\n";
$fopen = fopen("baza.dat","w+");
for ($i=0;$i<$count;$i++)
{
$file[$i] = str_replace($file[$key_],$write,$file[$i]);
fwrite($fopen,$file[$i]);
}
$expf = $exp[4]+10;
$win2 = $exp[2]+1;
$lose2 = $exp[3];
}
else if ($rand_1 == 7 and $rand_2 == 7 and $rand_3 == 7)
{
$win = "Вы выиграли <b>1000$</b> <br />
<img src=img/win.jpg>";
$new_win = $exp[2]+1;
$bal_new = $exp[4]+1000;
$write = "$exp[0]|$exp[1]|$new_win|$exp[3]|$bal_new\n";
$fopen = fopen("baza.dat","w+");
for ($i=0;$i<$count;$i++)
{
$file[$i] = str_replace($file[$key_],$write,$file[$i]);
fwrite($fopen,$file[$i]);
}
$expf = $exp[4]+1000;
$win2 = $exp[2]+1;
$lose2 = $exp[3];
}
else if(($rand_1 == $rand_2) && ($rand_2 == $rand_3))
{
$win = "Вы выиграли <b>500$</b> <br />
<img src=img/win.jpg>";
$new_win = $exp[2]+1;
$bal_new = $exp[4]+500;
$write = "$exp[0]|$exp[1]|$new_win|$exp[3]|$bal_new\n";
$fopen = fopen("baza.dat","w+");
for ($i=0;$i<$count;$i++)
{
$file[$i] = str_replace($file[$key_],$write,$file[$i]);
fwrite($fopen,$file[$i]);
}
$expf = $exp[4]+500;
$win2 = $exp[2]+1;
$lose2 = $exp[3];
}
else
{
$win = "Вы проиграли <br />
<img src=img/loss.jpg>";
$lose = $exp[3]+1;
$write = "$exp[0]|$exp[1]|$exp[2]|$lose|$exp[4]";
$fopen = fopen("baza.dat","w+");
for ($i=0;$i<$count;$i++)
{
$file[$i] = str_replace($file[$key_],$write,$file[$i]);
fwrite($fopen,$file[$i]);
}
$expf = $exp[4];
$win2 = $exp[2];
$lose2 = $exp[3]+1;
}
$all = $exp[2]+$exp[3]+1;
if ($win == "" or $expf == "")
{
$loto = "";
$win = "Начало игры";
$expf = "0";
$win2 = "0";
$lose2 = "0";
$all = "0";
}
$new_key = $key+234;
//if (trim($exp[4]) == "0")
if (trim($expf) == "0")
{
$sn = "<a href=# onClick=\"none()\"><small>Снять деньги</small></a>";
}
else
{
$sn = "<a href=?id=null&k=$new_key><small>Cнять деньги</small></a>";
}
echo
"$loto <br />
<a href=?id=start>Крутить</a> <br />
$win <br /><br />
Баланс: <font color=black><b>$expf $</font></b><br />
Выигрышей: <font color=black><b>$win2</font></b> <br />
Проигрышей: <font color=black><b>$lose2</font></b> <br />
<br />Cыграно игр: <font color=black><b>$all</font></b>
<br /> <br /> Автопилот:$on <br /> $sn <br />
";
echo "<br /><a href=?>Назад</a>";
}
else if ($id == "null")
{
$file=file("baza.dat");
$count = count($file);
$key = $k-234;
$exp1 = explode("|", $file[$key]);
$rt = $exp1[4];
if (trim($rt) == "0" or trim($rt) == "")
{
echo "Ты еще ничего не выиграл :)
<br /><img src=img/blockip.png> <br />
<br /><a href=?id=start>Назад</a>";
}
else
{
$fopen = fopen("baza.dat","w+");
for ($i=0;$i<$count;$i++)
{
$file[$i] = str_replace($file[$key],"",$file[$i]);
fwrite($fopen,$file[$i]);
}
echo "<font color=black>Вы сделали запрос на вывод денежной суммы <br /> в рамере
<b>$rt $</b>, Данная сумма будет прислана вам по почте в поздравительной открытке :)<br />
</font><img src=img/money.gif><br /><a href=?id=start>Назад</a>";
}
}
else
{
echo "
Игра Рулетка <br />
<a href=?id=start>начать</a>
<h3>Правила</h3> <br />
2 одинаковые картинки слева или справа - выигрыш <b>10 $</b> <br />
3 одинаковые картинки - выигрыш <b>500 $</b> <br />
3 вот таких рожы <img src=img/7.gif> - <b>1000$</b> <br />
</br /><br /><br /> <small><u>
created by ENTER, icq 633748 <br /></u></small> <font color=black size=1 face=verdana>
Дороботка и написание новых функций </font><br />
";
}
echo "
<br /><br /> <!-- интересно ? ыыыы
<a onMouseOver=\"update('[email protected]')\"
onMouseOut=\"update(' ')\"href=\"mailto:[email protected]\"><small>by ENTER</small></a></tr></table>
<FORM NAME=\"ccMsg\" onSubmit=\"return false\">
<input type=text maxlength=\"1\" name=field size=30 value=\"\" onChange=\"nochange()\"
style=\"color:black;cursor:default; background-color:white; border:white\"> -->
</div></body></html>";
?>