game/lotoworkekr.php

121 lines
4.7 KiB
PHP
Raw Normal View History

2022-06-06 21:30:34 +00:00
<?php
const GAME = true;
2022-06-06 21:30:34 +00:00
include('_incl_data/__config.php');
include('_incl_data/class/__db_connect.php');
$u = User::start();
2022-06-06 21:30:34 +00:00
$body = file_get_contents('php://input');
$user = mysql_fetch_array(mysql_query('SELECT * FROM `users` WHERE `id` = "' . $body . '" LIMIT 1'));
if ($body == 'ekr') {
echo $u->info['money2'];
die();
2022-06-06 21:30:34 +00:00
}
if (!isset($user) || $user['id'] != $u->info['id']) {
echo "No user!";
} else {
if ($user['money2'] < 5) {
echo "No Ekr!";
} else {
$nrnd = rand(1, 100);
if ($nrnd <= 1) //t6
{
$droplistt = mysql_query('SELECT * FROM `loto` WHERE `type` = "t6"');
$y = mysql_fetch_array(mysql_query('SELECT COUNT(`type`) AS `COUNT` FROM `loto` WHERE `type` = "t6"'));
$rndt = rand(0, $y['COUNT'] - 1);
$i = 0;
while ($pl = mysql_fetch_array($droplistt)) {
if ($i == $rndt) {
$droplist = $pl;
}
$i++;
}
} elseif (($nrnd - 1) <= 7) // t5
{
$droplistt = mysql_query('SELECT * FROM `loto` WHERE `type` = "t5"');
$y = mysql_fetch_array(mysql_query('SELECT COUNT(`type`) AS `COUNT` FROM `loto` WHERE `type` = "t5"'));
$rndt = rand(0, $y['COUNT'] - 1);
$i = 0;
while ($pl = mysql_fetch_array($droplistt)) {
if ($i == $rndt) {
$droplist = $pl;
}
$i++;
}
} elseif (($nrnd - 1 - 7) <= 10) // t4
{
$droplistt = mysql_query('SELECT * FROM `loto` WHERE `type` = "t4"');
$y = mysql_fetch_array(mysql_query('SELECT COUNT(`type`) AS `COUNT` FROM `loto` WHERE `type` = "t4"'));
$rndt = rand(0, $y['COUNT'] - 1);
$i = 0;
while ($pl = mysql_fetch_array($droplistt)) {
if ($i == $rndt) {
$droplist = $pl;
}
$i++;
}
} elseif (($nrnd - 1 - 7 - 10) <= 15) // t3
{
$droplistt = mysql_query('SELECT * FROM `loto` WHERE `type` = "t3"');
$y = mysql_fetch_array(mysql_query('SELECT COUNT(`type`) AS `COUNT` FROM `loto` WHERE `type` = "t3"'));
$rndt = rand(0, $y['COUNT'] - 1);
$i = 0;
while ($pl = mysql_fetch_array($droplistt)) {
if ($i == $rndt) {
$droplist = $pl;
}
$i++;
}
} elseif (($nrnd - 1 - 7 - 10 - 15) <= 25) // t2
{
$droplistt = mysql_query('SELECT * FROM `loto` WHERE `type` = "t2"');
$y = mysql_fetch_array(mysql_query('SELECT COUNT(`type`) AS `COUNT` FROM `loto` WHERE `type` = "t2"'));
$rndt = rand(0, $y['COUNT'] - 1);
$i = 0;
while ($pl = mysql_fetch_array($droplistt)) {
if ($i == $rndt) {
$droplist = $pl;
}
$i++;
}
} else // t1
{
$droplistt = mysql_query('SELECT * FROM `loto` WHERE `type` = "t1"');
$y = mysql_fetch_array(mysql_query('SELECT COUNT(`type`) AS `COUNT` FROM `loto` WHERE `type` = "t1"'));
$rndt = rand(0, $y['COUNT'] - 1);
$i = 0;
while ($pl = mysql_fetch_array($droplistt)) {
if ($i == $rndt) {
$droplist = $pl;
}
$i++;
}
}
if (!isset($droplist['id'])) {
echo 'Error';
} else {
$idve = $droplist['idgame'];
$u->addItem($idve, $user['id'], '|frompisher=1|nosale=1' . $user['login']);
$inf = mysql_fetch_array(mysql_query('SELECT * FROM `items_main` WHERE `id` = "' . $idve . '" LIMIT 1'));
$u->info['money2'] = $u->info['money2'] - 5;
mysql_query('UPDATE `users` SET `money2`= `money2` - 5 WHERE `id` = "' . $u->info['id'] . '"');
if ($droplist['type'] == "t6" || $droplist['type'] == "t5") {
mysql_query(
2023-01-10 16:29:32 +00:00
'INSERT INTO `chat` (`text`,`city`,`to`,`type`,`new`,`time`) VALUES ("<font color=#000000>Игрок <b>' . $user['login'] . '</b> выиграл в платной рулетке <b>' . $inf['name'] . '</b>!</font>","capitalcity","","6","1","' . time(
) . '")'
);
}
2023-01-10 16:29:32 +00:00
echo $droplist['id']; // это закоментить
/*//этот блок разкоментить
$array = array(
2023-01-10 16:29:32 +00:00
'1' => $droplist['id']', // 1 элемент id вещи
'2' => $u->info['money2'] // бабло пользователя
);
$json = json_encode($array);
echo $json;*/
}
}
2022-06-06 21:30:34 +00:00
}