Top Bar for Client ( R63) = 10 Online • Welcome our newest user, (username)
Hello.
Where can i find or get this top bar?
I have been looking for it for days now...
http://i.imgur.com/OxNl4US.png (Look at this)
Re: Top Bar for Client ( R63) = 10 Online • Welcome our newest user, (username)
You can add this with jQuery load
But i dont have any certain if in the print was used this method
Re: Top Bar for Client ( R63) = 10 Online • Welcome our newest user, (username)
Quote:
Originally Posted by
CelsoNetto
You can add this with jQuery load
But i dont have any certain if in the print was used this method
Ohhh... I hope someone have one..
Re: Top Bar for Client ( R63) = 10 Online • Welcome our newest user, (username)
I can do that. But this week, i dont have time :/
Re: Top Bar for Client ( R63) = 10 Online • Welcome our newest user, (username)
Since danny from hepix made it, you can't get it anywhere else unless you rip it. This is what mine looks like, http://prntscr.com/2ve6hr
Re: Top Bar for Client ( R63) = 10 Online • Welcome our newest user, (username)
Quote:
Originally Posted by
Joe Richardson
Since danny from hepix made it, you can't get it anywhere else unless you rip it. This is what mine looks like,
http://prntscr.com/2ve6hr
Can you release it or give me a hint?
Re: Top Bar for Client ( R63) = 10 Online • Welcome our newest user, (username)
They aren't hard to make, it's just a bit of HTML/CSS
Re: Top Bar for Client ( R63) = 10 Online • Welcome our newest user, (username)
Quote:
Originally Posted by
JackHoll
They aren't hard to make, it's just a bit of HTML/CSS
And AJAX (And don't use JQuery just because you have to do one AJAX request... ; people are forgetting how the real coding works)
Re: Top Bar for Client ( R63) = 10 Online • Welcome our newest user, (username)
Quote:
Originally Posted by
flx5
And AJAX (And don't use JQuery just because you have to do one AJAX request... ; people are forgetting how the real coding works)
Yeah but thats only for refreshing the users online, it isn't vital...
Re: Top Bar for Client ( R63) = 10 Online • Welcome our newest user, (username)
Quote:
Originally Posted by
JackHoll
Yeah but thats only for refreshing the users online, it isn't vital...
Yeah but i'm noob to code HTML/PHP, hope someone release one or find...
Re: Top Bar for Client ( R63) = 10 Online • Welcome our newest user, (username)
Quote:
Originally Posted by
CelsoNetto
I can do that. But this week, i dont have time :/
Thats fine, just hope you make one when you have time, it will be awesome :)
Re: Top Bar for Client ( R63) = 10 Online • Welcome our newest user, (username)
http://prntscr.com/2w5q2u
client for rev with the bar
PHP Code:
<script type="text/javascript">
var habboName = "{username}";
var habboReqPath = "{url}";
var habboStaticFilePath = "http://images.habbo.com/habboweb/{web_build}/web-gallery";
var habboImagerUrl = "http://www.habbo.com/habbo-imaging/";
var habboPartner = "";
var habboDefaultClientPopupUrl = "{url}/client";
window.name = "ClientWndw";
if (typeof HabboClient != "undefined") { HabboClient.windowName = "ClientWndw"; }
</script>
<link rel="alternate" type="application/rss+xml" title="Habbo Hotel - RSS" href="http://www.habbo.com/articles/rss.xml" />
<script src="app/tpl/skins/{skin}/client/libs2.js" type="text/javascript"></script>
<script src="app/tpl/skins/{skin}/client/visual.js" type="text/javascript"></script>
<script src="app/tpl/skins/{skin}/client/libs.js" type="text/javascript"></script>
<script src="app/tpl/skins/{skin}/client/common.js" type="text/javascript"></script>
<link rel="stylesheet" href="http://images.habbo.com/habboweb/{web_build}/web-gallery/static/styles/common.css" type="text/css" />
<link rel="stylesheet" href="http://images.habbo.com/habboweb/{web_build}/web-gallery/static/styles/habboflashclient.css" type="text/css" />
<noscript>
<meta http-equiv="refresh" content="0;url=/client/nojs" />
</noscript>
<link rel="stylesheet" href="app/tpl/skins/{skin}/client/client.css" type="text/css" />
<script src="app/tpl/skins/{skin}/client/habboflashclient.js" type="text/javascript"></script>
<script type="text/javascript">
FlashExternalInterface.loginLogEnabled = false;
FlashExternalInterface.logLoginStep("web.view.start");
if (top == self) {
FlashHabboClient.cacheCheck();
}
var flashvars = {
"client.allow.cross.domain" : "0",
"client.notify.cross.domain" : "1",
"connection.info.host" : "{server_ip}",
"connection.info.port" : "3031",
"site.url" : "{url}/",
"url.prefix" : "{url}/",
"client.reload.url" : "{url}/client",
"client.fatal.error.url" : "{url}/disconnected",
"client.connection.failed.url" : "{url}/disconnected",
"external.variables.txt" : "{external_vars}",
"external.texts.txt" : "{external_texts}",
"productdata.load.url" : "{product_data}",
"furnidata.load.url" : "{furni_data}",
"use.sso.ticket" : "1",
"sso.ticket" : "{sso}",
"processlog.enabled" : "0",
"account_id" : "1",
"client.starting" : "Please wait! {hotelName} is starting up",
"flash.client.url" : "{swf_folder}/",
"user.hash" : "31385693ae558a03d28fc720be6b41cb1ccfec02",
"has.identity" : "0",
"flash.client.origin" : "popup",
"token" : "{sso}"
};
var params = {
"base" : "{swf_folder}/",
"allowScriptAccess" : "always",
"menu" : "false"
};
if (!(HabbletLoader.needsFlashKbWorkaround())) {
params["wmode"] = "opaque";
}
var clientUrl = "{swf_folder}/Open.swf";
swfobject.embedSWF(clientUrl, "flash-container", "100%", "100%", "10.0.0", "http://images.habbo.com/habboweb/{web_build}/web-gallery/flash/expressInstall.swf", flashvars, params);
window.onbeforeunload = unloading;
function unloading() {
var clientObject;
if (navigator.appName.indexOf("Microsoft") != -1) {
clientObject = window["flash-container"];
} else {
clientObject = document["flash-container"];
}
try {
clientObject.unloading();
} catch (e) {}
}
</script>
<style>
#client{
height: 96%;
}
#topbar{
text-align:center;
background:#2E2E2E;
color:#fff;
padding:3px;
height:20px;
font-family:Verdana;
font-size:10.5px;
}
.left{
margin-top:4px;
margin-left:4px;
left: 4px;
float:left;
}
.center{
margin-top:4px;
float:center;
}
.right{
margin-top:4px;
margin-right:4px;
float:right;
}
a {
color: #FAAC58;
}
</style>
<meta name="build" content="63-BUILD36 - 16.11.2010 11:51 - com" />
</head>
<body id="client" class="flashclient">
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script>
var refreshId = setInterval(function()
{
$('#TheStats').fadeOut("slow").load('/r').fadeIn("slow");
}, 10000);
</script>
<div id="topbar">
<div class="left">
<div id="RefreshBar">
<div id="TheStats">
<div id="ActualStats">
<center>{online}</center>
</div>
</div>
</div>
</div>
<script>
var refreshId = setInterval(function()
{
$('#TheStats1').fadeOut("slow").load('/r1').fadeIn("slow");
}, 10000);
</script>
<div class="right">
<div id="RefreshBar">
<div id="TheStats1">
<div id="ActualStats">
<center></center>
</div>
</div>
</div>
</div>
<script>
var refreshId = setInterval(function()
{
$('#TheStats2').fadeOut("slow").load('/reloadstats2.php').fadeIn("slow");
}, 10000);
</script>
<div id="RefreshBar">
<div id="TheStats3">
<div id="ActualStats">
<center><b><!-- BEGINS: AUTO-GENERATED MUSES RADIO PLAYER CODE -->
<script type="text/javascript" src="http://hosted.musesradioplayer.com/mrp.js"></script>
<script type="text/javascript">
MRP.insert({
'url':'http://198.50.201.189:8000/listen.mp3',
'codec':'mp3',
'volume':100,
'autoplay':true,
'jsevents':true,
'buffering':5,
'title':'Open Hotel',
'welcome':'Open Hotel',
'wmode':'transparent',
'skin':'original',
'width':329,
'height':21
});
</script>
<!-- ENDS: AUTO-GENERATED MUSES RADIO PLAYER CODE --></center>
</div>
</div>
</div>
</div>
<div id="overlay"></div>
<img src="http://images.habbo.com/habboweb/{web_build}/web-gallery/v2/images/page_loader.gif" style="position:absolute; margin: -1500px;" />
<div id="overlay"></div>
<div id="client-ui" >
<div id="flash-wrapper">
<div id="flash-container">
<div id="content" style="width: 400px; margin: 20px auto 0 auto; display: none">
<div class="cbb clearfix">
<h2 class="title">Please update your Flash Player to the latest version.</h2>
<div class="box-content">
<p>You can install and download Adobe Flash Player here: <a href="http://get.adobe.com/flashplayer/">Install flash player</a>. More instructions for installation can be found here: <a href="http://www.adobe.com/products/flashplayer/productinfo/instructions/">More information</a></p>
<p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://images.habbo.com/habboweb/{web_build}/web-gallery/v2/images/client/get_flash_player.gif" alt="Get Adobe Flash player" /></a></p>
</div>
</div>
</div>
<script type="text/javascript">
$('content').show();
</script>
<noscript>
<div style="width: 400px; margin: 20px auto 0 auto; text-align: center">
<p>If you are not automatically redirected, please <a href="/client/nojs">click here</a></p>
</div>
</noscript>
</div>
</div>
</div>
<div style="display: none">
<div id="habboCountUpdateTarget">
{status}
</div>
<script language="JavaScript" type="text/javascript">
setTimeout(function() {
HabboCounter.init(600);
}, 20000);
</script>
</div>
<script type="text/javascript">
RightClick.init("flash-wrapper", "flash-container");
if (window.opener && window.opener != window && typeof window.opener.location.href != "undefined") {
window.opener.location.replace(window.opener.location.href);
}
$(document.body).addClassName("js");
HabboClient.startPingListener();
</script>
<script type="text/javascript">
HabboView.run();
</script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-15697942-2']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
make a file call it r.php in your skin and put this in it you need to add the {room} though easy to do
PHP Code:
{online} Users Online || {rooms} Rooms Loaded
now make a file call it r1.php
PHP Code:
<?php
$result = mysql_query("SELECT * FROM users ORDER BY id DESC LIMIT 1");
while($row = mysql_fetch_array($result))
{
echo "Welcome " .$row['username']. " Our New User!";
}
?>
and add that
your welcome
Re: Top Bar for Client ( R63) = 10 Online • Welcome our newest user, (username)
Sick bro. Thanks for this.
Re: Top Bar for Client ( R63) = 10 Online • Welcome our newest user, (username)
Quote:
Originally Posted by
Boston21
Sick bro. Thanks for this.
Welcome :) it easy to code
Re: Top Bar for Client ( R63) = 10 Online • Welcome our newest user, (username)
Quote:
Originally Posted by
Power69
Welcome :) it easy to code
Your opinion versus the majority haha. But nice work. Do you have any other cool little rev-able snippets? xD