R63B client stats bar?

anthonyy

Member
Dec 23, 2014
127
10
ok so I'm looking for a client stats bar that show users online or even our newest user on the client itself. I Found a post but the file had expired so could not copy it. does anyone know the codes for it thank you. :)
 

Core

Member
Nov 10, 2016
356
138
ok so I'm looking for a client stats bar that show users online or even our newest user on the client itself. I Found a post but the file had expired so could not copy it. does anyone know the codes for it thank you. :)
You can construct one yourself with basic knowledge in html and css. Here is a quick example (not tested);
Code:
<style>
.nav-bar {
background:#000;
border-bottom:1px solid #fff;
color:#fff;
width:100%;
height:30px;
position:relative;
top:0;
left:0;
z-index:300;
}

.nav-bar .container {
width:900px;
margin:2px auto;
}
</style>

<div class="nav-bar">
<div class="container">
This is example text...
</div>
</div>

For RevCMS;
Then use things like {online} for users online or {username} for your username. E.g.
Welcome back, {username}! There are currently {online} users online.

Look into ajax setInterval and jquery load function for auto updating stats.

This is a help and support section, if you're not going to offer your help then please do not comment.
rip lol
 

Users who are viewing this thread

Top