2022-06-07 00:30:34 +03:00
< ?
if ( ! defined ( 'GAME' )){ die (); }
session_start ();
$sleep_mod = 0 ;
$_SESSION [ 'objaga' ] = 'load ' ;
$hostel_option = array (
'changelist' => array (
'type' => 999 ,
'room' => 253
),
'none' => array (
'type' => 0 ,
'room' => 253 ,
2023-01-10 18:29:32 +02:00
'name' => 'Общежитие' ,
'stage' => 'холл' ,
2022-06-07 00:30:34 +03:00
'price' => 0 ,
'partition' => ''
),
'base' => array (
'type' => 1 ,
2023-01-10 18:29:32 +02:00
't_name' => 'Койка в общежитии' ,
't_names' => 'Койку в общежитии' ,
2022-06-07 00:30:34 +03:00
'room' => 256 ,
2023-01-10 18:29:32 +02:00
'name' => 'Общ. Этаж 1' ,
'stage' => 'на 1 этаже' ,
2022-06-07 00:30:34 +03:00
'price' => 1 ,
'tariff' => array ( 'items' => 25 , 'souvenirs' => 50 , 'animal' => 0 ),
2023-01-10 18:29:32 +02:00
'partition' => array ( 1 => 'Комната' , 2 => 'Хранилище' , 4 => 'Сон' )
2022-06-07 00:30:34 +03:00
),
'advanced' => array (
'type' => 2 ,
2023-01-10 18:29:32 +02:00
't_name' => 'Койка с тумбочкой' ,
't_names' => 'Койку с тумбочкой' ,
2022-06-07 00:30:34 +03:00
'room' => 257 ,
2023-01-10 18:29:32 +02:00
'name' => 'Общ. Этаж 2' ,
'stage' => 'на 2 этаже' ,
2022-06-07 00:30:34 +03:00
'price' => 3 ,
'tariff' => array ( 'items' => 50 , 'souvenirs' => 150 , 'animal' => 0 ),
2023-01-10 18:29:32 +02:00
'partition' => array ( 1 => 'Комната' , 2 => 'Хранилище' , 3 => 'Животные' , 4 => 'Сон' )
2022-06-07 00:30:34 +03:00
),
'advanced2' => array (
'type' => 3 ,
2023-01-10 18:29:32 +02:00
't_name' => 'Койка со шкафом' ,
't_names' => 'Койку со шкафом' ,
2022-06-07 00:30:34 +03:00
'room' => 258 ,
2023-01-10 18:29:32 +02:00
'name' => 'Общ. Этаж 3' ,
'stage' => 'на 3 этаже' ,
2022-06-07 00:30:34 +03:00
'price' => 10 ,
'tariff' => array ( 'items' => 70 , 'souvenirs' => 200 , 'animal' => 2 ),
2023-01-10 18:29:32 +02:00
'partition' => array ( 1 => 'Комната' , 2 => 'Хранилище' , 3 => 'Животные' , 4 => 'Сон' )
2022-06-07 00:30:34 +03:00
)
);
$sleep = $u -> testAction ( '`vars` = "sleep" AND `uid` = "' . $u -> info [ 'id' ] . '" LIMIT 1' , 1 );
if ( isset ( $sleep ) AND $sleep [ 0 ] == 0 AND ( isset ( $_GET [ 'ajaxHostel' ]) AND $_GET [ 'ajaxHostel' ] == 1 OR isset ( $_GET [ 'ajax' ]) AND $_GET [ 'ajax' ] == 1 ) ){
$hostel = mysql_fetch_array ( mysql_query ( " SELECT * FROM `house` WHERE `owner` = ' " . mysql_real_escape_string ( $u -> info [ 'id' ]) . " '; " ));
if ( $hostel [ 'partition' ] == 2 ){
if ( isset ( $_GET [ 'obj_add' ]) ){
if ( $hostel [ 'category' ] == 1 ){
$count = mysql_num_rows ( mysql_query ( 'SELECT `iu`.`item_id` FROM `items_users` AS `iu` LEFT JOIN `items_main` AS `im` ON (`im`.`id` = `iu`.`item_id`) WHERE `iu`.`inShop` = "1" AND `iu`.`gift` = "" AND `iu`.`gtxt1` = "" AND `iu`.`gtxt2` = "" AND `iu`.`uid` = "' . $u -> info [ 'id' ] . '" AND `iu`.`delete` = "0" GROUP BY `im`.id,`iu`.item_id, `iu`.inGroup HAVING `iu`.inGroup > 0 UNION ALL SELECT `iu`.`item_id` FROM `items_users` AS `iu` LEFT JOIN `items_main` AS `im` ON (`im`.`id` = `iu`.`item_id`) WHERE `iu`.inGroup=0 AND `iu`.`inShop` = "1" AND `iu`.`gift` = "" AND `iu`.`gtxt1` = "" AND `iu`.`gtxt2` = "" AND `iu`.`uid` = "' . $u -> info [ 'id' ] . '" AND `iu`.`delete` = "0" GROUP BY `iu`.id, `iu`.item_id' ));
$max = $hostel_option [ $hostel [ 'type' ]][ 'tariff' ][ 'items' ];
} elseif ( $hostel [ 'category' ] == 2 ) {
$count = mysql_num_rows ( mysql_query ( 'SELECT `iu`.`item_id` FROM `items_users` AS `iu` LEFT JOIN `items_main` AS `im` ON (`im`.`id` = `iu`.`item_id`) WHERE `iu`.`inShop` = "1" AND `iu`.`gift` != "" AND `iu`.`uid` = "' . $u -> info [ 'id' ] . '" AND `iu`.`delete` = "0" GROUP BY `im`.id,`iu`.item_id, `iu`.inGroup HAVING `iu`.inGroup > 0 UNION ALL SELECT `iu`.`item_id` FROM `items_users` AS `iu` LEFT JOIN `items_main` AS `im` ON (`im`.`id` = `iu`.`item_id`) WHERE `iu`.inGroup=0 AND `iu`.`inShop` = "1" AND `iu`.`gift` != "" AND `iu`.`uid` = "' . $u -> info [ 'id' ] . '" AND `iu`.`delete` = "0" GROUP BY `iu`.id, `iu`.item_id' ));
$max = $hostel_option [ $hostel [ 'type' ]][ 'tariff' ][ 'souvenirs' ];
}
if ( ( int ) $count < ( int ) $max ) {
$u -> obj_addItem ( $_GET [ 'obj_add' ]);
} else {
exit ( 'error' );
}
} elseif ( isset ( $_GET [ 'obj_take' ])){
$u -> obj_takeItem ( $_GET [ 'obj_take' ]);
}
}
die ( 'ajaxHostel' );
} elseif ( isset ( $sleep ) AND $sleep [ 0 ] == 0 AND isset ( $_GET [ 'room' ]) AND $_GET [ 'room' ] != '' AND ( int ) $_GET [ 'room' ] > 0 AND ( int ) $_GET [ 'room' ] < 10 AND ! isset ( $_GET [ 'to_sleep' ]) AND ! isset ( $_GET [ 'to_awake' ]) ){
mysql_query ( 'UPDATE `house` SET `partition` = "' . mysql_real_escape_string (( int ) $_GET [ 'room' ]) . '" WHERE `owner` = "' . mysql_real_escape_string ( $u -> info [ 'id' ]) . '" LIMIT 1' );
} elseif ( isset ( $sleep ) AND $sleep [ 0 ] == 0 AND isset ( $_GET [ 'category' ]) AND $_GET [ 'category' ] != '' AND ( int ) $_GET [ 'category' ] > 0 AND ( int ) $_GET [ 'category' ] < 10 ){
mysql_query ( 'UPDATE `house` SET `category` = "' . mysql_real_escape_string (( int ) $_GET [ 'category' ]) . '" WHERE `owner` = "' . mysql_real_escape_string ( $u -> info [ 'id' ]) . '" LIMIT 1' );
} elseif ( isset ( $_GET [ 'to_sleep' ]) && $_GET [ 'to_sleep' ] == '1' && $sleep [ 'vars' ] != 'sleep' ){
changeSleep ( 1 );
} elseif ( isset ( $_GET [ 'to_awake' ]) && $sleep [ 'vars' ] == 'sleep' ){
changeSleep ( 2 );
}
if ( isset ( $sleep_mod ) && ! isset ( $sleep [ 'id' ])){
$sleep_mod = 0 ;
} elseif ( isset ( $sleep_mod ) && isset ( $sleep [ 'id' ])){
$sleep_mod = 1 ;
}
$hostel = mysql_fetch_array ( mysql_query ( " SELECT * FROM `house` WHERE `owner` = ' " . mysql_real_escape_string ( $u -> info [ 'id' ]) . " '; " ));
if ( $sleep [ 'vars' ] == 'sleep' AND isset ( $hostel ) && $hostel_option [ $hostel [ 'type' ]][ 'room' ] != $u -> room [ 'id' ] && $u -> room [ 'id' ] != 253 ) {
2023-01-10 18:29:32 +02:00
changeSleep ( 2 ); // Если человек спит в неположенном месте, просыпаемся!!!
2022-06-07 00:30:34 +03:00
}
if ( isset ( $_POST [ 'savenotes' ]) AND $hostel [ 'partition' ] == '1' ) {
saveNote ();
}
2023-01-10 18:29:32 +02:00
if ( isset ( $hostel ) ) { #---обновляем баланс
2022-06-07 00:30:34 +03:00
$hostel [ 'balance' ] = round (( $hostel [ 'weekcost' ] * ( floor (( $hostel [ 'endtime' ] - time ()) / 24 / 3600 ))) / 7 , 2 );
mysql_query ( " UPDATE `house` SET `balance` = ' " . $hostel [ 'balance' ] . " ' WHERE `owner` = ' " . mysql_real_escape_string ( $u -> info [ 'id' ]) . " '; " );
}
$result = array ( 'filter' => '' , 'content' => '' , 'additional' => '' );
function updateHostel (){
global $hostel , $hostel_option , $u , $err ;
if ( $hostel [ 'action' ] == 'changearenda' ){
if ( $hostel [ 'balance' ] >= ( $hostel_option [ $_GET [ 'changearenda' ]][ 'price' ] * 2 ) ) {
$endtime = time () + (( $hostel [ 'balance' ] - $hostel_option [ $_GET [ 'changearenda' ]][ 'price' ]) / $hostel_option [ $_GET [ 'changearenda' ]][ 'price' ]) * 604800 ;
mysql_query ( " UPDATE `house` SET `starttime` = " . time () . " , `endtime` = " . $endtime . " , `type` = ' " . mysql_real_escape_string ( $_GET [ 'changearenda' ]) . " ', `weekcost` = ' " . $hostel_option [ mysql_real_escape_string ( $_GET [ 'changearenda' ])][ 'price' ] . " ' WHERE `owner` = ' " . mysql_real_escape_string ( $u -> info [ 'id' ]) . " '; " );
2023-01-10 18:29:32 +02:00
$err = '<FONT COLOR=red><B>Смена арендуемого помещения произведена успешно</B></FONT>' ;
2022-06-07 00:30:34 +03:00
$hostel [ 'type' ] = $_GET [ 'changearenda' ];
$hostel [ 'endtime' ] = $endtime ;
} else {
2023-01-10 18:29:32 +02:00
$err = '<FONT COLOR=red><B>На балансе не хватает ' . ( ( $hostel_option [ $_GET [ 'changearenda' ]][ 'price' ] * 2 ) - $hostel [ 'balance' ] ) . ' кр. для смены арендуемого помещения</B></FONT>' ;
2022-06-07 00:30:34 +03:00
}
unset ( $hostel [ 'action' ]);
} elseif ( $hostel [ 'action' ] == 'newarenda' ){
if ( isset ( $_GET [ 'azb' ]) && $u -> info [ 'level' ] > 7 ) {
2023-01-10 18:29:32 +02:00
$err = '<FONT COLOR=red><B>Вы не можете расплачиваться зубами, у вас слишком высокий уровень<BR></B></FONT><BR>' ;
2022-06-07 00:30:34 +03:00
} elseif ( $u -> info [ 'money4' ] < $hostel_option [ $_GET [ 'arenda' ]][ 'price' ] * 5 && isset ( $_GET [ 'azb' ])) {
2023-01-10 18:29:32 +02:00
$err = '<FONT COLOR=red><B>У вас недостаточно зубов<BR></B></FONT><BR>' ;
2022-06-07 00:30:34 +03:00
} elseif ( $u -> info [ 'money' ] >= $hostel_option [ $_GET [ 'arenda' ]][ 'price' ] || isset ( $_GET [ 'azb' ])) {
mysql_query ( " INSERT INTO `house`(`owner`,`type`,`starttime`,`endtime`,`balance`,`weekcost`) VALUES (' " . mysql_real_escape_string ( $u -> info [ 'id' ]) . " ',' " . mysql_real_escape_string ( $_GET [ 'arenda' ]) . " ',' " . time () . " ',' " . ( time () + 604800 ) . " ',' " . $hostel_option [ $_GET [ 'arenda' ]][ 'price' ] . " ',' " . $hostel_option [ $_GET [ 'arenda' ]][ 'price' ] . " ') " );
if ( isset ( $_GET [ 'azb' ])) {
mysql_query ( " UPDATE `users` SET `money4` = `money4`- " . ( $hostel_option [ $_GET [ 'arenda' ]][ 'price' ] * 5 ) . " WHERE `id` = ' " . mysql_real_escape_string ( $u -> info [ 'id' ]) . " '; " );
2023-01-10 18:29:32 +02:00
$err = " <FONT COLOR=red><B>Вы арендовали ' " . $hostel_option [ $_GET [ 'arenda' ]][ 't_names' ] . " ' за " . $u -> zuby ( $hostel_option [ $_GET [ 'arenda' ]][ 'price' ] * 5 , 1 ) . " .<BR></B></FONT><BR> " ;
2022-06-07 00:30:34 +03:00
} else {
mysql_query ( " UPDATE `users` SET `money` = `money`- " . $hostel_option [ $_GET [ 'arenda' ]][ 'price' ] . " WHERE `id` = ' " . mysql_real_escape_string ( $u -> info [ 'id' ]) . " '; " );
2023-01-10 18:29:32 +02:00
$err = " <FONT COLOR=red><B>Вы арендовали ' " . $hostel_option [ $_GET [ 'arenda' ]][ 't_names' ] . " ' за " . $hostel_option [ $_GET [ 'arenda' ]][ 'price' ] . " кр.<BR></B></FONT><BR> " ;
2022-06-07 00:30:34 +03:00
}
} else {
if ( isset ( $_GET [ 'azb' ])) {
2023-01-10 18:29:32 +02:00
$err = '<FONT COLOR=red><B>У вас недостаточно зубов<BR></B></FONT><BR>' ;
2022-06-07 00:30:34 +03:00
} else {
2023-01-10 18:29:32 +02:00
$err = '<FONT COLOR=red><B>У вас недостаточно денег<BR></B></FONT><BR>' ;
2022-06-07 00:30:34 +03:00
}
}
$hostel = mysql_fetch_array ( mysql_query ( " SELECT * FROM `house` WHERE `owner` = ' " . mysql_real_escape_string ( $u -> info [ 'id' ]) . " '; " ));
}
}
function changeSleep ( $sleep_action ){
global $hostel , $hostel_option , $u , $sleep , $sleep_mod ;
if ( $sleep_action == 1 ){
//
mysql_query ( 'INSERT INTO `sleep` (`uid`,`time`,`sleep`) VALUES ("' . $u -> info [ 'id' ] . '","' . time () . '","1")' );
//
mysql_query ( " UPDATE `eff_users` SET `sleeptime`= " . time () . " ,`deactiveLast` = ( `deactiveTime` - " . time () . " ) WHERE `uid`=' " . mysql_real_escape_string ( $u -> info [ 'id' ]) . " ' AND `no_Ace` = 0 AND `delete` = 0 " );
mysql_query ( 'UPDATE `items_users` SET `time_sleep` = "' . time () . '" WHERE `uid` = "' . $u -> info [ 'id' ] . '" AND `delete` < 1001 AND `data` LIKE "%|sleep_moroz=1%"' );
$u -> addAction ( time (), 'sleep' , $u -> info [ 'city' ]);
$sleep [ 'vars' ] = 'sleep' ;
$sleep_mod = 1 ;
} elseif ( $sleep_action == 2 ){
//
mysql_query ( 'INSERT INTO `sleep` (`uid`,`time`,`sleep`) VALUES ("' . $u -> info [ 'id' ] . '","' . time () . '","2")' );
//
$sp = mysql_query ( 'SELECT * FROM `items_users` WHERE `time_sleep` > 0 AND `uid` = "' . $u -> info [ 'id' ] . '" AND `delete` < 1001 AND `data` LIKE "%|sleep_moroz=1%"' );
while ( $pl = mysql_fetch_array ( $sp ) ) {
$tm_add = time () - $pl [ 'time_sleep' ];
mysql_query ( 'UPDATE `items_users` SET `time_sleep` = "0",`time_create` = "' . ( $pl [ 'time_create' ] + $tm_add ) . '" WHERE `id` = "' . $pl [ 'id' ] . '" LIMIT 1' );
}
$sp = mysql_query ( 'SELECT `id`,`deactiveTime`,`deactiveLast` FROM `eff_users` WHERE `v1` LIKE "pgb%" AND `delete` = "0" AND `deactiveTime` > 0 AND `uid` = "' . $u -> info [ 'id' ] . '" ORDER BY `timeUse` DESC' );
while ( $pl = mysql_fetch_array ( $sp )) {
mysql_query ( " UPDATE `eff_users` SET `deactiveTime` = " . ( time () + $pl [ 'deactiveLast' ]) . " WHERE `id`=' " . $pl [ 'id' ] . " ' " );
}
$sp = mysql_query ( 'SELECT `id`,`sleeptime`,`timeUse` FROM `eff_users` WHERE `uid`="' . mysql_real_escape_string ( $u -> info [ 'id' ]) . '" AND `no_Ace` = 0 AND `sleeptime` > 0 AND `delete` = 0' );
while ( $pl = mysql_fetch_array ( $sp )) {
$timeUsen = time () - ( $pl [ 'sleeptime' ] - $pl [ 'timeUse' ]);
mysql_query ( " UPDATE `eff_users` SET `timeUse`=' " . $timeUsen . " ',`sleeptime`='0' WHERE `id`=' " . $pl [ 'id' ] . " ' " );
}
mysql_query ( 'UPDATE `actions` SET `vars` = "unsleep",`val` = "' . time () . '" WHERE `id` = "' . $sleep [ 'id' ] . '" LIMIT 1' );
$sleep [ 'vars' ] = 'unsleep' ;
$sleep_mod = 0 ;
//ini_set('display_errors','Off');
}
$sleep = $u -> testAction ( '`vars` = "sleep" AND `uid` = "' . $u -> info [ 'id' ] . '" LIMIT 1' , 1 );
}
function changePets (){
global $hostel , $hostel_option , $u , $cage1 , $cage2 , $pet ;
$pet = mysql_fetch_array ( mysql_query ( " SELECT `id`, `sex`, `name`, `level`, `obraz` FROM `users_animal` WHERE `pet_in_cage` = '0' AND `uid` = ' " . mysql_real_escape_string ( $u -> info [ 'id' ]) . " ' AND `delete` = 0 LIMIT 1; " ));
if ( $pet [ 'id' ] != $u -> info [ 'animal' ] ) {
$u -> info [ 'animal' ] = $pet [ 'id' ];
mysql_query ( 'UPDATE `users` SET `animal` = "' . $pet [ 'id' ] . '" WHERE `id` = "' . $u -> info [ 'id' ] . '" LIMIT 1' );
}
if ( isset ( $_GET [ 'pet_id' ]) ) {
$id = ( int ) $_GET [ 'pet_id' ];
if ( $_GET [ 'pet_id' ] < 0 ) {
$id = - $id ;
2023-01-10 18:29:32 +02:00
//Помещаем зверя в общагу
2022-06-07 00:30:34 +03:00
$cageid = mysql_fetch_array ( mysql_query ( " SELECT `id`,`name` FROM `users_animal` WHERE `pet_in_cage` = '0' AND `uid` = ' " . mysql_real_escape_string ( $u -> info [ 'id' ]) . " ' AND `id` = ' " . mysql_real_escape_string ( $id ) . " ' LIMIT 1 " ));
if ( isset ( $cageid [ 'id' ]) ) {
$cageid1 = mysql_fetch_array ( mysql_query ( " SELECT `id` FROM `users_animal` WHERE `pet_in_cage` = '1' AND `uid` = ' " . mysql_real_escape_string ( $u -> info [ 'id' ]) . " ' LIMIT 1 " ));
if ( isset ( $cageid1 [ 'id' ]) ) {
$cageid2 = mysql_fetch_array ( mysql_query ( " SELECT `id` FROM `users_animal` WHERE `pet_in_cage` = '2' AND `uid` = ' " . mysql_real_escape_string ( $u -> info [ 'id' ]) . " ' LIMIT 1 " ));
if ( isset ( $cageid2 [ 'id' ]) ) {
mysql_query ( 'UPDATE `users_animal` SET `pet_in_cage` = "0" WHERE `id` = "' . $cageid2 [ 'id' ] . '" LIMIT 1' );
mysql_query ( 'UPDATE `users_animal` SET `pet_in_cage` = "2" WHERE `id` = "' . $cageid [ 'id' ] . '" LIMIT 1' );
} else {
mysql_query ( 'UPDATE `users_animal` SET `pet_in_cage` = "2" WHERE `id` = "' . $cageid [ 'id' ] . '" LIMIT 1' );
}
} else {
mysql_query ( 'UPDATE `users_animal` SET `pet_in_cage` = "1" WHERE `id` = "' . $cageid [ 'id' ] . '" LIMIT 1' );
}
2023-01-10 18:29:32 +02:00
$u -> error = '<FONT COLOR=red>Вы успешно поместили "' . $cageid [ 'name' ] . '" в общежития!</FONT>' ;
2022-06-07 00:30:34 +03:00
} else {
2023-01-10 18:29:32 +02:00
$u -> error = '<FONT COLOR=red><B>Зверь не найден в инвентаре!</B></FONT>' ;
2022-06-07 00:30:34 +03:00
}
} else {
2023-01-10 18:29:32 +02:00
//Забираем зверя из общаги
2022-06-07 00:30:34 +03:00
$cageid = mysql_fetch_array ( mysql_query ( " SELECT `id`,`name`,`pet_in_cage` FROM `users_animal` WHERE `pet_in_cage` > '0' AND `uid` = ' " . mysql_real_escape_string ( $u -> info [ 'id' ]) . " ' AND `id` = ' " . mysql_real_escape_string ( $id ) . " ' LIMIT 1 " ));
if ( isset ( $cageid [ 'id' ]) ) {
if ( $u -> info [ 'animal' ] > 0 ) {
mysql_query ( 'UPDATE `users_animal` SET `pet_in_cage` = "' . $cageid [ 'pet_in_cage' ] . '" WHERE `id` = "' . $u -> info [ 'animal' ] . '" LIMIT 1' );
mysql_query ( 'UPDATE `users_animal` SET `pet_in_cage` = "0" WHERE `id` = "' . $cageid [ 'id' ] . '" LIMIT 1' );
} else {
mysql_query ( 'UPDATE `users_animal` SET `pet_in_cage` = "0" WHERE `id` = "' . $cageid [ 'id' ] . '" LIMIT 1' );
}
2023-01-10 18:29:32 +02:00
$u -> error = '<FONT COLOR=red>Вы успешно забрали "' . $cageid [ 'name' ] . '" из общежития!</FONT>' ;
2022-06-07 00:30:34 +03:00
} else {
2023-01-10 18:29:32 +02:00
$u -> error = '<FONT COLOR=red><B>Зверь не найден в общежитии!</B></FONT>' ;
2022-06-07 00:30:34 +03:00
}
}
}
$pet = mysql_fetch_array ( mysql_query ( " SELECT `id`, `sex`, `name`, `level`, `obraz` FROM `users_animal` WHERE `pet_in_cage` = '0' AND `uid` = ' " . mysql_real_escape_string ( $u -> info [ 'id' ]) . " ' AND `delete` = 0 LIMIT 1; " ));
if ( $pet [ 'id' ] != $u -> info [ 'animal' ] ) {
mysql_query ( 'UPDATE `users` SET `animal` = "' . $pet [ 'id' ] . '" WHERE `id` = "' . $u -> info [ 'id' ] . '" LIMIT 1' );
}
$cage1 = mysql_fetch_array ( mysql_query ( " SELECT `id`, `sex`, `name`, `level`, `obraz`,`pet_in_cage` FROM `users_animal` WHERE `pet_in_cage` = '1' AND `uid` = ' " . mysql_real_escape_string ( $u -> info [ 'id' ]) . " ' AND `delete` = 0 LIMIT 1; " ));
$cage2 = mysql_fetch_array ( mysql_query ( " SELECT `id`, `sex`, `name`, `level`, `obraz`,`pet_in_cage` FROM `users_animal` WHERE `pet_in_cage` = '2' AND `uid` = ' " . mysql_real_escape_string ( $u -> info [ 'id' ]) . " ' AND `delete` = 0 LIMIT 1; " ));
return array ( 'pet' => $pet , 'cage1' => $cage1 , 'cage2' => $cage2 );
}
function saveNote () {
global $hostel , $hostel_option , $u ;
$_POST [ 'notes' ] = str_replace ( " \\ n " , " \n " , $_POST [ 'notes' ]);
$simbolcount = strlen ( $_POST [ 'notes' ]);
if ( $simbolcount > 10000 ) {
2023-01-10 18:29:32 +02:00
$err = " <FONT COLOR=red><B>Слишком много текста... такое не сохранить.<BR></B></FONT><BR> " ;
2022-06-07 00:30:34 +03:00
} else {
mysql_query ( " UPDATE `house` SET `notes` = ' " . mysql_real_escape_string ( $_POST [ 'notes' ]) . " ' WHERE `owner` = ' " . mysql_real_escape_string ( $u -> info [ 'id' ]) . " '; " );
$hostel [ 'notes' ] = $_POST [ 'notes' ];
2023-01-10 18:29:32 +02:00
$err = " <FONT COLOR=red><B>Сохранено ( " . $simbolcount . " )<BR></B></FONT><BR> " ;
2022-06-07 00:30:34 +03:00
}
$hostel = mysql_fetch_array ( mysql_query ( " SELECT * FROM `house` WHERE `owner` = ' " . mysql_real_escape_string ( $u -> info [ 'id' ]) . " '; " ));
}
function hostel ( $id ){
global $hostel , $hostel_option , $u , $err ;
$filter = '<table cellpadding="0" cellspacing="0" style="padding:0px 16px 0px 8px;">
2023-01-10 18:29:32 +02:00
<tbody><tr><td> Правила: Нет нападениям. Нет телепортации. Нет передаче предметов. Нет использованию магии и распитию эликсиров.</td>
</tr><tr><td align="right"><i>Комендант</i></td></tr></tbody></table>' ;
2022-06-07 00:30:34 +03:00
$content = '' ;
$additional = '' ;
$azuby = array (
'' , '' , ''
);
if ( $u -> info [ 'level' ] < 8 ) {
2023-01-10 18:29:32 +02:00
$azuby [ 0 ] = ' / <A style="padding-left:12px" href="?arenda=base&azb=1&sd4=' . $u -> info [ 'id' ] . '" onClick="return confirm(\'Вы уверены, что хотите заплатить 5 зубов?\')">Арендовать за ' . $u -> zuby ( 5 , 1 ) . '</A>' ;
$azuby [ 1 ] = ' / <A style="padding-left:12px" href="?arenda=advanced&azb=1&sd4=' . $u -> info [ 'id' ] . '" onClick="return confirm(\'Вы уверены, что хотите заплатить 15 зубов?\')">Арендовать за ' . $u -> zuby ( 15 , 1 ) . '</A>' ;
$azuby [ 2 ] = ' / <A style="padding-left:12px" href="?arenda=advanced2&azb=1&sd4=' . $u -> info [ 'id' ] . '" onClick="return confirm(\'Вы уверены, что хотите заплатить 50 зубов?\')">Арендовать за ' . $u -> zuby ( 50 , 1 ) . '</A>' ;
2022-06-07 00:30:34 +03:00
}
2023-01-10 18:29:32 +02:00
if ( $hostel [ 'action' ] == 'changelist' ){ # смена аренды
$content = " Вы можете сменить арендуемое помещение:<br/><p><small>Для смены аренды на вашем балансе должна быть необходимая сумма.<BR>Смена аренды, оплаченной зубами на кредитную аренду запрещена.<BR>Количество вещей, сувениров и животных на вашем складе не должно превышать допустимое значение для выбранного арендуемого помещения.<BR></small></p> " . ( $hostel [ 'type' ] != " base " ? " <hr align= \" left \" width= \" 40% \" />Арендовать <strong>Койку в общежитии</strong><BR>Цена: 1 кр. + 1 кр. в неделю.<p style='padding-left:12px;margin: 5px 0px;'>• Размер сундука: 25 вещей<BR>• Сувениры: 50 шт.<BR>• Койка</p><A style='padding-left:12px;padding-bottom:6px' href= \" ?changearenda=base&sd4= " . $u -> info [ 'id' ] . " \" onClick= \" return confirm('Вы уверены, что хотите заплатить 1 кр. за смену помещения?') \" >Сменить помещение</A> " : '' ) . ( $hostel [ 'type' ] != " advanced " ? " <hr align= \" left \" width= \" 40% \" />Арендовать <strong>Койку с тумбочкой</strong><BR>Цена: 3 кр. + 3 кр. в неделю.<p style='padding-left:12px;margin: 5px 0px;'>• Размер сундука: 40 вещей<BR>• Сувениры: 150 шт.<BR>• Койка</p><A style='padding-left:12px;padding-bottom:6px' href= \" ?changearenda=advanced&sd4= " . $u -> info [ 'id' ] . " \" onClick= \" return confirm('Вы уверены, что хотите заплатить 3 кр. за смену помещения?') \" >Сменить помещение</A> " : '' ) . ( $hostel [ 'type' ] != " advanced2 " ? " <hr align= \" left \" width= \" 40% \" />Арендовать <strong>Койку со шкафом</strong><BR>Цена: 10 кр. + 10 кр. в неделю.<p style='padding-left:12px;margin: 5px 0px;'>• Размер сундука: 70 вещей<BR>• Сувениры: 200 шт.<BR>• Мест для животных: 2 <BR>• Койка</p><A style='padding-left:12px;padding-bottom:6px' href= \" ?changearenda=advanced2&sd4= " . $u -> info [ 'id' ] . " \" onClick= \" return confirm('Вы уверены, что хотите заплатить 10 кр. за смену помещения?') \" >Сменить помещение</A> " : '' ) . '<br/> ' ;
} elseif ( $id == 0 ){ # новая аренда
$content = '<div style="padding:8px 6px;"><strong>Койка в общежитии</strong><br/>Цена: 1 кр. + 1 кр. в неделю.<br/><p style="padding-left:12px;margin: 5px 0px;">• Размер сундука: 25 вещей<br/>• Сувениры: 50 шт.<br/>• Койка</p><A style="padding-left:12px" href="?arenda=base&sd4=' . $u -> info [ 'id' ] . '" onClick="return confirm(\'Вы уверены, что хотите заплатить 1 кр.?\')">Арендовать</A>' . $azuby [ 0 ] . '<br/><hr align="left" width="40%"/><strong>Койка с тумбочкой</strong><br/>Цена: 3 кр. + 3 кр. в неделю.<br/><p style="padding-left:12px;margin: 5px 0px;">• Размер сундука: 40 вещей<br/>• Сувениры: 150 шт.<br/>• Койка</p><A style="padding-left:12px" href="?arenda=advanced&sd4=' . $u -> info [ 'id' ] . '" onClick="return confirm(\'Вы уверены, что хотите заплатить 3 кр.?\')">Арендовать</A>' . $azuby [ 1 ] . '<br/><hr align="left" width="40%"/><strong>Койка со шкафом</strong><br/>Цена: 10 кр. + 10 кр. в неделю.<br/><p style="padding-left:12px;margin: 5px 0px;">• Размер сундука: 70 вещей<br/>• Сувениры: 200 шт.<br/>• Мест для животных: 2 <br/>• Койка</p><A style="padding-left:12px;padding-bottom:6px" href="?arenda=advanced2&sd4=' . $u -> info [ 'id' ] . '" onClick="return confirm(\'Вы уверены, что хотите заплатить 10 кр.?\')">Арендовать</A>' . $azuby [ 2 ] . '<br/></div>' ;
} else { # текущее состояние аренды
$content = " Вы арендовали « " . $hostel_option [ $hostel [ 'type' ]][ 't_name' ] . " » " . $hostel_option [ $hostel [ 'type' ]][ 'stage' ] . " <BR>Начало аренды: " . date ( 'd.m.y H:i' , $hostel [ 'starttime' ]) . " <BR>Оплачено до: " . date ( " d.m.y H:i " , $hostel [ 'endtime' ]) . ' (баланс ' . $hostel [ 'balance' ] . ' кр.)' . "
<IMG src= \" https://img.new-combats.com/i/up.gif \" width=11 height=11 title= \" Оплатить \" onClick= \" usescript('Оплата аренды','main.php', 'payarenda', ' " . $hostel [ 'weekcost' ] . " ', 'Сумма оплаты:<BR>',0, '<INPUT type=hidden name=sd4 value='+sd4+'>') \" style= \" cursor:pointer \" > " ;
2022-06-07 00:30:34 +03:00
if ( $u -> info [ 'level' ] < 8 ) {
2023-01-10 18:29:32 +02:00
$content .= " <small>Оплатить за зубы (Цена в неделю: " . $u -> zuby ( $hostel [ 'weekcost' ] * 5 , 1 ) . " ): </small><IMG src= \" https://img.new-combats.com/i/up.gif \" width=11 height=11 title= \" Оплатить за зубы \" onClick= \" usescript('Оплата аренды за зубы','main.php?zby=1', 'payarenda', ' " . $hostel [ 'weekcost' ] . " ', 'Сумма оплаты:<BR>',0, '<INPUT type=hidden name=sd4 value='+sd4+'>') \" style= \" cursor:pointer \" > " ;
2022-06-07 00:30:34 +03:00
}
2023-01-10 18:29:32 +02:00
$content .= " <BR>Цена в неделю: " . $hostel [ 'weekcost' ] . " кр.<BR> • Размер сундука: " . $hostel_option [ $hostel [ 'type' ]][ 'tariff' ][ 'items' ] . " вещей<BR> • Сувениры: " . $hostel_option [ $hostel [ 'type' ]][ 'tariff' ][ 'souvenirs' ] . " шт.<BR> " . ( $hostel_option [ $hostel [ 'type' ]][ 'tariff' ][ 'animal' ] > 0 ? ' • Мест для животных: ' . $hostel_option [ $hostel [ 'type' ]][ 'tariff' ][ 'animal' ] . '<BR>' : '' ) . "  • Койка <br/><p><A href= \" ?closearenda=1&sd4= " . $u -> info [ 'id' ] . " \" onClick= \" return confirm('Вы уверены, что хотите прекратить аренду?') \" >Прекратить аренду</A><BR><SMALL>При отмене аренды, все вещи из сундука переносятся в ваш инвентарь.<BR>Ваши животные передаются вам. Если у вас уже есть другое животное, то выпускаются на волю.<BR>Остаток средств не возвращается.<BR>Если вы должны оплатить аренду, то ваш долг удваивается и вы не сможете воспользоваться арендой, пока не оплатите долг.<BR></SMALL></p><p><A href= \" ?changelist=1&sd4= " . $u -> info [ 'id' ] . " \" >Сменить аренду " ;
2022-06-07 00:30:34 +03:00
if ( $u -> info [ 'level' ] < 8 ) {
2023-01-10 18:29:32 +02:00
$content .= ' (Только за кр.)' ;
2022-06-07 00:30:34 +03:00
}
2023-01-10 18:29:32 +02:00
$content .= " </A><BR><SMALL>Для смены аренды на вашем балансе должна быть необходимая сумма.<BR>Смена аренды, оплаченной зубами на кредитную аренду запрещена.<BR>Количество вещей, сувениров и животных на вашем складе не должно превышать допустимое значение для выбранного арендуемого помещения.<BR></SMALL></p> " ;
2022-06-07 00:30:34 +03:00
}
return array ( 'filter' => $filter , 'content' => $content , 'additional' => $additional );
}
function partition ( $pid ){
global $hostel , $hostel_option , $u , $sleep , $category , $user_new_pers ;
$filter = '' ;
$content = '' ;
$additional = '' ;
if ( $hostel [ 'partition' ] == 0 OR $hostel [ 'partition' ] == '' ) $hostel [ 'partition' ] = 4 ;
2023-01-10 18:29:32 +02:00
# $hostel_option[$pid]['type'] - инфа о тарифе
if ( $hostel [ 'partition' ] == 1 ){ # Комната
$content = '<form method="post" name="F1" style="padding:2px 0px 2px 5px;">Вы находитесь в своей комнате. Первое, что вы видите - записная книжка.<BR>
Вы можете оставить нужные вам записи общим объемом не более 10000 символов.
2022-06-07 00:30:34 +03:00
<TEXTAREA rows=15 style="width: 90%;" name="notes">' . $hostel [ 'notes' ] . '</TEXTAREA><BR>
<INPUT type="hidden" name="room" value="1">
2023-01-10 18:29:32 +02:00
<INPUT type="submit" name="savenotes" value="Сохранить текст"></form>' ;
} else if ( $hostel [ 'partition' ] == 2 ){ # Хранилище
2022-06-07 00:30:34 +03:00
2023-01-10 18:29:32 +02:00
$text2 = 'В рюкзаке' ;
2022-06-07 00:30:34 +03:00
if ( $hostel [ 'category' ] == 1 ){
2023-01-10 18:29:32 +02:00
$text1 = 'В сундуке' ;
2022-06-07 00:30:34 +03:00
$count = mysql_num_rows ( mysql_query ( 'SELECT `iu`.`item_id` FROM `items_users` AS `iu` LEFT JOIN `items_main` AS `im` ON (`im`.`id` = `iu`.`item_id`) WHERE `iu`.`inShop` = "1" AND `iu`.`gift` = "" AND `iu`.`gtxt1` = "" AND `iu`.`gtxt2` = "" AND `iu`.`uid` = "' . $u -> info [ 'id' ] . '" AND `iu`.`delete` = "0" GROUP BY `im`.id,`iu`.item_id, `iu`.inGroup HAVING `iu`.inGroup > 0 UNION ALL SELECT `iu`.`item_id` FROM `items_users` AS `iu` LEFT JOIN `items_main` AS `im` ON (`im`.`id` = `iu`.`item_id`) WHERE `iu`.inGroup=0 AND `iu`.`inShop` = "1" AND `iu`.`gift` = "" AND `iu`.`gtxt1` = "" AND `iu`.`gtxt2` = "" AND `iu`.`uid` = "' . $u -> info [ 'id' ] . '" AND `iu`.`delete` = "0" GROUP BY `iu`.id, `iu`.item_id' ));
$chest = $u -> genInv ( 7 , '`iu`.`uid`="' . $u -> info [ 'id' ] . '" AND `iu`.`delete`="0" AND `im`.`type` != "28" AND `im`.`type` != "38" AND `im`.`type` != "39" AND `iu`.`inOdet`="0" AND `iu`.`inShop`="1" ORDER BY `lastUPD` DESC' );
$inventory = $u -> genInv ( 8 , '`iu`.`uid`="' . $u -> info [ 'id' ] . '" AND `iu`.`delete`="0" AND `im`.`type` != "28" AND `im`.`type` != "38" AND `im`.`type` != "39" AND `iu`.`inOdet`="0" AND `iu`.`inShop`="0" ORDER BY `lastUPD` DESC' );
} elseif ( $hostel [ 'category' ] == 2 ){
2023-01-10 18:29:32 +02:00
$text1 = 'В сохранении' ;
2022-06-07 00:30:34 +03:00
$count = mysql_num_rows ( mysql_query ( 'SELECT `iu`.`item_id` FROM `items_users` AS `iu` LEFT JOIN `items_main` AS `im` ON (`im`.`id` = `iu`.`item_id`) WHERE `iu`.`inShop` = "1" AND `iu`.`gift` != "" AND `iu`.`uid` = "' . $u -> info [ 'id' ] . '" AND `iu`.`delete` = "0" GROUP BY `im`.id,`iu`.item_id, `iu`.inGroup HAVING `iu`.inGroup > 0 UNION ALL SELECT `iu`.`item_id` FROM `items_users` AS `iu` LEFT JOIN `items_main` AS `im` ON (`im`.`id` = `iu`.`item_id`) WHERE `iu`.inGroup=0 AND `iu`.`inShop` = "1" AND `iu`.`gift` != "" AND `iu`.`uid` = "' . $u -> info [ 'id' ] . '" AND `iu`.`delete` = "0" GROUP BY `iu`.id, `iu`.item_id' ));
$chest = $u -> genInv ( 10 , '`iu`.`uid`="' . $u -> info [ 'id' ] . '" AND `iu`.`delete`="0" AND (`im`.`type` = "28" OR `im`.`type` = "38" OR `im`.`type` = "39") AND `iu`.`inOdet`="0" AND `iu`.`inShop`="1" ORDER BY `lastUPD` DESC' );
$inventory = $u -> genInv ( 9 , '`iu`.`uid`="' . $u -> info [ 'id' ] . '" AND `iu`.`delete`="0" AND (`im`.`type` = "28" OR `im`.`type` = "38" OR `im`.`type` = "39") AND `iu`.`inOdet`="0" AND `iu`.`inShop`="0" ORDER BY `lastUPD` DESC' );
}
$additional = '<table width=100% cellpadding=0 cellspacing=0 valign=center><tr>
2023-01-10 18:29:32 +02:00
<td class="add-btn' . ( $hostel [ 'category' ] == 1 ? ' active' : '' ) . '" align="center" valign="center"><a href="?' . ( $hostel [ 'category' ] != 1 ? 'category=1&' : '' ) . 'rnd=' . rand ( 0 , 999999999999 ) . '" title="Сундук"> Сундук ' . ( $hostel [ 'category' ] == 1 ? '<span id="chestCount">[<span id="in_chest" style="padding: 0px 1px;">' . $count . '</span>/<span style="padding: 0px 1px;">' . $hostel_option [ $hostel [ 'type' ]][ 'tariff' ][ 'items' ] . '</span>]</span>' : '' ) . '</a></td>
<td class="add-btn' . ( $hostel [ 'category' ] == 2 ? ' active' : '' ) . '" align="center" valign="center"><a href="?' . ( $hostel [ 'category' ] != 2 ? 'category=2&' : '' ) . 'rnd=' . rand ( 0 , 999999999999 ) . '" title="Полка для сувениров"> Сувениры ' . ( $hostel [ 'category' ] == 2 ? '<span id="giftCount">[<span id="in_chest" style="padding: 0px 1px;">' . $count . '</span>/<span style="padding: 0px 1px;">' . $hostel_option [ $hostel [ 'type' ]][ 'tariff' ][ 'souvenirs' ] . '</span>]</span>' : '' ) . '</a></td>
2022-06-07 00:30:34 +03:00
</tr></table>' ;
$filter = '<table width="100%" cellpadding=0 cellspacing=0 valign=center><tr>
<td width="50%" valign="center" style="border-left: 1px solid #a5a5a5; padding: 2px 5px; border-right: 1px solid #a5a5a5;">
<table width="100%" cellpadding=0 cellspacing=0 valign=center>
<tr>
<td><font style="font-family: Arial, Tahoma, sans-serif; font-weight: bold;color: #003388;">' . $text1 . ':</font></td>
<td align="right">
<form id="line_filter1" style="display:inline; font-size:11px;" onsubmit="return false;" prc_adsf="true">
2023-01-10 18:29:32 +02:00
Поиск: <div style="display:inline-block; position:relative; ">
<input type="text" id="inp1FilterName" placeholder="Введите название предмета..." autofocus="autofocus" size="44" autocomplete="off">
<img style="position:absolute; cursor:pointer; right: 2px; top: 3px; width: 12px; height: 12px;" onclick="document.getElementById(\'inp1FilterName\').value=\'\';" title="Убрать фильтр (клавиша Esc)" src="https://img.new-combats.com/i/clear.gif">
<input type="submit" style="display: none" id="inp1FilterName_submit" value="Фильтр" onclick="return false">
2022-06-07 00:30:34 +03:00
<div class="autocomplete-suggestions" style="position: absolute; display: none;top: 15px; left:0px; margin:0px auto; right: 0px; max-height: 300px;"></div>
</div>
</form>
</td>
</tr>
</table>
</td>
<td valign="top" valign="center" style="border-left: 1px solid #a5a5a5; padding: 2px 5px; border-right: 1px solid #a5a5a5;">
<table width="100%" cellpadding=0 cellspacing=0 valign=center>
<tr>
<td><font style="font-family: Arial, Tahoma, sans-serif; font-weight: bold;color: #003388;">' . $text2 . ':</font></td>
<td align="right">
<form id="line_filter2" style="display:inline; font-size:11px;" onsubmit="return false;" prc_adsf="true">
2023-01-10 18:29:32 +02:00
Поиск: <div style="display:inline-block; position:relative; ">
<input type="text" id="inp2FilterName" placeholder="Введите название предмета..." autofocus="autofocus" size="44" autocomplete="off">
<img style="position:absolute; cursor:pointer; right: 2px; top: 3px; width: 12px; height: 12px;" onclick="document.getElementById(\'inp2FilterName\').value=\'\';" title="Убрать фильтр (клавиша Esc)" src="https://img.new-combats.com/i/clear.gif">
<input type="submit" style="display: none" id="inp2FilterName_submit" value="Фильтр" onclick="return false">
2022-06-07 00:30:34 +03:00
<div class="autocomplete-suggestions" style="position: absolute; display: none;top: 15px; left:0px; margin:0px auto; right: 0px; max-height: 300px;"></div>
</div>
</form>
</td>
</tr>
</table>
</td>
</tr>
<tr bgcolor="#a5a5a5">
<td align="left" style="font-family: Arial, Tahoma, sans-serif; font-size:13px; padding:3px 0px 2px 5px"> </td>
2023-01-10 18:29:32 +02:00
<td align="right" style="font-family: Arial, Tahoma, sans-serif; font-size:13px; padding:3px 5px 2px 0px"><strong> передач: <span id="in_chest22">' . $u -> info [ 'transfers' ] . '</span>' . '</strong></td>
2022-06-07 00:30:34 +03:00
</tr>
</table>' ;
$content = '<table width="100%" cellpadding=0 cellspacing=0 valign=center><tr>
2023-01-10 18:29:32 +02:00
<td width="50%" valign="top"><div class="scrollStyle" style="border-left: 1px solid #a5a5a5; border-right: 1px solid #a5a5a5; height: 504px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(165, 165, 165); border-top-width: 2px; border-top-style: solid; border-top-color: rgb(165, 165, 165); overflow-y: auto; overflow-x: hidden;"><div ' . ( $chest [ 0 ] != 0 ? 'style="display:none;"' : '' ) . ' id="chest_null"> ПУСТО</div><table id="chest" width="100%" cellpadding=0 cellspacing=0><tbody>' . $chest [ 2 ] . '</tbody></table></div></td>
<td valign="top" valign="top"><div class="scrollStyle" style="border-left: 1px solid #a5a5a5; border-right: 1px solid #a5a5a5; height: 504px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(165, 165, 165); border-top-width: 2px; border-top-style: solid; border-top-color: rgb(165, 165, 165); overflow-y: auto; overflow-x: hidden;"><div ' . ( $inventory [ 0 ] != 0 ? 'style="display:none;"' : '' ) . ' id="inventory_null"> ПУСТО</div><table id="inventory" width="100%" cellpadding=0 cellspacing=0 ><tbody>' . $inventory [ 2 ] . '</tbody></table></div></td>
2022-06-07 00:30:34 +03:00
</tr></table>' ;
2023-01-10 18:29:32 +02:00
} else if ( $hostel [ 'partition' ] == 3 ) { # Животное
2022-06-07 00:30:34 +03:00
$ar = changePets ();
$pet = $ar [ 'pet' ];
$cage1 = $ar [ 'cage1' ];
$cage2 = $ar [ 'cage2' ];
$content = " <TABLE style='padding:2px 0px 2px 5px;' width=100% cellpadding=0 cellspacing=0 valign=top>
<TR style='padding-top: 10'>
<TD>
<table cellpadding=0 cellspacing=0><tr> " ;
if ( $cage1 [ 'pet_in_cage' ] == 1 ) {
2023-01-10 18:29:32 +02:00
$content .= '<TD width=150 align=center><div><B>' . $cage1 [ 'name' ] . '</B> [' . $cage1 [ 'level' ] . ']</div><A href="/main.php?pet_id=' . $cage1 [ 'id' ] . '&sd4=' . $u -> info [ 'id' ] . '&room=3&0.' . rand ( 0 , 9999999999999999 ) . '" alt="Оставить"><IMG src="https://img.new-combats.com/i/obraz/' . $cage1 [ 'sex' ] . '/' . $cage1 [ 'obraz' ] . '.gif" width=120 height=220></A></TD>' ;
2022-06-07 00:30:34 +03:00
} else {
2023-01-10 18:29:32 +02:00
$content .= '<TD width=150 align=center><div><B>свободно</B></div><BR><IMG src="https://img.new-combats.com/i/obraz/0/null.gif" width=120 height=220></A></TD>' ;
2022-06-07 00:30:34 +03:00
}
if ( $cage2 [ 'pet_in_cage' ] == 2 ) {
2023-01-10 18:29:32 +02:00
$content .= '<TD width=150 align=center><div><B>' . $cage2 [ 'name' ] . '</B> [' . $cage2 [ 'level' ] . ']</div><A href="/main.php?pet_id=' . $cage2 [ 'id' ] . '&sd4=' . $u -> info [ 'id' ] . '&room=3&0.' . rand ( 0 , 9999999999999999 ) . '" alt="Оставить"><IMG src="https://img.new-combats.com/i/obraz/' . $cage2 [ 'sex' ] . '/' . $cage2 [ 'obraz' ] . '.gif" width=120 height=220></A></TD>' ;
2022-06-07 00:30:34 +03:00
} else {
2023-01-10 18:29:32 +02:00
$content .= '<TD width=150 align=center><div><B>свободно</B></div><BR><IMG src="https://img.new-combats.com/i/obraz/0/null.gif" width=120 height=220></A></TD>' ;
2022-06-07 00:30:34 +03:00
}
$content .= " </tr></table>
</TD>
<TD> </TD>
<TD width=150 align=center> " ;
if ( ! $pet ) {
2023-01-10 18:29:32 +02:00
$content .= '<div><B>свободно</B></div><IMG src="https://img.new-combats.com/i/obraz/0/null.gif" width=120 height=220>' ;
2022-06-07 00:30:34 +03:00
} else {
2023-01-10 18:29:32 +02:00
$content .= '<div><B>' . $pet [ 'name' ] . '</B> [' . $pet [ 'level' ] . ']</div><A href="/main.php?pet_id=-' . $pet [ 'id' ] . '&sd4=' . $u -> info [ 'id' ] . '&room=3&0.' . rand ( 0 , 9999999999999999 ) . '" alt="Оставить"><IMG src="https://img.new-combats.com/i/obraz/' . $pet [ 'sex' ] . '/' . $pet [ 'obraz' ] . '.gif" width=120 height=220>' ;
2022-06-07 00:30:34 +03:00
}
$content .= " </A>
</TD>
</TR>
</TABLE><br/> " ;
2023-01-10 18:29:32 +02:00
} else if ( $hostel [ 'partition' ] == 4 ) { # Сон
2022-06-07 00:30:34 +03:00
2023-01-10 18:29:32 +02:00
if ( $sleep [ 'vars' ] == 'sleep' ) $u -> error = '<font>Во время сна нельзя перемещаться и пользоваться чем-либо.</font>' ;
$content = '<div style="padding:2px 0px 2px 5px;">Вы можете заснуть, забыв о внешнем мире.<BR>' . 'Во время сна все временные эффекты на вас приостанавливаются. Это касается как, например, эликсиров, так и травм.<BR>' . 'Сон не влияет на состояние предметов с ограниченным сроком существования<BR></div>' ;
2022-06-07 00:30:34 +03:00
$filter = '<table width="100%" cellspacing="0" cellpadding="0" border="0"><tr>
2023-01-10 18:29:32 +02:00
<td align="left">' . ( $sleep [ 'vars' ] == 'sleep' ? " <DIV style='color: #FA0000'> " : '' ) . 'Состояние: <B>Вы ' . ( $sleep [ 'vars' ] == 'sleep' ? 'спите' : 'бодрствуете' ) . '</B>' . ( $sleep [ 'vars' ] == 'sleep' ? " </DIV> " : '' ) . '</td>
<td align="right"><a style="padding: 2px 15px;" href="?to_' . ( $sleep [ 'vars' ] == 'sleep' ? 'awake' : 'sleep' ) . '=1&sd4=' . $u -> info [ 'id' ] . '&room=4&0.' . ( rand ( 0 , 9999999999999999 ) ) . '" >' . ( $sleep [ 'vars' ] == 'sleep' ? 'Проснуться' : 'Уснуть' ) . '</a></td>
2022-06-07 00:30:34 +03:00
</tr></table>' ;
}
return array ( 'filter' => $filter , 'content' => $content , 'additional' => $additional );
}
if ( $_GET [ 'changelist' ] == 1 && $hostel [ 'id' ] > 0 ) {
$hostel [ 'action' ] = 'changelist' ;
} elseif ( isset ( $_GET [ 'changearenda' ]) && ( $_GET [ 'changearenda' ] == 'advanced2' OR $_GET [ 'changearenda' ] == 'advanced' OR $_GET [ 'changearenda' ] == 'base' ) && $hostel [ 'id' ] > 0 ){
$hostel [ 'action' ] = 'changearenda' ;
} elseif ( isset ( $_GET [ 'arenda' ]) && isset ( $hostel_option [ $_GET [ 'arenda' ]]) && $hostel_option [ $_GET [ 'arenda' ]][ 'type' ] > 0 ){
$hostel [ 'action' ] = 'newarenda' ;
}
if ( isset ( $hostel [ 'action' ]) && $hostel [ 'action' ] != '' ){
updateHostel ();
}
2023-01-10 18:29:32 +02:00
//if( $u->info['admin'] > 0 ) { # Твинки
2022-06-07 00:30:34 +03:00
$user_new_pers = false ;
//} else {
// $user_new_pers = false;
//}
if ( $hostel [ 'balance' ] <= 0 && $u -> room [ 'id' ] != 253 && $sleep [ 'vars' ] != 'sleep' ) {
2023-01-10 18:29:32 +02:00
$result [ 'filter' ] = '<font color="red">Аренда прекращена. Оплатите задолженность.</font><BR>' ;
2022-06-07 00:30:34 +03:00
} elseif ( ! isset ( $hostel ) && $u -> room [ 'id' ] != 253 ) {
2023-01-10 18:29:32 +02:00
$result [ 'filter' ] = '<font color="red">Вы ничего не арендуете на этом этаже.</font><BR>' ;
2022-06-07 00:30:34 +03:00
} elseif ( isset ( $hostel ) && $hostel_option [ $hostel [ 'type' ]][ 'room' ] != $u -> room [ 'id' ] && $u -> room [ 'id' ] != 253 ) {
2023-01-10 18:29:32 +02:00
$result [ 'filter' ] = '<font color="red">Вы ничего не арендуете на этом этаже.</font><BR>' ;
2022-06-07 00:30:34 +03:00
$hostel_option [ $hostel [ 'type' ]][ 'type' ] = false ;
} elseif ( isset ( $hostel ) && $hostel_option [ $hostel [ 'type' ]][ 'room' ] == $u -> room [ 'id' ] && $u -> room [ 'id' ] != 253 ){
$result = partition ( $hostel [ 'type' ] );
} elseif ( $u -> room [ 'id' ] == 253 ){
2023-01-10 18:29:32 +02:00
if ( isset ( $_GET [ 'closearenda' ]) && ( int ) $_GET [ 'closearenda' ] == 1 ) { #---Прекращаем аренду
2022-06-07 00:30:34 +03:00
mysql_query ( " UPDATE `items_users` SET `inShop` = '0' WHERE `uid` = ' " . mysql_real_escape_string ( $u -> info [ 'id' ]) . " ' AND `inShop` = '1'; " );
mysql_query ( " DELETE FROM `house` WHERE `owner` = ' " . mysql_real_escape_string ( $u -> info [ 'id' ]) . " '; " );
2023-01-10 18:29:32 +02:00
$err = '<FONT COLOR=red><B>Вы отказались арендовать "' . $hostel_option [ $hostel [ 'type' ]][ 't_name' ] . '"</B></FONT>' ; unset ( $hostel );
2022-06-07 00:30:34 +03:00
}
if ( isset ( $hostel ) && $hostel_option [ $hostel [ 'type' ]][ 'type' ] > 0 ){
2023-01-10 18:29:32 +02:00
if ( isset ( $_POST [ 'payarenda' ]) && ! isset ( $_GET [ 'zby' ])) { #---Продлить аренду
2022-06-07 00:30:34 +03:00
if ( $_POST [ 'payarenda' ] >= 1 ) {
if ( $u -> info [ 'money' ] > 0 && ( int ) $_POST [ 'payarenda' ] > 0 && (( int ) $_POST [ 'payarenda' ] <= $u -> info [ 'money' ])) {
$paytime = ( $_POST [ 'payarenda' ] / $hostel [ 'weekcost' ]) * 604800 ;
mysql_query ( " UPDATE `house`,`users` SET `house`.`endtime` = `house`.`endtime`+' " . $paytime . " ', `house`.`balance` = `house`.`balance`+' " . mysql_real_escape_string ( $_POST [ 'payarenda' ]) . " ' WHERE `house`.`owner` = `users`.`id` AND `house`.`owner` = ' " . mysql_real_escape_string ( $u -> info [ 'id' ]) . " '; " );
2023-01-10 19:26:14 +02:00
$err = '<FONT COLOR=red><B>Вы положили на счет ' . htmlspecialchars ( $_POST [ 'payarenda' ], NULL ) . '.00 кр.</B></FONT> ' ;
2022-06-07 00:30:34 +03:00
$u -> info [ 'money' ] -= round (( int ) $_POST [ 'payarenda' ]);
mysql_query ( 'UPDATE `users` SET `money` = "' . mysql_real_escape_string ( $u -> info [ 'money' ]) . '" WHERE `id` = "' . $u -> info [ 'id' ] . '" LIMIT 1' );
$hostel [ 'balance' ] += $_POST [ 'payarenda' ];
$hostel [ 'endtime' ] += $paytime ;
} else {
2023-01-10 18:29:32 +02:00
$err = '<FONT COLOR=red><B>У вас недостаточно денег<BR></B></FONT><BR>' ;
2022-06-07 00:30:34 +03:00
}
} else {
2023-01-10 18:29:32 +02:00
$err = '<FONT COLOR=red><B>Минимальная сумма: 1кр.<BR></B></FONT><BR>' ;
2022-06-07 00:30:34 +03:00
}
2023-01-10 18:29:32 +02:00
} elseif ( isset ( $_POST [ 'payarenda' ]) && isset ( $_GET [ 'zby' ])) { #---Продлить аренду (за зубы)
2022-06-07 00:30:34 +03:00
if ( $_POST [ 'payarenda' ] >= 5 ) {
if ( $u -> info [ 'level' ] < 8 && $u -> info [ 'money4' ] > 0 && ( int ) $_POST [ 'payarenda' ] > 0 && (( int ) $_POST [ 'payarenda' ] <= $u -> info [ 'money4' ])) {
$paytime = ( round ( $_POST [ 'payarenda' ] / 5 , 2 ) / $hostel [ 'weekcost' ]) * 604800 ;
mysql_query ( " UPDATE `house`,`users` SET `house`.`endtime` = `house`.`endtime`+' " . $paytime . " ', `house`.`balance` = `house`.`balance`+' " . mysql_real_escape_string ( $_POST [ 'payarenda' ]) . " ' WHERE `house`.`owner` = `users`.`id` AND `house`.`owner` = ' " . mysql_real_escape_string ( $u -> info [ 'id' ]) . " '; " );
2023-01-10 18:29:32 +02:00
$err = '<FONT COLOR=red><B>Вы положили на счет ' . $u -> zuby ( round (( int ) $_POST [ 'payarenda' ]), 1 ) . '</B></FONT> ' ;
2022-06-07 00:30:34 +03:00
$u -> info [ 'money4' ] -= round (( int ) $_POST [ 'payarenda' ]);
mysql_query ( 'UPDATE `users` SET `money4` = "' . mysql_real_escape_string ( $u -> info [ 'money4' ]) . '" WHERE `id` = "' . $u -> info [ 'id' ] . '" LIMIT 1' );
$hostel [ 'balance' ] += round ( $_POST [ 'payarenda' ] / 5 , 2 );
$hostel [ 'endtime' ] += $paytime ;
} else {
2023-01-10 18:29:32 +02:00
$err = '<FONT COLOR=red><B>У вас недостаточно зубов<BR></B></FONT><BR>' ;
2022-06-07 00:30:34 +03:00
}
} else {
2023-01-10 18:29:32 +02:00
$err = '<FONT COLOR=red><B>Минимальная сумма: ' . $u -> zuby ( 5 , 1 ) . '.<BR></B></FONT><BR>' ;
2022-06-07 00:30:34 +03:00
}
}
$result = hostel ( $hostel_option [ $hostel [ 'type' ]][ 'type' ]);
} else {
$result = hostel ( 0 );
}
}
?>
<style>
#chest_null , #inventory_null {text-align:center;}
.scrollStyle .item table { border-bottom: 1px solid #A5A5A5; }
.menuList {text-align: right;display:block;margin:6px 8px 20px 16px;position:relative;padding:3px 0px;border-right: 2px solid #a5a5a5;}
.menuList:after { clear:both;content:'';position:absolute;z-index:-1;border-radius:5px;right:-5px;width:9px;height:9px;bottom:-8px;background: #a5a5a5;}
.menuList:before { clear:both;content:'';position:absolute;z-index:-1;border-radius:5px;right:-5px;width:9px;height:9px;top:-8px;background: #a5a5a5;}
.menuItem {display:block;padding-right: 9px;margin-top:2px;}
.menuActive {position:relative;overflow: hidden;margin-top:2px;display: block;padding-right: 14px;}
.menuActive:before {content:'';position:absolute;z-index:-1;transform: rotate(45deg);right:-5px;width:10px;height:10px;top:3px;background: #a5a5a5;}
.pH3 { COLOR: #8f0000; FONT-FAMILY: Arial; FONT-SIZE: 12pt; FONT-WEIGHT: bold; }
.ahint { margin: 0px auto; left: 0px; right: 0px; top: 23%; }
.add-btn {font-size: 12px;background: #C8C8C8;height:30px;box-sizing:border-box;border-bottom:1px solid #a5a5a5;vertical-align: middle;font-family: Arial, Tahoma, sans-serif;}
.add-btn.active {background: #e2e0e1;border-left:1px solid #a5a5a5;border-right:1px solid #a5a5a5;border-bottom:0px;}
.add-btn > a > span { color: #222; font-size:10px; font-weight: 400;}
</style>
<script type="text/javascript" src="js/jquery.1.11.js"></script>
<? if( $hostel['partition'] == 2){ ?>
<script type="text/javascript" src="js/jquery.cookie.1.4.1.js"></script>
<script type="text/javascript" src="js/jquery.autocomplete.js"></script>
<? } ?>
<script>
<? if( $hostel['partition'] == 2){ ?>
$.cookie('invFilterByName1','');
$.cookie('invFilterByName2','');
$(document).ready(function () {
function moveAnimate(element, newParent){
element = $(element);
newParent= $(newParent);
var oldOffset = element.offset();
element.appendTo(newParent);
var newOffset = element.offset();
var temp = element.clone().appendTo('#contentBox');
temp.css('position', 'absolute').css('left', oldOffset.left).css('top', oldOffset.top).css('width', element.width()).css('zIndex', 250);
element.hide();
temp.animate( {
'top': newOffset.top,
'left':newOffset.left
}, 'slow', function(){
element.show();
temp.remove();
});
var count_inventory = $('#inventory .item').length;
var count_chest = $('#chest .item').length;
if (parseInt(count_chest)==0) {
$('#chest_null').show();
} else {
$('#chest_null').hide();
}
if (parseInt(count_inventory)==0) {
$('#inventory_null').show();
} else {
$('#inventory_null').hide();
}
}
function obj_recount(action){
var count = parseInt($('#in_chest').text());
var count22 = parseInt($('#in_chest22').text());
if (action==1) {
$('#in_chest').text(count+1);
$('#in_chest22').text(count22-1);
}
if (action==2) {
$('#in_chest').text(count-1);
$('#in_chest22').text(count22-1);
}
}
function obj_add(id, room, rnd, t){
if( parseInt($('#in_chest22').text()) > 0 ) {
if (rnd=='' || rnd ==undefined || rnd =='undefined') {var rnd = 1;}
var dataString = "ajaxHostel=1&obj_add="+id+"&room="+room+"&rnd="+rnd;
$.ajax({
type: "GET",
dataType: 'html',
data: dataString,
url: "main.php",
cache: false,
success: function (data) {
if (data=='error') {
2023-01-10 18:29:32 +02:00
$("#errorMsg").html("<font color='red'>Больше не помещается!</font>");
2022-06-07 00:30:34 +03:00
} else {
$(t).attr('class','obj_take');
2023-01-10 18:29:32 +02:00
$(t).text('В рюкзак');
2022-06-07 00:30:34 +03:00
t = $(t).parents('.item').first();
obj_recount(1);
moveAnimate(t, $('#chest').children('tbody'));
setTimeout(UpdateItemList(), 200);
}
}
});
} else {
2023-01-10 18:29:32 +02:00
alert('Лимит передач на сегодня исчерпан.');
2022-06-07 00:30:34 +03:00
}
}
function obj_take(id, room, rnd, t){
if( parseInt($('#in_chest22').text()) > 0 ) {
$(t).text('<?
if( $hostel['category'] == 1 ){
2023-01-10 18:29:32 +02:00
echo "В сундук";
2022-06-07 00:30:34 +03:00
} elseif($hostel['category'] == 2 ){
2023-01-10 18:29:32 +02:00
echo "Под стекло";
} else echo "куда-то закинуть";?>');
2022-06-07 00:30:34 +03:00
t = $(t).parents('.item').first();
if (rnd=='' || rnd ==undefined || rnd =='undefined') {var rnd = 1;}$.ajax({type: "GET",url: "main.php?ajax=1&obj_take="+id+"&room="+room+"&rnd="+rnd,cache: false,success: function () {
obj_recount(2);
moveAnimate(t, $('#inventory').children('tbody'));
setTimeout(UpdateItemList(), 200);
}});
} else {
2023-01-10 18:29:32 +02:00
alert('Лимит передач на сегодня исчерпан.');
2022-06-07 00:30:34 +03:00
}
}
function UpdateItemList(){
var inv_names1 = []; // chest
var inv_names2 = []; // inventory
var items1 = $('#chest').find('a.inv_name');
var items2 = $('#inventory').find('a.inv_name');
$(items1).each(function(){ if($.inArray($(this).text(), inv_names1)<0) inv_names1.push($(this).text()); });
$('#inp1FilterName').autocomplete({ lookup:inv_names1, onSelect: invFilterByName1 });
$(items2).each(function(){ if($.inArray($(this).text(), inv_names2)<0) inv_names2.push($(this).text()); });
$('#inp2FilterName').autocomplete({ lookup:inv_names2, onSelect: invFilterByName2 });
}
function invFilterByName1(){
$.cookie('invFilterByName1', '');
var val = $('#inp1FilterName').val();
if (val == '') $('#chest').find("a.inv_name").parents('.item').stop().show();
else {
$.cookie('invFilterByName1', val);
$('#chest').find("a.inv_name:not(:contains('" + val + "'))").parents('.item').stop().css('background-color', '').hide();
$('#chest').find("a.inv_name:contains('" + val + "')").parents('.item').stop().show();
}
}
function invFilterByName2(){
$.cookie('invFilterByName2', '');
var val = $('#inp2FilterName').val();
if (val == '') $('#inventory').find("a.inv_name").parents('.item').stop().show();
else {
$.cookie('invFilterByName2', val);
$('#inventory').find("a.inv_name:not(:contains('" + val + "'))").parents('.item').stop().css('background-color', '').hide();
$('#inventory').find("a.inv_name:contains('" + val + "')").parents('.item').stop().show();
}
}
2023-01-10 18:29:32 +02:00
UpdateItemList(); // пересчет предметов.
2022-06-07 00:30:34 +03:00
invFilterByName1Timer=null;
invFilterByName2Timer=null;
2023-01-10 18:29:32 +02:00
// просматриваем результат
2022-06-07 00:30:34 +03:00
$('#line_filter1').submit(function (){ $('#inp1FilterName_submit').trigger('click'); });
$('#line_filter2').submit(function (){ $('#inp2FilterName_submit').trigger('click'); });
2023-01-10 18:29:32 +02:00
// Если в выпадающем списке предметов листаем при помощи клавиш Up и Down, автоматически просматриваем результат.
2022-06-07 00:30:34 +03:00
$('#inp1FilterName').keyup(function (e){ $('#inp1FilterName_submit').trigger('click'); });
$('#inp2FilterName').keyup(function (e){ $('#inp2FilterName_submit').trigger('click'); });
2023-01-10 18:29:32 +02:00
// Запоминаем прошлый поиск предмета и активируем его при открытии инвентаря\сундука
2022-06-07 00:30:34 +03:00
if ($.cookie('invFilterByName1')) { $('#inp1FilterName').val($.cookie('invFilterByName1')); invFilterByName1(); }
if ($.cookie('invFilterByName2')) { $('#inp2FilterName').val($.cookie('invFilterByName2')); invFilterByName2(); }
2023-01-10 18:29:32 +02:00
// Автообновление в реальном времени при написании текста.
2022-06-07 00:30:34 +03:00
$('#line_filter1').click(function (){ window.clearInterval(invFilterByName1Timer); if($('#inp1FilterName').val()=='')invFilterByName1(); else invFilterByName1Timer=setTimeout(invFilterByName1, 200); return false;} );
$('#line_filter2').click(function (){ window.clearInterval(invFilterByName2Timer); if($('#inp2FilterName').val()=='')invFilterByName2(); else invFilterByName2Timer=setTimeout(invFilterByName2, 200); return false;} );
//$(document).keyup(function (e) {if (e.which == 13)invFilterByName1(); if (e.which == 27) { $('#textSearch').click(); } });
$(document).on('click', '.obj_take', function(){
var id = $(this).attr('rel');
var room = $(this).attr('data-room');
$(this).attr('class','obj_add');
var rnd = $(this).attr('data-code');
obj_take(id, room, rnd, $(this));
});
$(document).on('click', '.obj_add', function(){
var id = $(this).attr('rel');
var room = $(this).attr('data-room');
var rnd = $(this).attr('data-code');
obj_add(id, room, rnd, $(this));
});
function inventoryHeight() {
var height = $('#contentBox').height();
var heW = $(window).height();
heW = heW-146; // 1060
height = height-175; // 462
var heMax = $(".scrollStyle").children('table').height();
if (heMax > height) {
if (heW <100) { heW = 100; }
if (heW > height) {
$(".scrollStyle").height(heW);
} else {
$(".scrollStyle").height(height);
}
} else {
$(".scrollStyle").height(heW);
}
// console.log(heW+':heW, '+height+':height, '+heMax+':heMax');
}
$(window).ready(function(){
inventoryHeight();
});
$(window).resize(function(){
inventoryHeight();
});
});
jQuery.expr[":"].contains = function (elem, i, match, array){ return (elem.textContent || elem.innerText || jQuery.text(elem) || "").toLowerCase().indexOf(match[3].toLowerCase()) >= 0; }
<? } ?>
var sd4 = "<?=$u->info['id'];?>";
</script>
<script type="text/javascript" language="javascript" src='https://img.new-combats.com/js/commoninf.js'></script>
<script language="JavaScript" src="https://img.new-combats.com/js/sl2.27.js"></script><div id=hint4 class=ahint></div>
<table width="100%" cellspacing="0" cellpadding="0" border="0">
<tr>
<td align="left" valign="top">
<table width="100%" cellspacing="0" cellpadding="0" border="0">
<?='<tr><td style="border-bottom:1px solid #a5a5a5; padding:2px 0px 2px 5px;" id="errorMsg">'.$err.$u->error.$error.$er.$re.'</td></tr>';?>
<tr>
<td>
<table bgcolor="#c8c8c8" width="100%" cellspacing="0" cellpadding="0" border="0">
<tr>
<td width="52%" style="border-left:1px solid #a5a5a5; border-bottom:1px solid #a5a5a5; padding:2px 0px 2px 5px;" align='left'><?=$u->microLogin($u->info['id'],1)?></td>
<td style="<?=($result['additional'] == '' ? 'border-bottom:1px solid #a5a5a5;' : '')?>" align='center'><?=($result['additional'] !='' ? $result['additional'] : '')?></td>
<td style="border-right:1px solid #a5a5a5; border-bottom:1px solid #a5a5a5; padding: 2px 15px 2px 0px;" align='right'><h4 style="margin:0px;"><?= $u->room['name'];?></h4></td>
</tr>
<tr><td colspan="3" style="border:1px solid #a5a5a5; border-top:0px; padding:0px;" bgcolor="#e2e0e0"><?=$result['filter']?></td></tr>
</table>
</td>
</tr>
<tr><td style="border:1px solid #a5a5a5; border-top:0px; overflow:hidden; position:relative;" id="contentBox" bgcolor="#e2e0e0"><?=$result['content']?></td></tr>
</table>
</td>
<td width="280" align="right" valign="top">
<?
echo '<div style="padding-bottom:10px;">'.$goLis.'<table border="0" cellpadding="0" cellspacing="1">';
$roomGo = explode(',', $u->room['roomGo']);
$njk = array('1.180.0.253'=>true);
foreach($roomGo as $val) {
$temp = $u->roomInfo($val, true);
2023-01-10 18:29:32 +02:00
if( isset($temp['id']) && !isset($njk[$temp['code']]) ){ // Перемещение по комнатам.
2022-06-07 00:30:34 +03:00
echo '<tr><td bgcolor="#D3D3D3"><img src="https://img.new-combats.com/i/move/links.gif" width="9" height="7" /></td><td bgcolor="#D3D3D3" style="min-width:84px;" nowrap>'.'<a href="#" title="'.$temp['name'].'" id="greyText" class="menutop" onClick="';
echo "location='main.php?loc=".$temp['code']."&rnd=".$code.";'";
echo '">'.$temp['name'].'</a></td></tr>';
$njk[$temp['code']] = true;
}
}
echo '</table></div>';
2023-01-10 18:29:32 +02:00
if($u->info['room']=="253") { // Вход
echo '<p><B>Аренда</B><br/>';
2022-06-07 00:30:34 +03:00
if(isset($hostel) && $hostel_option[$hostel['type']]['t_name']){
2023-01-10 18:29:32 +02:00
echo "«".$hostel_option[$hostel['type']]['t_name']."» ".$hostel_option[$hostel['type']]['stage'].".<br/><br/>";
2022-06-07 00:30:34 +03:00
}
2023-01-10 18:29:32 +02:00
echo '</p><p>Деньги: '.$u->info['money'].' кр.</p>';
} else { // Перемещение по частям комнат
2022-06-07 00:30:34 +03:00
if($hostel_option[$hostel['type']]['type'] != false) {
echo '<div class="menuList" >';
foreach ($hostel_option[$hostel['type']]['partition'] as $key=>$val){
if($hostel['partition']!=$key){
echo"<a class='menuItem' href='?room=".$key."&0.".$code."'><strong>".$val."</strong></a>";
}else{
echo"<B class='menuActive'>".$val."</B>";
}
}
echo '</div>';
}
}
?>
</td>
</tr>
</table>