Zefvs
Местный житель
- Регистрация
- 11 Авг 2009
- Сообщения
- 230
- Реакции
- 20
У меня не появляеться, потому что когда хстатус ставил, пришлось закоментировать бота...
тут поподробеее...у мну чат уже с уставновленым статусом. что ты закомментировал?
Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
У меня не появляеться, потому что когда хстатус ставил, пришлось закоментировать бота...
А причем здесь Хстатус?у меня он тоже стоит и что? все становится,и бот всписке есть.У меня не появляеться, потому что когда хстатус ставил, пришлось закоментировать бота...
Он отвечает с задержкой от 5 до 25 секунд.только он отвечает через несколько сообщений или секунд, это я пока еще не понял
jjBot_TimeDiff_Start: 5
jjBot_TimeDiff_End: 25
Ну во первых, ты какой код вставил в who.php?Бот в списке не отображается, ответов не дает...в админ панеле вкл. Помогите кто разобрался!!!
ничего не вставлял, просто скопировал папку с плагином в плагины...Ну во первых, ты какой код вставил в who.php?
<?php
require_once("inc_common.php");
include("events.php");
set_variable("photoss");
set_variable("add_to_ignor");
set_variable("remove_from_ignor");
set_variable("update_status");
set_variable("add_to_ignor_enc");
set_variable("remove_from_ignor_enc");
set_variable("update_invis");
//if($enable_gzip) ob_start("ob_gzhandler");
include($engine_path."users_get_list.php");
if (!$exists) {
$error_text = "$w_no_user";
include($file_path."designes/".$design."/error_page.php");
exit;
}
if ($photoss=="") {$photoss = "no";}
if ($add_to_ignor_enc != "") $add_to_ignor = urldecode($add_to_ignor_enc);
if ($add_to_ignor != "") {
include($engine_path."ignor_add.php");
Header("Location: who.php?session=$session&photoss=$photoss&".time());
exit;
}
if ($remove_from_ignor_enc != "") $remove_from_ignor = urldecode($remove_from_ignor_enc);
if ($remove_from_ignor != "") {
include($engine_path."ignor_remove.php");
Header("Location: who.php?session=$session&photoss=$photoss&".time());
exit;
}
if (isset($update_status))
if($update_status!="") {
$update_status = intval($update_status);
$fields_to_update[0][0] = USER_STATUS;
$fields_to_update[0][1] = intval($update_status);
include($engine_path."user_din_data_update.php");
header("location: who.php?session=$session&photoss=$photoss&".time());
exit;
}
//whoami?
$IsModer = 0;
$IsAdmin = 0;
$show_for_moders = 1;
$my_id = 0;
if ($is_regist) {
$my_id = $is_regist;
include("inc_user_class.php");
include($ld_engine_path."users_get_object.php");
if ($current_user->user_class > 0) $IsModer = 1;
else $IsModer = 0;
if($current_user->user_class & ADM_BAN_MODERATORS) $IsAdmin = 1;
else $IsAdmin = 0;
if($IsAdmin and intval($current_user->show_for_moders) == 0) $show_for_moders = 0;
?>
<script language="JavaScript" type="text/javascript">
parent.voc_powers = <?php echo $IsModer; ?>;
</script>
<?php
}
if (isset($update_invis))
if($update_invis!="" and $IsModer) {
$update_invis = intval($update_invis);
// we need the robot's name
include($ld_engine_path."rooms_get_list.php");
$w_rob_name = $rooms[$room_id]["bot"];
if($update_invis == 0) {
//Deprecated in BE
/*
if($current_user->clan_id > 0) {
$is_regist_clan = $current_user->clan_id;
$current_clan = new Clan();
include($ld_engine_path."clan_get_object.php");
if(strlen(trim($current_clan->greeting)) > 0) {
$sw_rob_login = "<b>".$current_clan->greeting."</b>";
}
else {
$sw_rob_login = $sw_roz_clan_common_entr;
}
$sw_rob_login = str_replace("#", ucfirst($current_user->clan_status)." <a style='text-decoration: underline' style='{cursor: pointer}' onClick=\"javascript:parent.Whisper('~');\">~</a>", $sw_rob_login);
$sw_rob_login = str_replace("@", $current_clan->name, $sw_rob_login);
}
*/
if($current_user->login_phrase != "") {
$sw_rob_login = "<font color=\"bf0d0d\"><b>".$current_user->login_phrase."</b></font>";
$sw_rob_login = eregi_replace("#", "<a style='text-decoration: underline' style='{cursor: pointer}' onClick=\"javascript:parent.Whisper('~');\">~</a>", $sw_rob_login);
}
/*
if($current_user->clan_id == 0 and $current_user->chat_status == "") {
$tmp_status = "";
for($j = 0; $j < count($sw_roz_user_status); $j++) {
if(intval($current_user->points) > $sw_roz_user_status[$j]["points"]) {
$tmp_status = $sw_roz_user_status[$j]["status"];
break;
}
}
$sw_rob_login = str_replace("||", ucfirst($tmp_status), $sw_rob_login);
}
*/
if($current_user->chat_status != "") {
$sw_rob_login = str_replace("||", "<font color=\"bf0d0d\">".ucfirst($current_user->chat_status)."</font>", $sw_rob_login);
}
else $sw_rob_login = str_replace("||", "", $sw_rob_login);
if($user_invisible) {
$messages_to_show[] = array(MESG_TIME=>my_time(),
MESG_ROOM=>$room_id,
MESG_FROM=>$w_rob_name,
MESG_FROMWOTAGS=>$w_rob_name,
MESG_FROMSESSION=>"",
MESG_FROMID=>0,
MESG_TO=>"",
MESG_TOSESSION=>"",
MESG_TOID=>"",
MESG_BODY=>"<font color=\"$def_color\">".str_replace("~", $user_name, $sw_rob_login)."</font>");
}
}
else {
if(!$user_invisible) {
if($current_user->logout_phrase != "") {
$sw_rob_logout = "<font color=\"bf0d0d\"><b>".$current_user->logout_phrase."</b></font>";
$sw_rob_logout = eregi_replace("#", "<a style='text-decoration: underline' style='{cursor: pointer}' onClick=\"javascript:parent.Whisper('~');\">~</a>", $sw_rob_logout);
}
if($current_user->chat_status != "") {
$sw_rob_logout = str_replace("||", "<font color=#bf0d0d>".ucfirst($current_user->chat_status)."</font>", $sw_rob_logout);
}
else $sw_rob_logout = str_replace("||", "", $sw_rob_logout);
$messages_to_show[] = array(MESG_TIME=>my_time(),
MESG_ROOM=>$room_id,
MESG_FROM=>$w_rob_name,
MESG_FROMWOTAGS=>$w_rob_name,
MESG_FROMSESSION=>"",
MESG_FROMID=>0,
MESG_TO=>"",
MESG_TOSESSION=>"",
MESG_TOID=>"",
MESG_BODY=>"<font color=\"$def_color\">".str_replace("~", $user_name, $sw_rob_logout)."</font>");
}
}
$flood_protection = 0;
include($engine_path."messages_put.php");
$fields_to_update[0][0] = USER_INVISIBLE;
$fields_to_update[0][1] = intval($update_invis);
include($engine_path."user_din_data_update.php");
header("location: ".$chat_url."who.php?session=$session&photoss=$photoss&".time());
exit;
}
if(isset($out_users)) unset($out_users);
$out_users = array();
include($ld_engine_path."rooms_get_list.php");
for ($i=0; $i<count($room_ids);$i++)
$rooms[$room_ids[$i]]["users"]=0;
$who_j = 0;
include_once("inc_user_class.php");
/*
if(is_file($ld_engine_path."userlist_cache.php")) {
//start caching;
include($ld_engine_path."userlist_cache.php");
$total_users = count($out_users);
include($file_path."designes/".$design."/who.php");
//end caching
exit;
}*/
for ($i=0;$i<count($users);$i++) {
$user_array = explode("\t",$users[$i]);
//fixing possible duplicates in user list
$IsCloneFound = false;
for($j=0; $j < count($out_users); $j++) {
if(strcasecmp($out_users[$j]["nickname"], trim($user_array[USER_NICKNAME])) == 0) { $IsCloneFound = true; break;}
}
if($IsCloneFound) continue;
$user_array[USER_INVISIBLE] = intval(trim($user_array[USER_INVISIBLE]));
if($user_array[USER_INVISIBLE] == 1 and !$IsModer) continue;
$rooms[$user_array[USER_ROOM]]["users"]++;
if ($user_array[USER_ROOM] == $room_id) {
$out_users[$who_j]["nickname"] = trim($user_array[USER_NICKNAME]);
$out_users[$who_j]["enc"] = urlencode(trim($user_array[USER_NICKNAME]));
$out_users[$who_j]["htmlnick"] = (strlen($user_array[USER_HTMLNICK])==0)?$user_array[USER_NICKNAME]:$user_array[USER_HTMLNICK];
$out_users[$who_j]["sex"] = intval($user_array[USER_GENDER]);
if($out_users[$who_j]["sex"] != 1 and $out_users[$who_j]["sex"] != 2) $out_users[$who_j]["sex"] = 3;
$out_users[$who_j]["small_photo"] = $user_array[USER_AVATAR];
$out_users[$who_j]["user_id"] = $user_array[USER_REGID];
$out_users[$who_j]["status"] = $user_array[USER_STATUS];
$is_regist = $user_array[USER_REGID];
if(file_exists($data_path."users/".floor($is_regist/2000)."/".$is_regist.".user")){
include($ld_engine_path."users_get_object.php");
}
else continue;
if($user_array[USER_INVISIBLE] == 1 and $IsModer) {
if(!$current_user->show_for_moders and ($user_array[USER_CLASS] & ADM_BAN_MODERATORS)) {
if(!$IsAdmin) continue;
}
}
if ($current_user->user_class & ADM_BAN_MODERATORS) { $out_users[$who_j]["powers"] = "m"; }
else $out_users[$who_j]["powers"] = "u";
if($out_users[$who_j]["powers"] == "m" and $current_user->show_admin == 0) {
$out_users[$who_j]["htmlnick"] = $user_array[USER_NICKNAME];
$out_users[$who_j]["powers"] = "u";
}
if(intval($user_array[USER_CLANID]) == intval($cu_array[USER_CLANID]) and $user_array[USER_CLANID] > 0) {
if($out_users[$who_j]["powers"] == "m"){
if($current_user->show_admin == 0) $out_users[$who_j]["powers"] = "c";
}
else $out_users[$who_j]["powers"] = "c";
}
if($current_user->clan_id > 0) {
if(is_file($file_path."clans-avatar/".floor($current_user->clan_id/2000)."/".$current_user->clan_id.".gif")) {
$out_users[$who_j]["clan_avatar"] = $images_url."clans-avatar/".floor($current_user->clan_id/2000)."/".$current_user->clan_id.".gif";
}
}
if ($current_user->married_with == "") { $out_users[$who_j]["marr"] = ""; }
else { $out_users[$who_j]["marr"] = 0; }
$pic_name = "" . floor($user_array[USER_REGID]/2000) . "/" . $user_array[USER_REGID] . ".big.gif";
if (!file_exists($file_path."photos/$pic_name")) $pic_name="";
if ($pic_name == ""){
$pic_name = "" . floor($user_array[USER_REGID]/2000) . "/" . $user_array[USER_REGID] . ".big.jpg";
if (!file_exists($file_path."photos/$pic_name")) $pic_name="";
if($pic_name == ""){
$pic_name = "" . floor($user_array[USER_REGID]/2000) . "/" . $user_array[USER_REGID] . ".big.jpeg";
if (!file_exists($file_path."photos/$pic_name")) $pic_name="";
}
}
$url_photo=$pic_name;
if($pic_name != "") $out_users[$who_j]["photo"] = 1;
else $out_users[$who_j]["photo"] = 0;
if(($current_user->custom_class & CST_PRIEST) and strlen(trim($current_user->htmlnick)) == 0) {
$out_users[$who_j]["htmlnick"] = "<FONT color=Black><b>".$user_array[USER_NICKNAME]."</b></FONT>";
}
if(($current_user->user_class > 0) and strlen(trim($current_user->htmlnick)) == 0) {
$out_users[$who_j]["htmlnick"] = "<FONT color=Black><i>".$user_array[USER_NICKNAME]."</i></FONT>";
}
$current_user->statmess=preg_replace("/(<|>|')/si","",$current_user->statmess);
$current_user->statmess2=preg_replace("/(<|>|')/si","",$current_user->statmess2);
$current_user->firstname=preg_replace("/(<|>|')/si","",$current_user->firstname);
$current_user->surname=preg_replace("/(<|>|')/si","",$current_user->surname);
$current_user->city=preg_replace("/(<|>|')/si","",$current_user->city);
$current_user->icquin=preg_replace("/(<|>|')/si","",$current_user->icquin);
$current_user->email=preg_replace("/(<|>|')/si","",$current_user->email);
$out_users[$who_j]["damneds"] = intval(trim($current_user->damneds));
$out_users[$who_j]["rewards"] = intval(trim($current_user->rewards));
$out_users[$who_j]["status_pic"] = intval($current_user->status_pic);
$out_users[$who_j]["statmess"] = $current_user->statmess;
$out_users[$who_j]["statmess2"] = $current_user->statmess2;
$out_users[$who_j]["firstname"] = $current_user->firstname;
$out_users[$who_j]["surname"] = $current_user->surname;
$out_users[$who_j]["city"] = $current_user->city;
$out_users[$who_j]["icq"] = $current_user->icquin;
$out_users[$who_j]["email"] = $current_user->email;
$out_users[$who_j]["b_month"] = $current_user->b_month;
$out_users[$who_j]["b_year"] = $current_user->b_year;
$out_users[$who_j]["b_day"] = $current_user->b_day;
$out_users[$who_j]["url_photo"] = $url_photo;
$out_users[$who_j]["is_member"] = intval($current_user->is_member);
$out_users[$who_j]["is_dealer"] = intval($current_user->is_dealer);
$out_users[$who_j]["webcam"] = intval($current_user->allow_webcam);
$out_users[$who_j]["inv"] = $user_array[USER_INVISIBLE];
if($user_array[USER_SESSION] == $session) {
?>
<script language="JavaScript" type="text/javascript">
parent.voc_invis = <?php echo $out_users[$who_j]["inv"]; ?>;
</script>
<?php
}
$who_j++;
}
}
riseEvent(EVENT_RENDER_USERLIST, $user_name, $room_id);
$total_users = count($out_users);
include($file_path."designes/".$design."/who.php");
?>
да ненужен там этот бот я вот только что своего удалил из файла who.php и всеравно бот появлятся в спискеничего не вставлял, просто скопировал папку с плагином в плагины...
who.php
PHP:<?php require_once("inc_common.php"); include("events.php"); set_variable("photoss"); set_variable("add_to_ignor"); set_variable("remove_from_ignor"); set_variable("update_status"); set_variable("add_to_ignor_enc"); set_variable("remove_from_ignor_enc"); set_variable("update_invis"); //if($enable_gzip) ob_start("ob_gzhandler"); include($engine_path."users_get_list.php"); if (!$exists) { $error_text = "$w_no_user"; include($file_path."designes/".$design."/error_page.php"); exit; } if ($photoss=="") {$photoss = "no";} if ($add_to_ignor_enc != "") $add_to_ignor = urldecode($add_to_ignor_enc); if ($add_to_ignor != "") { include($engine_path."ignor_add.php"); Header("Location: who.php?session=$session&photoss=$photoss&".time()); exit; } if ($remove_from_ignor_enc != "") $remove_from_ignor = urldecode($remove_from_ignor_enc); if ($remove_from_ignor != "") { include($engine_path."ignor_remove.php"); Header("Location: who.php?session=$session&photoss=$photoss&".time()); exit; } if (isset($update_status)) if($update_status!="") { $update_status = intval($update_status); $fields_to_update[0][0] = USER_STATUS; $fields_to_update[0][1] = intval($update_status); include($engine_path."user_din_data_update.php"); header("location: who.php?session=$session&photoss=$photoss&".time()); exit; } //whoami? $IsModer = 0; $IsAdmin = 0; $show_for_moders = 1; $my_id = 0; if ($is_regist) { $my_id = $is_regist; include("inc_user_class.php"); include($ld_engine_path."users_get_object.php"); if ($current_user->user_class > 0) $IsModer = 1; else $IsModer = 0; if($current_user->user_class & ADM_BAN_MODERATORS) $IsAdmin = 1; else $IsAdmin = 0; if($IsAdmin and intval($current_user->show_for_moders) == 0) $show_for_moders = 0; ?> <script language="JavaScript" type="text/javascript"> parent.voc_powers = <?php echo $IsModer; ?>; </script> <?php } if (isset($update_invis)) if($update_invis!="" and $IsModer) { $update_invis = intval($update_invis); // we need the robot's name include($ld_engine_path."rooms_get_list.php"); $w_rob_name = $rooms[$room_id]["bot"]; if($update_invis == 0) { //Deprecated in BE /* if($current_user->clan_id > 0) { $is_regist_clan = $current_user->clan_id; $current_clan = new Clan(); include($ld_engine_path."clan_get_object.php"); if(strlen(trim($current_clan->greeting)) > 0) { $sw_rob_login = "<b>".$current_clan->greeting."</b>"; } else { $sw_rob_login = $sw_roz_clan_common_entr; } $sw_rob_login = str_replace("#", ucfirst($current_user->clan_status)." <a style='text-decoration: underline' style='{cursor: pointer}' onClick=\"javascript:parent.Whisper('~');\">~</a>", $sw_rob_login); $sw_rob_login = str_replace("@", $current_clan->name, $sw_rob_login); } */ if($current_user->login_phrase != "") { $sw_rob_login = "<font color=\"bf0d0d\"><b>".$current_user->login_phrase."</b></font>"; $sw_rob_login = eregi_replace("#", "<a style='text-decoration: underline' style='{cursor: pointer}' onClick=\"javascript:parent.Whisper('~');\">~</a>", $sw_rob_login); } /* if($current_user->clan_id == 0 and $current_user->chat_status == "") { $tmp_status = ""; for($j = 0; $j < count($sw_roz_user_status); $j++) { if(intval($current_user->points) > $sw_roz_user_status[$j]["points"]) { $tmp_status = $sw_roz_user_status[$j]["status"]; break; } } $sw_rob_login = str_replace("||", ucfirst($tmp_status), $sw_rob_login); } */ if($current_user->chat_status != "") { $sw_rob_login = str_replace("||", "<font color=\"bf0d0d\">".ucfirst($current_user->chat_status)."</font>", $sw_rob_login); } else $sw_rob_login = str_replace("||", "", $sw_rob_login); if($user_invisible) { $messages_to_show[] = array(MESG_TIME=>my_time(), MESG_ROOM=>$room_id, MESG_FROM=>$w_rob_name, MESG_FROMWOTAGS=>$w_rob_name, MESG_FROMSESSION=>"", MESG_FROMID=>0, MESG_TO=>"", MESG_TOSESSION=>"", MESG_TOID=>"", MESG_BODY=>"<font color=\"$def_color\">".str_replace("~", $user_name, $sw_rob_login)."</font>"); } } else { if(!$user_invisible) { if($current_user->logout_phrase != "") { $sw_rob_logout = "<font color=\"bf0d0d\"><b>".$current_user->logout_phrase."</b></font>"; $sw_rob_logout = eregi_replace("#", "<a style='text-decoration: underline' style='{cursor: pointer}' onClick=\"javascript:parent.Whisper('~');\">~</a>", $sw_rob_logout); } if($current_user->chat_status != "") { $sw_rob_logout = str_replace("||", "<font color=#bf0d0d>".ucfirst($current_user->chat_status)."</font>", $sw_rob_logout); } else $sw_rob_logout = str_replace("||", "", $sw_rob_logout); $messages_to_show[] = array(MESG_TIME=>my_time(), MESG_ROOM=>$room_id, MESG_FROM=>$w_rob_name, MESG_FROMWOTAGS=>$w_rob_name, MESG_FROMSESSION=>"", MESG_FROMID=>0, MESG_TO=>"", MESG_TOSESSION=>"", MESG_TOID=>"", MESG_BODY=>"<font color=\"$def_color\">".str_replace("~", $user_name, $sw_rob_logout)."</font>"); } } $flood_protection = 0; include($engine_path."messages_put.php"); $fields_to_update[0][0] = USER_INVISIBLE; $fields_to_update[0][1] = intval($update_invis); include($engine_path."user_din_data_update.php"); header("location: ".$chat_url."who.php?session=$session&photoss=$photoss&".time()); exit; } if(isset($out_users)) unset($out_users); $out_users = array(); include($ld_engine_path."rooms_get_list.php"); for ($i=0; $i<count($room_ids);$i++) $rooms[$room_ids[$i]]["users"]=0; $who_j = 0; include_once("inc_user_class.php"); /* if(is_file($ld_engine_path."userlist_cache.php")) { //start caching; include($ld_engine_path."userlist_cache.php"); $total_users = count($out_users); include($file_path."designes/".$design."/who.php"); //end caching exit; }*/ for ($i=0;$i<count($users);$i++) { $user_array = explode("\t",$users[$i]); //fixing possible duplicates in user list $IsCloneFound = false; for($j=0; $j < count($out_users); $j++) { if(strcasecmp($out_users[$j]["nickname"], trim($user_array[USER_NICKNAME])) == 0) { $IsCloneFound = true; break;} } if($IsCloneFound) continue; $user_array[USER_INVISIBLE] = intval(trim($user_array[USER_INVISIBLE])); if($user_array[USER_INVISIBLE] == 1 and !$IsModer) continue; $rooms[$user_array[USER_ROOM]]["users"]++; if ($user_array[USER_ROOM] == $room_id) { $out_users[$who_j]["nickname"] = trim($user_array[USER_NICKNAME]); $out_users[$who_j]["enc"] = urlencode(trim($user_array[USER_NICKNAME])); $out_users[$who_j]["htmlnick"] = (strlen($user_array[USER_HTMLNICK])==0)?$user_array[USER_NICKNAME]:$user_array[USER_HTMLNICK]; $out_users[$who_j]["sex"] = intval($user_array[USER_GENDER]); if($out_users[$who_j]["sex"] != 1 and $out_users[$who_j]["sex"] != 2) $out_users[$who_j]["sex"] = 3; $out_users[$who_j]["small_photo"] = $user_array[USER_AVATAR]; $out_users[$who_j]["user_id"] = $user_array[USER_REGID]; $out_users[$who_j]["status"] = $user_array[USER_STATUS]; $is_regist = $user_array[USER_REGID]; if(file_exists($data_path."users/".floor($is_regist/2000)."/".$is_regist.".user")){ include($ld_engine_path."users_get_object.php"); } else continue; if($user_array[USER_INVISIBLE] == 1 and $IsModer) { if(!$current_user->show_for_moders and ($user_array[USER_CLASS] & ADM_BAN_MODERATORS)) { if(!$IsAdmin) continue; } } if ($current_user->user_class & ADM_BAN_MODERATORS) { $out_users[$who_j]["powers"] = "m"; } else $out_users[$who_j]["powers"] = "u"; if($out_users[$who_j]["powers"] == "m" and $current_user->show_admin == 0) { $out_users[$who_j]["htmlnick"] = $user_array[USER_NICKNAME]; $out_users[$who_j]["powers"] = "u"; } if(intval($user_array[USER_CLANID]) == intval($cu_array[USER_CLANID]) and $user_array[USER_CLANID] > 0) { if($out_users[$who_j]["powers"] == "m"){ if($current_user->show_admin == 0) $out_users[$who_j]["powers"] = "c"; } else $out_users[$who_j]["powers"] = "c"; } if($current_user->clan_id > 0) { if(is_file($file_path."clans-avatar/".floor($current_user->clan_id/2000)."/".$current_user->clan_id.".gif")) { $out_users[$who_j]["clan_avatar"] = $images_url."clans-avatar/".floor($current_user->clan_id/2000)."/".$current_user->clan_id.".gif"; } } if ($current_user->married_with == "") { $out_users[$who_j]["marr"] = ""; } else { $out_users[$who_j]["marr"] = 0; } $pic_name = "" . floor($user_array[USER_REGID]/2000) . "/" . $user_array[USER_REGID] . ".big.gif"; if (!file_exists($file_path."photos/$pic_name")) $pic_name=""; if ($pic_name == ""){ $pic_name = "" . floor($user_array[USER_REGID]/2000) . "/" . $user_array[USER_REGID] . ".big.jpg"; if (!file_exists($file_path."photos/$pic_name")) $pic_name=""; if($pic_name == ""){ $pic_name = "" . floor($user_array[USER_REGID]/2000) . "/" . $user_array[USER_REGID] . ".big.jpeg"; if (!file_exists($file_path."photos/$pic_name")) $pic_name=""; } } $url_photo=$pic_name; if($pic_name != "") $out_users[$who_j]["photo"] = 1; else $out_users[$who_j]["photo"] = 0; if(($current_user->custom_class & CST_PRIEST) and strlen(trim($current_user->htmlnick)) == 0) { $out_users[$who_j]["htmlnick"] = "<FONT color=Black><b>".$user_array[USER_NICKNAME]."</b></FONT>"; } if(($current_user->user_class > 0) and strlen(trim($current_user->htmlnick)) == 0) { $out_users[$who_j]["htmlnick"] = "<FONT color=Black><i>".$user_array[USER_NICKNAME]."</i></FONT>"; } $current_user->statmess=preg_replace("/(<|>|')/si","",$current_user->statmess); $current_user->statmess2=preg_replace("/(<|>|')/si","",$current_user->statmess2); $current_user->firstname=preg_replace("/(<|>|')/si","",$current_user->firstname); $current_user->surname=preg_replace("/(<|>|')/si","",$current_user->surname); $current_user->city=preg_replace("/(<|>|')/si","",$current_user->city); $current_user->icquin=preg_replace("/(<|>|')/si","",$current_user->icquin); $current_user->email=preg_replace("/(<|>|')/si","",$current_user->email); $out_users[$who_j]["damneds"] = intval(trim($current_user->damneds)); $out_users[$who_j]["rewards"] = intval(trim($current_user->rewards)); $out_users[$who_j]["status_pic"] = intval($current_user->status_pic); $out_users[$who_j]["statmess"] = $current_user->statmess; $out_users[$who_j]["statmess2"] = $current_user->statmess2; $out_users[$who_j]["firstname"] = $current_user->firstname; $out_users[$who_j]["surname"] = $current_user->surname; $out_users[$who_j]["city"] = $current_user->city; $out_users[$who_j]["icq"] = $current_user->icquin; $out_users[$who_j]["email"] = $current_user->email; $out_users[$who_j]["b_month"] = $current_user->b_month; $out_users[$who_j]["b_year"] = $current_user->b_year; $out_users[$who_j]["b_day"] = $current_user->b_day; $out_users[$who_j]["url_photo"] = $url_photo; $out_users[$who_j]["is_member"] = intval($current_user->is_member); $out_users[$who_j]["is_dealer"] = intval($current_user->is_dealer); $out_users[$who_j]["webcam"] = intval($current_user->allow_webcam); $out_users[$who_j]["inv"] = $user_array[USER_INVISIBLE]; if($user_array[USER_SESSION] == $session) { ?> <script language="JavaScript" type="text/javascript"> parent.voc_invis = <?php echo $out_users[$who_j]["inv"]; ?>; </script> <?php } $who_j++; } } riseEvent(EVENT_RENDER_USERLIST, $user_name, $room_id); $total_users = count($out_users); include($file_path."designes/".$design."/who.php"); ?>
include($ld_engine_path."userlist_cache.php");
$total_users = count($out_users);
include($file_path."designes/".$design."/who.php");
$total_users = count($out_users);
$w_rob_name = $rooms[$room_id]["bot"];
$out_users[$who_j]["nickname"] = $w_rob_name;
$out_users[$who_j]["sex"] = "2";
$out_users[$who_j]["small_photo"] = "";
$out_users[$who_j]["user_id"] = -1;
$out_users[$who_j]["status"] = 0;
а у меня вот не появлялся, пока я не добавил его в who.phpда ненужен там этот бот я вот только что своего удалил из файла who.php и всеравно бот появлятся в списке