Реализация ChatMessageDTO.

This commit is contained in:
2023-01-28 04:24:37 +02:00
parent d9ec810f7f
commit 99b90a198b
105 changed files with 11492 additions and 10578 deletions
+11 -51
View File
@@ -24,74 +24,34 @@ if (!isset($user) || $user['id'] != $u->info['id']) {
{
$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++;
}
$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';
@@ -102,10 +62,10 @@ if (!isset($user) || $user['id'] != $u->info['id']) {
$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(
'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(
) . '")'
);
$cmsg = new ChatMessage();
$cmsg->setText("Игрок {$user['login']} выиграл в платной рулетке <b>{$inf['name']}</b>!");
$cmsg->setType(6);
(new Chat())->sendMsg($cmsg);
}
echo $droplist['id']; // это закоментить
/*//этот блок разкоментить