2022-08-25 14:23:36 +03:00
< ? php
2022-12-30 21:03:37 +02:00
use Core\Db ;
2022-08-25 14:23:36 +03:00
class Tournir
{
2022-12-30 21:03:37 +02:00
private User $u ;
private array $info ;
private array $user ;
2023-01-10 18:29:32 +02:00
private array $name = [ 0 => 'Выжить любой ценой' , 1 => 'Каждый сам за себя' , 2 => 'Захват ключа' ,];
2022-08-25 14:23:36 +03:00
public function __construct ()
{
$this -> u = User :: start ();
$this -> start ();
$this -> locationSee ();
}
private function start ()
{
2022-12-30 21:03:37 +02:00
$this -> info = Db :: getRow ( 'select * from turnirs where id = ?' , [ $this -> u -> info [ 'inTurnirnew' ]]);
$this -> user = Db :: getRow ( 'select * from users_turnirs where turnir = ? and bot = ?' , [ $this -> u -> info [ 'inTurnirnew' ], $this -> u -> info [ 'id' ]]);
2022-08-25 14:23:36 +03:00
}
private function startTurnir ()
{
2022-12-30 21:03:37 +02:00
$row = Db :: getValue ( 'select count(*) from users where win = 0 and lose = 0 and nich = 0' );
if ( ! $row || $this -> info [ 'status' ] == 3 ) {
2022-08-25 14:23:36 +03:00
if ( $this -> info [ 'status' ] == 3 ) {
$this -> finishTurnir ();
}
} else {
2022-12-30 21:03:37 +02:00
Db :: sql ( 'update turnirs set status = 3 where id = ?' , [ $this -> info [ 'id' ]]);
2023-01-10 18:29:32 +02:00
//Создание поединка
2022-12-30 21:03:37 +02:00
Db :: sql ( 'insert into battle (city, time_start, timeout, type, turnir) values (?,unix_timestamp(),60,1,?)' , [ $this -> u -> info [ 'city' ], $this -> info [ 'id' ]]);
$uri = Db :: lastInsertId ();
2023-01-10 18:29:32 +02:00
//Закидываем персонажей в поединок
2022-12-30 21:03:37 +02:00
Db :: sql ( 'update users set battle = ? where inUser = 0 and inTurnirnew = ?' , [ $uri , $this -> info [ 'id' ]]);
2023-01-10 18:29:32 +02:00
//Обозначаем завершение турнира при выходе
die ( 'Перейтиде в раздел "поединки"...' );
2022-08-25 14:23:36 +03:00
}
}
private function finishTurnir ()
{
$this -> info = mysql_fetch_array ( mysql_query ( 'SELECT * FROM `turnirs` WHERE `id` = "' . $this -> u -> info [ 'inTurnirnew' ] . '" LIMIT 1' ));
if ( $this -> info [ 'status' ] == 3 ) {
$win = '' ;
$lose = '' ;
$sp = mysql_query ( 'SELECT * FROM `users_turnirs` WHERE `turnir` = "' . $this -> info [ 'id' ] . '" ORDER BY `points` DESC' );
while ( $pl = mysql_fetch_array ( $sp )) {
mysql_query ( 'DELETE FROM `users_turnirs` WHERE `turnir` = "' . $this -> info [ 'id' ] . '"' );
$inf = mysql_fetch_array ( mysql_query ( 'SELECT * FROM `users` WHERE `id` = "' . $pl [ 'uid' ] . '" LIMIT 1' ));
$bot = mysql_fetch_array ( mysql_query ( 'SELECT * FROM `users` WHERE `id` = "' . $pl [ 'bot' ] . '" LIMIT 1' ));
if ( isset ( $inf [ 'id' ], $bot [ 'id' ])) {
2023-01-10 18:29:32 +02:00
//выдаем призы и т.д
2022-08-25 14:23:36 +03:00
mysql_query ( 'DELETE FROM `users` WHERE `id` = "' . $bot [ 'id' ] . '" LIMIT 1' );
mysql_query ( 'DELETE FROM `stats` WHERE `id` = "' . $bot [ 'id' ] . '" LIMIT 1' );
mysql_query ( 'DELETE FROM `items_users` WHERE `uid` = "' . $bot [ 'id' ] . '" LIMIT 1000' );
mysql_query ( 'DELETE FROM `eff_users` WHERE `uid` = "' . $bot [ 'id' ] . '" LIMIT 1000' );
}
if ( $pl [ 'team' ] == $this -> info [ 'winner' ] && $this -> info [ 'winner' ] != 0 ) {
$inf [ 'add_expp' ] = [ 0 , 1 , 5 , 10 , 15 , 25 , 35 , 70 , 100 , 150 , 200 , 300 , 500 , 700 , 1000 ];
2023-01-10 18:29:32 +02:00
//получаем опыт (с 0 по 12 лвл)
2022-08-25 14:23:36 +03:00
$inf [ 'add_expn' ] = [ 10 , 30 , 55 , 62 , 92 , 180 , 350 , 1350 , 4500 , 7000 , 21000 , 30000 , 35000 ];
$inf [ 'add_expn' ] = $inf [ 'add_expn' ][ $inf [ 'level' ]];
mysql_query ( 'UPDATE `users` SET `win` = `win` + 1,`win_t` = `win_t` + 1 WHERE `id` = "' . $inf [ 'id' ] . '" LIMIT 1' );
mysql_query ( 'UPDATE `stats` SET `exp` = `exp` + ' . $inf [ 'add_expn' ] . ' WHERE `id` = "' . $inf [ 'id' ] . '" LIMIT 1' );
$win .= '<b>' . $inf [ 'login' ] . '</b>, ' ;
2023-01-10 18:29:32 +02:00
$r = 'Турнир завершен. Вы являетесь победителем турнира, получено опыта: <b>' . $inf [ 'add_expn' ] . '</b>.' ;
2022-08-25 14:23:36 +03:00
mysql_query ( " INSERT INTO `chat` (`new`,`city`,`room`,`login`,`to`,`text`,`time`,`type`,`toChat`) VALUES ('1','capitalcity',' " . $inf [ 'room' ] . " ','',' " . $inf [ 'login' ] . " ',' " . $r . " ',' " . time () . " ','6','0') " );
} elseif ( $pl [ 'team' ] != $this -> info [ 'winner' ] && $this -> info [ 'winner' ] != 0 ) {
mysql_query ( 'UPDATE `users` SET `lose` = `lose` + 1,`lose_t` = `lose_t` + 1 WHERE `id` = "' . $inf [ 'id' ] . '" LIMIT 1' );
$lose .= '<b>' . $inf [ 'login' ] . '</b>, ' ;
} else {
mysql_query ( 'UPDATE `users` SET `nich` = `nich` + 1 WHERE `id` = "' . $inf [ 'id' ] . '" LIMIT 1' );
}
mysql_query ( 'DELETE FROM `users_turnirs` WHERE `uid` = "' . $inf [ 'id' ] . '" LIMIT 1' );
}
mysql_query ( 'UPDATE `users` SET `inUser` = "0",`inTurnirnew` = "0" WHERE `inTurnirnew` = "' . $this -> info [ 'id' ] . '" LIMIT ' . $this -> info [ 'users_in' ]);
mysql_query ( 'UPDATE `turnirs` SET `chat` = 4 , `winner` = -1,`users_in` = 0,`status` = 0,`winner` = -1,`step` = 0,`time` = "' . ( time () + $this -> info [ 'time2' ]) . '",`count` = `count` + 1 WHERE `id` = ' . $this -> info [ 'id' ] . ' LIMIT 1' );
if ( $win != '' ) {
$win = rtrim ( $win , ', ' );
$lose = rtrim ( $lose , ', ' );
2023-01-10 18:29:32 +02:00
$win = 'Победители турнира: ' . $win . '. Проигравшая сторона: ' . $lose . '. Следующий турнир начнется через ' . $this -> u -> timeOut ( $this -> info [ 'time2' ]) . ' (' . date ( 'd.m.Y H:i' , ( time () + $this -> info [ 'time2' ])) . ').' ;
2022-08-25 14:23:36 +03:00
} else {
2023-01-10 18:29:32 +02:00
$win = 'Победители турнира отсутствует. Следующий турнир начнется через ' . $this -> u -> timeOut ( $this -> info [ 'time2' ]) . ' (' . date ( 'd.m.Y H:i' , ( time () + $this -> info [ 'time2' ])) . ').' ;
2022-08-25 14:23:36 +03:00
}
2023-01-10 18:29:32 +02:00
$r = '<font color=black><b>Турнир завершен.</b></font> ' . $win ;
2022-08-25 14:23:36 +03:00
mysql_query ( " INSERT INTO `chat` (`new`,`city`,`room`,`login`,`to`,`text`,`time`,`type`,`toChat`) VALUES ('1','capitalcity','','','',' " . $r . " ',' " . time () . " ','6','0') " );
}
}
private function locationSee ()
{
$r = '' ;
$tm1 = '' ;
$tm2 = '' ;
$noitm = [ 869 => 1 , 1246 => 1 , 155 => 1 , 1245 => 1 , 678 => 1 ];
2023-01-10 18:29:32 +02:00
//получение комплекта
2022-08-25 14:23:36 +03:00
if ( $this -> info [ 'step' ] != 3 && $this -> info [ 'step' ] != 0 && isset ( $_GET [ 'gocomplect' ]) && $this -> user [ 'points' ] < 2 ) {
$aso = explode ( ',' , $this -> user [ 'items' ]);
$ast = explode ( '-' , $_GET [ 'gocomplect' ]);
$asg = [];
$asj = [];
$asgp = [];
$i = 0 ;
while ( $i < count ( $aso )) {
if ( $aso [ $i ] > 0 ) {
$asg [ $aso [ $i ]] = true ;
}
$i ++ ;
}
$i = 0 ;
$j = 0 ;
$noitm = 0 ;
$addi = 1 ;
while ( $i < count ( $ast )) {
if ( $ast [ $i ] > 0 ) {
if ( ! $asg [ $ast [ $i ]]) {
$noitm ++ ;
}
$itm = mysql_fetch_array ( mysql_query ( 'SELECT `id`,`inSlot`,`price1` FROM `items_main` WHERE `id` = "' . mysql_real_escape_string ( $ast [ $i ]) . '" LIMIT 1' ));
if ( isset ( $itm [ 'id' ])) {
$itm2 = mysql_fetch_array ( mysql_query ( 'SELECT `iid`,`price_1` FROM `items_shop` WHERE `item_id` = "' . mysql_real_escape_string ( $ast [ $i ]) . '" AND `kolvo` > 0 LIMIT 1' ));
if ( $itm2 [ 'price_1' ] > $itm [ 'price1' ]) {
$itm [ 'price1' ] = $itm2 [ 'price_1' ];
}
if ( $itm [ 'inSlot' ] == 3 || $itm [ 'inSlot' ] == 10 ) {
$asg [ $itm [ 'inSlot' ]][ count ( $asg [ $itm [ 'inSlot' ]])] = $itm [ 'id' ];
$asgp [ $itm [ 'inSlot' ]][ count ( $asgp [ $itm [ 'inSlot' ]])] = $itm [ 'price1' ];
} else {
$asg [ $itm [ 'inSlot' ]] = $itm [ 'id' ];
$asp [ $itm [ 'inSlot' ]] = $itm [ 'price1' ];
}
$j ++ ;
}
}
$i ++ ;
}
if ( $noitm > 0 ) {
2023-01-10 18:29:32 +02:00
echo 'Использование багов карается законом!' ;
2022-08-25 14:23:36 +03:00
$addi = 0 ;
} elseif ( count ( $asg [ 3 ]) > 2 ) {
2023-01-10 18:29:32 +02:00
echo 'Вы выбрали слишком много предметов, выберите только два оружия и один щит' ;
2022-08-25 14:23:36 +03:00
$addi = 0 ;
} elseif ( count ( $asg [ 10 ]) > 3 ) {
2023-01-10 18:29:32 +02:00
echo 'Вы выбрали слишком много предметов, выберите только три кольца' ;
2022-08-25 14:23:36 +03:00
$addi = 0 ;
} elseif ( $j > 16 ) {
2023-01-10 18:29:32 +02:00
echo 'Вы выбрали слишком много предметов' ;
2022-08-25 14:23:36 +03:00
$addi = 0 ;
} elseif ( $j < 1 ) {
2023-01-10 18:29:32 +02:00
echo 'Выберите хотя бы один предмет' ;
2022-08-25 14:23:36 +03:00
$addi = 0 ;
}
if ( $addi == 1 ) {
$i = 0 ;
while ( $i <= 17 ) {
if ( $i == 10 ) {
if ( $asg [ $i ][ 0 ] > 0 ) {
$this -> u -> addItem ( $asg [ $i ][ 0 ], $this -> u -> info [ 'id' ]);
$this -> user [ 'points' ] += 1 + round ( $asgp [ $i ][ 0 ]);
}
if ( $asg [ $i ][ 1 ] > 0 ) {
$this -> u -> addItem ( $asg [ $i ][ 1 ], $this -> u -> info [ 'id' ]);
$this -> user [ 'points' ] += 1 + round ( $asgp [ $i ][ 1 ]);
}
if ( $asg [ $i ][ 2 ] > 0 ) {
$this -> u -> addItem ( $asg [ $i ][ 2 ], $this -> u -> info [ 'id' ]);
$this -> user [ 'points' ] += 1 + round ( $asgp [ $i ][ 2 ]);
}
} elseif ( $i == 3 ) {
if ( $asg [ $i ][ 0 ] > 0 ) {
$this -> u -> addItem ( $asg [ $i ][ 0 ], $this -> u -> info [ 'id' ]);
$this -> user [ 'points' ] += 1 + round ( $asgp [ $i ][ 0 ]);
}
if ( $asg [ $i ][ 1 ] > 0 ) {
$this -> u -> addItem ( $asg [ $i ][ 1 ], $this -> u -> info [ 'id' ]);
$this -> user [ 'points' ] += 1 + round ( $asgp [ $i ][ 1 ]);
}
} elseif ( $asg [ $i ] > 0 ) {
$this -> u -> addItem ( $asg [ $i ], $this -> u -> info [ 'id' ]);
$this -> user [ 'points' ] += 1 + round ( $asgp [ $i ]);
}
$i ++ ;
}
mysql_query ( 'UPDATE `users_turnirs` SET `points` = "' . $this -> user [ 'points' ] . '",`items` = "0" WHERE `bot` = "' . $this -> u -> info [ 'id' ] . '" LIMIT 1' );
mysql_query ( 'UPDATE `stats` SET `ability` = "100",`skills` = "10" WHERE `id` = "' . $this -> u -> info [ 'id' ] . '" LIMIT 1' );
mysql_query ( 'UPDATE `users` SET `level` = "12" WHERE `id` = "' . $this -> u -> info [ 'id' ] . '" LIMIT 1' );
mysql_query ( 'UPDATE `turnirs` SET `step` = "0" WHERE `id` = "' . $this -> info [ 'id' ] . '" LIMIT 1' );
$this -> info [ 'step' ] = 0 ;
$this -> info [ 'items' ] = '0' ;
}
}
if ( $this -> info [ 'step' ] == 3 ) {
$this -> finishTurnir ();
} elseif ( $this -> info [ 'step' ] == 0 ) {
2023-01-10 18:29:32 +02:00
//распределяем команды
2022-08-25 14:23:36 +03:00
$po = [ 0 , 0 ];
$sp = mysql_query ( 'SELECT * FROM `users_turnirs` WHERE `turnir` = "' . $this -> info [ 'id' ] . '" AND `points` > 3 ORDER BY `points` DESC LIMIT ' . $this -> info [ 'users_in' ]);
$tmr = rand ( 1 , 2 );
if ( $tmr == 1 ) {
$tmr = [ 2 , 1 ];
} else {
$tmr = [ 1 , 2 ];
}
while ( $pl = mysql_fetch_array ( $sp )) {
$inf = mysql_fetch_array ( mysql_query ( 'SELECT * FROM `users` WHERE `id` = "' . $pl [ 'uid' ] . '" LIMIT 1' ));
$bot = mysql_fetch_array ( mysql_query ( 'SELECT * FROM `users` WHERE `id` = "' . $pl [ 'bot' ] . '" LIMIT 1' ));
if ( isset ( $inf [ 'id' ], $bot [ 'id' ])) {
if ( $po [ 1 ] == $po [ 2 ]) {
$tm = rand ( 1 , 2 );
} elseif ( $po [ 1 ] > $po [ 2 ]) {
$tm = 2 ;
} else {
$tm = 1 ;
}
//$tm = $tmr[$tm];
$bot [ 'team' ] = $tm ;
$po [ $bot [ 'team' ]] += $pl [ 'points' ];
mysql_query ( 'UPDATE `stats` SET `team` = "' . $bot [ 'team' ] . '" WHERE `id` = "' . $bot [ 'id' ] . '" LIMIT 1' );
mysql_query ( 'UPDATE `users_turnirs` SET `team` = "' . $bot [ 'team' ] . '" WHERE `id` = "' . $pl [ 'id' ] . '" LIMIT 1' );
}
}
mysql_query ( 'UPDATE `turnirs` SET `step` = "1" WHERE `id` = "' . $this -> info [ 'id' ] . '" LIMIT 1' );
}
$sp = mysql_query ( 'SELECT * FROM `users_turnirs` WHERE `turnir` = "' . $this -> info [ 'id' ] . '" LIMIT ' . $this -> info [ 'users_in' ]);
$po = [ 0 , 0 ];
while ( $pl = mysql_fetch_array ( $sp )) {
$inf = mysql_fetch_array ( mysql_query ( 'SELECT * FROM `users` WHERE `id` = "' . $pl [ 'uid' ] . '" LIMIT 1' ));
$bot = mysql_fetch_array ( mysql_query ( 'SELECT `u`.*,`st`.* FROM `users` AS `u` LEFT JOIN `stats` AS `st` ON `u`.`id` = `st`.`id` WHERE `u`.`id` = "' . $pl [ 'bot' ] . '" LIMIT 1' ));
if ( isset ( $inf [ 'id' ], $bot [ 'id' ])) {
$po [ $bot [ 'team' ]] += $pl [ 'points' ];
//${'tm'.$bot['team']} .= '<b>'.$bot['login'].'</b> ['.$bot['level'].']<br>';
$ { 'tm' . $bot [ 'team' ]} .= $this -> u -> microLogin ( $bot , 2 ) . '<br>' ;
}
}
2023-01-10 18:29:32 +02:00
$r .= '<style>/* цвета команд */
2022-08-25 14:23:36 +03:00
.CSSteam0 { font-weight: bold; cursor:pointer; }
.CSSteam1 { font-weight: bold; color: #6666CC; cursor:pointer; }
.CSSteam2 { font-weight: bold; color: #B06A00; cursor:pointer; }
.CSSteam3 { font-weight: bold; color: #269088; cursor:pointer; }
.CSSteam4 { font-weight: bold; color: #A0AF20; cursor:pointer; }
.CSSteam5 { font-weight: bold; color: #0F79D3; cursor:pointer; }
.CSSteam6 { font-weight: bold; color: #D85E23; cursor:pointer; }
.CSSteam7 { font-weight: bold; color: #5C832F; cursor:pointer; }
.CSSteam8 { font-weight: bold; color: #842B61; cursor:pointer; }
.CSSteam9 { font-weight: bold; color: navy; cursor:pointer; }
.CSSvs { font-weight: bold; }</style>' ;
2023-01-10 18:29:32 +02:00
$r .= '<h3>«' . $this -> name [ $this -> info [ 'type' ]] . '»</h3><br>Начало турнира через ' . $this -> u -> timeOut ( $this -> info [ 'time' ] - time ()) . '! ' ;
2022-08-25 14:23:36 +03:00
if ( isset ( $_GET [ 'hpregenNowTurnir' ]) && ( $this -> u -> stats [ 'hpNow' ] < $this -> u -> stats [ 'hpAll' ] || $this -> u -> stats [ 'mpNow' ] < $this -> u -> stats [ 'mpAll' ])) {
mysql_query ( 'UPDATE `stats` SET `hpNow` = "' . $this -> u -> stats [ 'hpAll' ] . '",`mpNow` = "' . $this -> u -> stats [ 'mpAll' ] . '" WHERE `id` = "' . $this -> u -> info [ 'id' ] . '" LIMIT 1' );
}
if ( $this -> user [ 'points' ] < 3 ) {
2023-01-10 18:29:32 +02:00
//Еще не получили обмундирование
2022-08-25 14:23:36 +03:00
if ( $this -> user [ 'points' ] < 2 ) {
2023-01-10 18:29:32 +02:00
$r .= '<INPUT class=\'btn_grey\' onClick="selectItmSave()" TYPE=button name=tmp value="Получить обмундирование">' ;
2022-08-25 14:23:36 +03:00
} else {
2023-01-10 18:29:32 +02:00
$r .= ' <INPUT class=\'btn_grey\' onClick="location=\'main.php\';" TYPE=button name=tmp value="Я готов' ;
2022-08-25 14:23:36 +03:00
if ( $this -> u -> info [ 'sex' ] == 1 ) {
2023-01-10 18:29:32 +02:00
$r .= 'а ' ;
2022-08-25 14:23:36 +03:00
}
$r .= '!">' ;
}
} else {
2023-01-10 18:29:32 +02:00
$r .= '<small><b>Вы участвуете в турнире!</b></small>' ;
$r .= ' <INPUT class=\'btn_grey\' onClick="location.href=\'main.php?hpregenNowTurnir=1\'" TYPE=button name=tmp value="Восстановить HP и MP">' ;
2022-08-25 14:23:36 +03:00
}
2023-01-10 18:29:32 +02:00
$r .= '<div style="float:right"><INPUT onClick="location=\'main.php\';" TYPE=button name=tmp value="Обновить"></div>' ;
2022-08-25 14:23:36 +03:00
if ( $this -> user [ 'points' ] < 3 && $this -> user [ 'items' ] != '0' ) {
$r .= '<div align="left" style="height:1px; width:100%; margin:10px 0 10px 0; border-top:1px solid #999999;"></div>' ;
if ( $this -> user [ 'items' ] == '' ) {
2023-01-10 18:29:32 +02:00
//Выдаем предметы для выбора
2022-08-25 14:23:36 +03:00
$ai = '' ;
$sp = mysql_query ( 'SELECT `a`.*,`b`.* FROM `items_shop` AS `a` LEFT JOIN `items_main` AS `b` ON (`a`.`item_id` = `b`.`id`) WHERE `a`.`sid` = 1 AND
(`a`.`r` != 5 AND `a`.`r` != 9 AND `a`.`r` <= 18 AND `a`.`kolvo` > 0 AND `cantBuy` = 0 AND `a`.`level` < 9 AND `b`.`level` < 9) AND
`b`.`class` != 6' );
while ( $pl = mysql_fetch_array ( $sp )) {
if ( ! isset ( $noitm [ $pl [ 'item_id' ]])) {
$aso [ $pl [ 'inslot' ]][ count ( $aso [ $pl [ 'inslot' ]])] = $pl ;
}
}
$j = 1 ;
$com = [];
while ( $j <= 5 ) {
$i = 0 ;
while ( $i <= 17 ) {
if ( $i == 3 ) {
//
$com [ $i ] = $aso [ $i ][ rand ( 0 , count ( $aso [ $i ]) - 1 )];
} elseif ( $i == 14 ) {
2023-01-10 18:29:32 +02:00
//правая рука
2022-08-25 14:23:36 +03:00
$com [ $i ] = $aso [ $i ][ rand ( 0 , count ( $aso [ $i ]) - 1 )];
} else {
2023-01-10 18:29:32 +02:00
//обмундирование
2022-08-25 14:23:36 +03:00
$com [ $i ] = $aso [ $i ][ rand ( 0 , count ( $aso [ $i ]) - 1 )];
if ( $i == 10 ) {
$ai .= $com [ $i ][ 'id' ] . ',' ;
$com [ $i ] = $aso [ $i ][ rand ( 0 , count ( $aso [ $i ]) - 1 )];
$ai .= $com [ $i ][ 'id' ] . ',' ;
//$com[$i] = $aso[$i][rand(0,count($aso[$i])-1)];
//$ai .= $com[$i]['id'].',';
}
}
if ( $com [ $i ][ 'id' ] > 0 && $i != 10 ) {
$ai .= $com [ $i ][ 'id' ] . ',' ;
}
$i ++ ;
}
$j ++ ;
}
unset ( $com );
$ai .= '0' ;
$this -> user [ 'items' ] = $ai ;
mysql_query ( 'UPDATE `users_turnirs` SET `items` = "' . $ai . '" WHERE `id` = "' . $this -> user [ 'id' ] . '" LIMIT 1' );
}
2023-01-10 18:29:32 +02:00
//Выводим предметы чтобы надеть их
2022-08-25 14:23:36 +03:00
$ai = explode ( ',' , $this -> user [ 'items' ]);
$i = 0 ;
$ia = [];
while ( $i < count ( $ai )) {
if ( $ai [ $i ] > 0 ) {
$pli = mysql_fetch_array ( mysql_query ( 'SELECT `id`,`inSlot`,`name`,`type`,`img`,`level` FROM `items_main` WHERE `id` = "' . $ai [ $i ] . '" LIMIT 1' ));
$ia [ $pli [ 'inSlot' ]][ count ( $ia [ $pli [ 'inSlot' ]])] = $pli ;
unset ( $pli );
}
$i ++ ;
}
unset ( $ai );
2023-01-10 18:29:32 +02:00
$r .= '<b>Выберите предметы для турнира:</b><br>' ;
2022-08-25 14:23:36 +03:00
?>
<style>
.its0 {
margin: 2px;
cursor: pointer;
filter: DXImageTransform.Microsoft.BasicImage(grayscale=1);
-ms-filter: DXImageTransform.Microsoft.BasicImage(grayscale=1);
-webkit-filter: grayscale(100%);
}
.its1 {
background-color: #ee9898;
margin: 1px;
border: 1px solid #b16060;
}
</style>
<script>
var set = [];
set[3] = [0, 0, 0];
set[10] = [0, 0, 0, 0];
function selectItmAdd(x, y, id, s) {
if (s != 10 && s != 3) {
if (set[s] != undefined && set[s] != 0) {
$('#it_' + set[s][1] + '_' + set[s][2]).attr('class', 'its0');
set[s] = 0;
}
set[s] = [id, x, y];
$('#it_' + x + '_' + y).attr('class', 'its1');
} else if (s == 10) {
if (set[s][0] > 2) {
$('#it_' + set[s][1][1] + '_' + set[s][1][2]).attr('class', 'its0');
$('#it_' + set[s][2][1] + '_' + set[s][2][2]).attr('class', 'its0');
$('#it_' + set[s][3][1] + '_' + set[s][3][2]).attr('class', 'its0');
set[s] = [0, 0, 0, 0];
}
if (set[s][1] == 0) {
set[s][1] = [id, x, y];
} else if (set[s][2] == 0) {
set[s][2] = [id, x, y];
} else if (set[s][3] == 0) {
set[s][3] = [id, x, y];
}
set[s][0]++;
$('#it_' + x + '_' + y).attr('class', 'its1');
} else if (s == 3) {
if (set[s][0] > 1) {
$('#it_' + set[s][1][1] + '_' + set[s][1][2]).attr('class', 'its0');
$('#it_' + set[s][2][1] + '_' + set[s][2][2]).attr('class', 'its0');
set[s] = [0, 0, 0];
}
if (set[s][1] == 0) {
set[s][1] = [id, x, y];
} else if (set[s][2] == 0) {
set[s][2] = [id, x, y];
}
set[s][0]++;
$('#it_' + x + '_' + y).attr('class', 'its1');
}
}
function selectItmSave() {
var i = 0;
var r = '';
while (i <= 17) {
if (set[i] != undefined) {
if (i == 10) {
if (set[i][1][0] != undefined) {
r += set[i][1][0] + '-';
}
if (set[i][2][0] != undefined) {
r += set[i][2][0] + '-';
}
if (set[i][3][0] != undefined) {
r += set[i][3][0] + '-';
}
} else if (i == 3) {
if (set[i][1][0] != undefined) {
r += set[i][1][0] + '-';
}
if (set[i][2][0] != undefined) {
r += set[i][2][0] + '-';
}
} else {
if (set[i][0] != undefined) {
r += set[i][0] + '-';
}
}
}
i++;
}
location = "main.php?gocomplect=" + r;
}
</script>
<?
$i = 0;
while ($i <= 17) {
if (count($ia[$i]) > 0) {
$j = 0;
while ($j < count($ia[$i])) {
$r .= '<img id="it_' . $i . '_' . $j . '" onclick="selectItmAdd(' . $i . ',' . $j . ',' . $ia[$i][$j]['id'] . ',' . $ia[$i][$j]['inSlot'] . ');" class="its0" title="' . $ia[$i][$j]['name'] . '" src="https://img.new-combats.com/i/items/' . $ia[$i][$j]['img'] . '">';
$j++;
}
$r .= '<br>';
}
$i++;
}
}
$r .= '<div align="left" style="height:1px; width:100%; margin:10px 0 10px 0; border-top:1px solid #999999;"></div>';
$r .= '<table style="border:1px solid #99cccc" width="700" bgcolor="#bbdddd" border="0" align="center" cellpadding="5" cellspacing="0">
<tr>
2023-01-10 18:29:32 +02:00
<td width="350" align="center" bgcolor="#99cccc"><b class="CSSteam1">Команда 1</b></td>
<td align="center" bgcolor="#99cccc"><b class="CSSteam2">Команда 2</b></td>
2022-08-25 14:23:36 +03:00
</tr>
<tr>
<td align="center" style="border-right:1px solid #99cccc">' . rtrim($tm1, ', ') . '</td>
<td align="center">' . rtrim($tm2, ', ') . '</td>
</tr>
</table>';
if (($this->info['time'] - time() < 0) && $this->info['step'] == 1) {
2023-01-10 18:29:32 +02:00
//начинаем турнир
2022-08-25 14:23:36 +03:00
$this->startTurnir();
}
echo $r;
}
}