Размер файла: 5.02Kb
<?php
#-----------------------------------------------------#
# ********* WAP-MOTORS ********* #
# Made by : VANTUZ #
# E-mail : [email protected] #
# Site : http://pizdec.ru #
# WAP-Site : http://visavi.net #
# ICQ : 36-44-66 #
# Вы не имеете право вносить изменения в код скрипта #
# для его дальнейшего распространения #
#-----------------------------------------------------#
#================================================#
# == Мод чат для Wap-motor 19.x == #
# Made by: Shur1k #
# Site: WAP.ROVNO.UA #
# ICQ: 444307535 #
#================================================#
require_once "../../includes/start.php";
require_once "../../includes/functions.php";
require_once "../../includes/header.php";
include_once "../../themes/".$config['themes']."/index.php";
if (isset($_GET['start'])){$start = (int)$_GET['start'];} else {$start = 0;}
if (isset($_GET['imja'])){$imja = '[b]'.safe_decode(check($_GET['imja'])).'[/b], ';} else {$imja = "";}
show_title('partners.gif', 'Резиденция Comedy Club');
echo '<a href="#down"><img src="/images/img/downs.gif" alt="image" /></a> ';
echo '<a href="#form">Написать</a> / ';
echo '<a href="index.php?rand='.mt_rand(100,999).'&'.SID.'">Обновить</a>';
if (is_admin(array(101,102,103,105))){echo ' / <a href="'.ADMINDIR.'3chat.php?start='.$start.'&'.SID.'">Управление</a>';}
echo '<hr />';
//--------------------------генерация Павел Воля------------------------------------------------//
if($config['volya']==1){
$anfi = file(BASEDIR."includes/chat_comedy_volya.php");
$an_rand = array_rand($anfi);
$anshow = trim($anfi[$an_rand]);
$tifi = file(DATADIR."3chat.dat");
$tidw = explode("|",end($tifi));
if(SITETIME > ($tidw[3] + 30) && empty($tidw[6])) {
$antext = no_br($anshow.'|Павел Воля||'.SITETIME.'|Opera|127.0.0.2|1|'.$tidw[7].'|'.$tidw[8].'|');
statistics(8);
statistics(11);
write_files(DATADIR."3chat.dat", "$antext\r\n");
}}
//--------------------------генерация Галыгин------------------------------------------------//
if($config['galigin']==1){
$anfi = file(BASEDIR."includes/chat_comedy_galigin.php");
$an_rand = array_rand($anfi);
$anshow = trim($anfi[$an_rand]);
$tifi = file(DATADIR."3chat.dat");
$tidw = explode("|",end($tifi));
if(SITETIME > ($tidw[3] + 25) && empty($tidw[6])) {
$antext = no_br($anshow.'|Галыгин||'.SITETIME.'|Opera|127.0.0.2|1|'.$tidw[7].'|'.$tidw[8].'|');
statistics(8);
statistics(11);
write_files(DATADIR."3chat.dat", "$antext\r\n");
}}
//---------------------------------------------------------------//
$file = file(DATADIR."3chat.dat");
$file = array_reverse($file);
$total = count($file);
if ($total>0){
if ($start < 0 || $start >= $total){$start = 0;}
if ($total < $start + $config['chatpost']){ $end = $total; }
else {$end = $start + $config['chatpost']; }
for ($i = $start; $i < $end; $i++){
$data = explode("|",$file[$i]);
$useronline = user_online($data[1]);
$useravatars = user_avatars($data[1]);
if ($data[1]=='Галыгин'){$useravatars='<img src="/images/img/galigin.jpg" alt="image" /> '; $useronline='<span style="color:#00ff00">[On]</span>';}
if ($data[1]=='Павел Воля'){$useravatars='<img src="/images/img/volya.jpg" alt="image" /> '; $useronline='<span style="color:#00ff00">[On]</span>';}
echo '<div class="b">';
echo $useravatars;
echo '<b><a href="index.php?imja='.safe_encode(nickname($data[1])).'&'.SID.'#form">'.nickname($data[1]).'</a></b> '.user_title($data[1]).$useronline.' <small>('.date_fixed($data[3]).')</small></div>';
echo '<div>'.bb_code($data[0]).'<br />';
echo '<span class="data">('.$data[4].', '.$data[5].')</span></div>';
}
page_jumpnavigation('index.php?', $config['chatpost'], $start, $total);
page_strnavigation('index.php?', $config['chatpost'], $start, $total);
} else {show_error('Сообщений нет, будь первым!');}
if (is_user()){
echo '<br /><div class="form" id="form">';
echo '<form action="add.php?'.SID.'" method="post">';
echo '<b>Сообщение:</b><br />';
echo '<textarea cols="20" rows="3" name="msg">'.$imja.'</textarea><br />';
echo '<input type="submit" value="Добавить" /></form></div>';
} else {show_login('Вы не авторизованы, чтобы добавить сообщение, необходимо');}
echo '<img src="/images/img/chat.gif" alt="image" /> <a href="/chat/index.php?'.SID.'">К комнатам</a><br>';
echo '<img src="/images/img/homepage.gif" alt="image" /> <a href="../../index.php?'.SID.'">На главную</a>';
include_once ("../../themes/".$config['themes']."/foot.php");
?>