<?php
define('WCS',true);
include('./core/main.inc');
header_type();
cleardata();
if(ipbanned(ip(),browser())){
if(!shield(getuid_sid($sid))){
echo head_tag("Ip Blocked!!!",0,0);
echo ipbanned_msg();
echo foot_tag();
exit();
}
}
if(!islogged($sid)){
echo head_tag("Error!!!",0,0);
echo session_expired();
echo foot_tag();
exit();
}
if(banned(getuid_sid($sid))){
echo head_tag("Error!!!",1,getnick_sid($sid));
echo banned_msg($sid);
echo foot_tag();
exit();
}
mysql_query("UPDATE users SET browser='".browser()."', ipaddress='".ip()."', host='".subno()."' WHERE id='".getuid_sid($sid)."'");
//////////////////
//smiley search
//////////////////
if($action=="smil")
{
addonline(getuid_sid($sid),"Site Rules","");
$nick=getnick_sid($sid);
echo head_tag($nick."@Site Rules",1,getnick_sid($sid));
$title="<b>Site Rules</b>";
$main.="<p align=\"center\">";
$main.="<img src=\"../images/point.gif\" alt=\"!\"/>This Site Is made for OVER 18's ONLY, and users found to be lying about their age in order to access the site will be deleted without warning!<br/>";
$main.= "<img src=\"../images/point.gif\" alt=\"!\"/>Posts containing racism, spamming, flooding Or hacking Information will be deleted immediately, and the posters will be warned or banned<br/>";
$main.= "<img src=\"../images/point.gif\" alt=\"!\"/>Registering more than one nickname, could result in all your accounts being deleted<br/>";
$main.= "<img src=\"../images/point.gif\" alt=\"!\"/>Never give your username and password to anyone<br/>";
$main.="<img src=\"../images/point.gif\" alt=\"!\"/>Faking your personal information (like age, sex, location etc..) just to gain access to hidden forums and other content in here, could result in you being banned, or getting a warning at least<br/>";
$main.= "<img src=\"../images/point.gif\" alt=\"!\"/>Harassment and racism will result in a ban, and an permanent IP-Ban if this behavior continues<br/>";
$main.= "<img src=\"../images/point.gif\" alt=\"!\"/>Bumping topics (keep posting in them by the author of the topic just to keep it in first page) will cause these topics to be deleted and the penalty could vary between warning, or even a ban<br/>";
$main.= "<img src=\"../images/point.gif\" alt=\"!\"/>You MUST speak in english on the Public parts of this site (shoutbox, and all chat rooms except user created and international rooms), but you are free to create your own chatroom and club in any language<br/>";
$main.= "<img src=\"../images/point.gif\" alt=\"!\"/>No smoking in public, next to the pregnant ladies, or next to babies hehe<br/>";
$main.= "<img src=\"../images/point.gif\" alt=\"!\"/>ALL Bans are logged as are ALL pms with any form of website links in them, any pms sent containing weblinks will be moderated and may result in a ban for the sending user for an appropriate length of time.<br/>";
$main.= "<img src=\"../images/point.gif\" alt=\"!\"/>The most important rule is to have fun here and enjoy your stay ;)<br/>";
$main.= "<br/>Remember, these rules were made for protecting you before protecting us, if you think they are a little restrictive then ask any online staff member(only if you logged in), Thank you<br/>";
$main.= "</p>";
$main.="<p align=\"center\">";
$L1="$sixkey<a $key6 href=\"./inbox/inbox.php?sid=$sid\">Inbox</a>";
$L2="$sevenkey<a $key7 href=\"./buds/buds.php?sid=$sid\">BuddyList</a>";
$L3="$eightkey<a $key8 href=\"./chat/public.php?sid=$sid\">Chat</a>";
$L4="$ninekey<a $key9 href=\"./forums/forums.php?sid=$sid\">Forums</a>";
$L5="$zerokey<a $key0 href=\"./main.php?sid=$sid\"><img src=\"./images/home.gif\" alt=\"\"/>Main Menu</a>";
echo xhtml($sid,$title,1,$L1,$L2,$L3,$L4,$L5,0,0,0,$main);
echo foot_tag();
exit;
}
?>