ShakurRetro
Member
- Oct 25, 2012
- 49
- 1
How can I change this bar
You must be registered for see links
to did you know like fresh Hotel
You must be registered for see links
what's the file called and what to change ?<li id="myfriends"><a href="#"><span>My Friends</span></a><span class="r"></span></li>
<li id="mygroups"><a href="#"><span>My Groups</span></a><span class="r"></span></li>
<li id="myrooms"><a href="#"><span>My Rooms</span></a><span class="r"></span></li>
<div id="subnavi-user">
<div style="margin-top:7px">
<?php
$input = array("text heret 1", "text here 2", "text here 3.", "text here! 4", "text here 5");
$rand_keys = array_rand($input);
echo "<b>Fact:</b> " . $input[$rand_keys] . "";
?>
if you ever decide to switch back look for generic-top.tpl in includes/tpl/(here) then
were it says
Code:<li id="myfriends"><a href="#"><span>My Friends</span></a><span class="r"></span></li> <li id="mygroups"><a href="#"><span>My Groups</span></a><span class="r"></span></li> <li id="myrooms"><a href="#"><span>My Rooms</span></a><span class="r"></span></li>
Change it to this
Code:<div id="subnavi-user"> <div style="margin-top:7px"> <?php $input = array("text heret 1", "text here 2", "text here 3.", "text here! 4", "text here 5"); $rand_keys = array_rand($input); echo "<b>Fact:</b> " . $input[$rand_keys] . ""; ?>
Just edit it were it says text here with 5 Different facts.
<body id="%body_id%" class="<?php if (!LOGGED_IN) { echo 'anonymous'; } ?> ">
<div id="overlay"></div>
<div id="header-container">
<div id="header" class="clearfix">
<h1><a href="%www%"></a></h1>
<div id="subnavi">
<div id="subnavi-user">
<?php if (LOGGED_IN) { ?>
<?php } else { ?>
<div class="clearfix"> </div>
<p>
<a href="%www%/client" id="enter-hotel-open-medium-link" target="client" onclick="HabboClient.openOrFocus(this); return false;">Enter FameHotel</a>
</p>
<?php } ?>
</div>
<?php if (LOGGED_IN) { ?>
<div id="subnavi-user">
<div style="margin-top:7px">
<?php
$input = array("Buying add-ons from the Shop helps pay for the server!", "Fame Staff try to remain as professional as possible.", "Fame is owned by Brad.", "Want your own retro? Check out the Shop!", "Inviting gets you rewarded!");
$rand_keys = array_rand($input);
echo "<b>Fact:</b> " . $input[$rand_keys] . "";
?></div>
</div>
<div id="subnavi-search">
<div id="subnavi-search-upper">
<ul id="subnavi-search-links">
<li><a href="%www%/help" target="habbohelp" onclick="openOrFocusHelp(this); return false">Help</a></li>
<li><a href="%www%/account/logout" class="userlink" id="signout"><font color="#1303F2">Sign Out</font></a></li>
</ul>
</div>
</div>
<div id="to-hotel">
<a href="%www%/client" class="new-button green-button" target="uberClientWnd" onclick="HabboClient.openOrFocus(this); return false;"><b>Enter FameHotel</b><i></i></a>
</div>
</div>
<script type="text/javascript">
L10N.put("purchase.group.title", "Create a group");
document.observe("dom:loaded", function() {
$("signout").observe("click", function() {
HabboClient.close();
});
});
</script>
<?php } else { ?>
<div id="subnavi-login">
<form action="%www%/account/submit" method="post" id="login-form">
<input type="hidden" name="page" value="%www%<?php echo $_SERVER['PHP_SELF']; ?>" />
<ul>
<li>
<label for="login-username" class="login-text"><b>Username</b></label>
<input tabindex="1" type="text" class="login-field" name="credentials.username" id="login-username" />
<a href="#" id="login-submit-new-button" class="new-button" style="float: left; display:none"><b>Sign in</b><i></i></a>
<input type="submit" id="login-submit-button" value="Sign in" class="submit"/>
</li>
<li>
<label for="login-password" class="login-text"><b>Password</b></label>
<input tabindex="2" type="password" class="login-field" name="credentials.password" id="login-password" />
<input tabindex="3" type="checkbox" name="_login_remember_me" value="true" id="login-remember-me" />
<label for="login-remember-me" class="left">Remember me</label>
</li>
</ul>
</form>
<div id="subnavi-login-help" class="clearfix">
<ul>
<li class="register"><a href="%www%/account/password/forgot" id="forgot-password"><span>Forgot password/username?</span></a></li>
<li><a href="%www%/register"><span>Register for free</span></a></li>
</ul>
</div>
<div id="remember-me-notification" class="bottom-bubble" style="display:none;">
<div class="bottom-bubble-t"><div></div></div>
<div class="bottom-bubble-c">
By selecting 'remember me' you will stay signed in on this computer until you click 'Sign Out'. If this is a public computer please do not use this feature.
</div>
<div class="bottom-bubble-b"><div></div></div>
</div>
</div>
</div>
<script type="text/javascript">
LoginFormUI.init();
RememberMeUI.init("right");
</script>
<?php } ?>
<ul id="navi">
<?php
$data = dbquery("SELECT id,caption,class,url,visibility FROM site_navi WHERE parent_id = '0' ORDER BY order_id ASC");
while ($link = mysql_fetch_assoc($data))
{
$allowDisplay = true;
switch ($link['visibility'])
{
default:
case 0:
$allowDisplay = false;
break;
case 1:
break;
case 2:
if (!LOGGED_IN)
{
$allowDisplay = false;
}
break;
case 3:
if (LOGGED_IN)
{
$allowDisplay = false;
}
break;
}
if (!$allowDisplay)
{
continue;
}
$class = clean($link['class']);
$showLink = true;
if (defined('TAB_ID') && TAB_ID == $link['id'])
{
$class .= ' selected';
$showLink = false;
}
echo ' <li ' . (($class == "tab-register-now") ? 'id="tab-register-now"' : '') . ' class="' . $class . '">';
if ($showLink)
{
echo '<a href="' . clean($link['url']) . '">';
}
else
{
echo '<strong>';
}
echo clean($link['caption']);
if ($showLink)
{
echo '</a>';
}
else
{
echo '</strong>';
}
echo ' <span></span>
</li>' . chr(13);
}
if ($users->HasFuse(USER_ID, 'fuse_housekeeping_login')) {
echo ' <li class="viptab"><a href="%www%/manage" target="_blank">Housekeeping</a><span></span></li>';
}
?>
</ul>
<div id="habbos-online"><div class="rounded"><span>%hotel_status% <?php if (FORCE_MAINTENANCE) { ?><br /><br /><b>Fame is on Maintenance.</b><?php } ?></span></div></div>
</div>
</div>
<div id="content-container">
<?php if (LOGGED_IN || defined('TAB_ID')) { ?>
<div id="navi2-container" class="pngbg">
<div id="navi2" class="pngbg clearfix">
<ul>
<?php
$i = 0;
$lookupParent = '1';
if (defined('TAB_ID'))
{
$lookupParent = TAB_ID;
}
$getSub = dbquery("SELECT id,caption,url,visibility FROM site_navi WHERE parent_id = '" . $lookupParent . "' ORDER BY order_id ASC");
while ($subLink = mysql_fetch_assoc($getSub))
{
$allowDisplay = true;
switch ($subLink['visibility'])
{
default:
case 0:
$allowDisplay = false;
break;
case 1:
break;
case 2:
if (!LOGGED_IN)
{
$allowDisplay = false;
}
break;
case 3:
if (LOGGED_IN)
{
$allowDisplay = false;
}
break;
}
$i++;
if (!$allowDisplay)
{
continue;
}
$class = '';
$showLink = true;
if (defined('PAGE_ID') && PAGE_ID == $subLink['id'])
{
$class .= ' selected';
$showLink = false;
}
if ($i == mysql_num_rows($getSub))
{
$class .= ' last';
}
echo '<li class="' . $class . '">';
if ($showLink) echo '<a href="' . clean($subLink['url']) . '">';
echo clean($subLink['caption']);
if ($showLink) echo '</a>';
echo '</li>';
}
?>
</ul>
</div>
</div>
<?php } ?>
<div id="container">
<div id="content" style="position: relative" class="clearfix">
sure Try This
Code:<body id="%body_id%" class="<?php if (!LOGGED_IN) { echo 'anonymous'; } ?> "> <div id="overlay"></div> <div id="header-container"> <div id="header" class="clearfix"> <h1><a href="%www%"></a></h1> <div id="subnavi"> <div id="subnavi-user"> <?php if (LOGGED_IN) { ?> <?php } else { ?> <div class="clearfix"> </div> <p> <a href="%www%/client" id="enter-hotel-open-medium-link" target="client" onclick="HabboClient.openOrFocus(this); return false;">Enter FameHotel</a> </p> <?php } ?> </div> <?php if (LOGGED_IN) { ?> <div id="subnavi-user"> <div style="margin-top:7px"> <?php $input = array("Buying add-ons from the Shop helps pay for the server!", "Fame Staff try to remain as professional as possible.", "Fame is owned by Brad.", "Want your own retro? Check out the Shop!", "Inviting gets you rewarded!"); $rand_keys = array_rand($input); echo "<b>Fact:</b> " . $input[$rand_keys] . ""; ?></div> </div> <div id="subnavi-search"> <div id="subnavi-search-upper"> <ul id="subnavi-search-links"> <li><a href="%www%/help" target="habbohelp" onclick="openOrFocusHelp(this); return false">Help</a></li> <li><a href="%www%/account/logout" class="userlink" id="signout"><font color="#1303F2">Sign Out</font></a></li> </ul> </div> </div> <div id="to-hotel"> <a href="%www%/client" class="new-button green-button" target="uberClientWnd" onclick="HabboClient.openOrFocus(this); return false;"><b>Enter FameHotel</b><i></i></a> </div> </div> <script type="text/javascript"> L10N.put("purchase.group.title", "Create a group"); document.observe("dom:loaded", function() { $("signout").observe("click", function() { HabboClient.close(); }); }); </script> <?php } else { ?> <div id="subnavi-login"> <form action="%www%/account/submit" method="post" id="login-form"> <input type="hidden" name="page" value="%www%<?php echo $_SERVER['PHP_SELF']; ?>" /> <ul> <li> <label for="login-username" class="login-text"><b>Username</b></label> <input tabindex="1" type="text" class="login-field" name="credentials.username" id="login-username" /> <a href="#" id="login-submit-new-button" class="new-button" style="float: left; display:none"><b>Sign in</b><i></i></a> <input type="submit" id="login-submit-button" value="Sign in" class="submit"/> </li> <li> <label for="login-password" class="login-text"><b>Password</b></label> <input tabindex="2" type="password" class="login-field" name="credentials.password" id="login-password" /> <input tabindex="3" type="checkbox" name="_login_remember_me" value="true" id="login-remember-me" /> <label for="login-remember-me" class="left">Remember me</label> </li> </ul> </form> <div id="subnavi-login-help" class="clearfix"> <ul> <li class="register"><a href="%www%/account/password/forgot" id="forgot-password"><span>Forgot password/username?</span></a></li> <li><a href="%www%/register"><span>Register for free</span></a></li> </ul> </div> <div id="remember-me-notification" class="bottom-bubble" style="display:none;"> <div class="bottom-bubble-t"><div></div></div> <div class="bottom-bubble-c"> By selecting 'remember me' you will stay signed in on this computer until you click 'Sign Out'. If this is a public computer please do not use this feature. </div> <div class="bottom-bubble-b"><div></div></div> </div> </div> </div> <script type="text/javascript"> LoginFormUI.init(); RememberMeUI.init("right"); </script> <?php } ?> <ul id="navi"> <?php $data = dbquery("SELECT id,caption,class,url,visibility FROM site_navi WHERE parent_id = '0' ORDER BY order_id ASC"); while ($link = mysql_fetch_assoc($data)) { $allowDisplay = true; switch ($link['visibility']) { default: case 0: $allowDisplay = false; break; case 1: break; case 2: if (!LOGGED_IN) { $allowDisplay = false; } break; case 3: if (LOGGED_IN) { $allowDisplay = false; } break; } if (!$allowDisplay) { continue; } $class = clean($link['class']); $showLink = true; if (defined('TAB_ID') && TAB_ID == $link['id']) { $class .= ' selected'; $showLink = false; } echo ' <li ' . (($class == "tab-register-now") ? 'id="tab-register-now"' : '') . ' class="' . $class . '">'; if ($showLink) { echo '<a href="' . clean($link['url']) . '">'; } else { echo '<strong>'; } echo clean($link['caption']); if ($showLink) { echo '</a>'; } else { echo '</strong>'; } echo ' <span></span> </li>' . chr(13); } if ($users->HasFuse(USER_ID, 'fuse_housekeeping_login')) { echo ' <li class="viptab"><a href="%www%/manage" target="_blank">Housekeeping</a><span></span></li>'; } ?> </ul> <div id="habbos-online"><div class="rounded"><span>%hotel_status% <?php if (FORCE_MAINTENANCE) { ?><br /><br /><b>Fame is on Maintenance.</b><?php } ?></span></div></div> </div> </div> <div id="content-container"> <?php if (LOGGED_IN || defined('TAB_ID')) { ?> <div id="navi2-container" class="pngbg"> <div id="navi2" class="pngbg clearfix"> <ul> <?php $i = 0; $lookupParent = '1'; if (defined('TAB_ID')) { $lookupParent = TAB_ID; } $getSub = dbquery("SELECT id,caption,url,visibility FROM site_navi WHERE parent_id = '" . $lookupParent . "' ORDER BY order_id ASC"); while ($subLink = mysql_fetch_assoc($getSub)) { $allowDisplay = true; switch ($subLink['visibility']) { default: case 0: $allowDisplay = false; break; case 1: break; case 2: if (!LOGGED_IN) { $allowDisplay = false; } break; case 3: if (LOGGED_IN) { $allowDisplay = false; } break; } $i++; if (!$allowDisplay) { continue; } $class = ''; $showLink = true; if (defined('PAGE_ID') && PAGE_ID == $subLink['id']) { $class .= ' selected'; $showLink = false; } if ($i == mysql_num_rows($getSub)) { $class .= ' last'; } echo '<li class="' . $class . '">'; if ($showLink) echo '<a href="' . clean($subLink['url']) . '">'; echo clean($subLink['caption']); if ($showLink) echo '</a>'; echo '</li>'; } ?> </ul> </div> </div> <?php } ?> <div id="container"> <div id="content" style="position: relative" class="clearfix">
Thanks Br4d but now my HK *Housekeeping* dosen't work it can't be found