I'm not sure how to edit the color, but if you want the tab there go to your C:\xampp\htdocs\app\tpl\skins\Habbo and find "me" Once in "me" ctrl f, and find "Community" Under it put this codeWhere is the Tabs Class?
<?php if(mysql_result(mysql_query("SELECT rank FROM users WHERE id = '" . $_SESSION['user']['id'] . "'"), 0) >= 4)
{ ?>
<li class " "><a href="{url}/ase/">Housekeeping</a><span></span></li>
<?php
} ?>
if($this->params['rank'] > 3)
{
$this->setParams('housekeeping', '<li><a href="ase/">Housekeeping</a></li>');
}
if($this->params['rank'] > 3)
{
$this->setParams('housekeeping', '<span></span> <li><a href="ase/">Housekeeping</a>');
}
Well, I got it now ^.^I'm not sure how to edit the color, but if you want the tab there go to your C:\xampp\htdocs\app\tpl\skins\Habbo and find "me" Once in "me" ctrl f, and find "Community" Under it put this code
If the tab is cut off a little, go to C:\xampp\htdocs\app find "class.template" then search forPHP:<?php if(mysql_result(mysql_query("SELECT rank FROM users WHERE id = '" . $_SESSION['user']['id'] . "'"), 0) >= 4) { ?> <li class " "><a href="{url}/ase/">Housekeeping</a><span></span></li> <?php } ?>
And change it toPHP:if($this->params['rank'] > 3) { $this->setParams('housekeeping', '<li><a href="ase/">Housekeeping</a></li>'); }
That's it. change where it says the rank number 3 to your minimum access level for housekeeping, or u can keep it like that.PHP:if($this->params['rank'] > 3) { $this->setParams('housekeeping', '<span></span> <li><a href="ase/">Housekeeping</a>'); }
Oh ok, your welcome. lolWell, I got it now ^.^
but thanks anyway
Yes, to make it orange you typeOh ok, your welcome. lol
Did you figure out how to change the color?
<li id="tab-register-now">
<a href="staff">Staff</a>
</li>
Alright thanks.Yes, to make it orange you type
HTML:<li id="tab-register-now"> <a href="staff">Staff</a> </li>