Anyone got a eXperts page for revCMS habbo theme

Status
Not open for further replies.

Ryabs

Christmas Donator
Dec 30, 2011
343
39
As title says : Anyone got a eXperts page for revCMS habbo theme;D If so give download link xoxo
 

Gajeel

Well-Known Member
Oct 4, 2011
2,411
413
For what CMS, RevCMS? If so, here is a page pack provided by
 

lepos

thinking about you. yes you
Dec 11, 2011
2,022
685
You say on ubercms theres always a staff page right?

Or on phoenixphp. Go on one of those and copy the code they use to show the 1 rank.

Go to revcms, make a copy of the staff page and name it w/e. Then replace the part where you put the rank with the one you have.

Works perfectly, because I've done it!
 

Ink

Member
Jun 4, 2010
61
11
If you aren't very good at coding personally, then take the one that recommended and just copy the code over to a Habbo theme page called Experts.
 

Mitchul

Sledmoresux
Feb 18, 2012
371
46
Edit the staff page,
Look for copy the page, then
edit
PHP:
<div id="column1" class="column">
                                        <?php
                            $GetRanks = mysql_query("SELECT id,name FROM ranks WHERE id >= 3 ORDER BY id DESC");
                            while($Ranks = mysql_fetch_assoc($GetRanks))
                            {
                                echo "<div class=\"habblet-container \"><div class=\"cbb clearfix green \"><h2 class=\"title\">{$Ranks['name']}</h2><div style=\"padding:5px\"><p>";
                                $GetUsers = mysql_query("SELECT username,motto,rank,last_online,online,look FROM users WHERE rank = {$Ranks['id']}");
                                while($Users = mysql_fetch_assoc($GetUsers))
                                {
                                  if($Users['online'] == 1){ $OnlineStatus = "<img src='{url}/app/tpl/skins/Habbo/images/online.gif'/>"; } else { $OnlineStatus = "<img src='{url}/app/tpl/skins/Habbo/images/offline.gif'/>"; }
                                    echo "<img style=\"position:absolute;\" src=\"http://www.habbo.com/habbo-imaging/avatarimage?figure={$Users['look']}&action=wav&direction=2&head_direction=3&gesture=srp&size=l\">"
                                        ."<p style=\"margin-left:80px;margin-top:20px;\">Username: <strong>{$Users['username']}</strong><br>Motto: <strong>{$Users['motto']}</strong><br><small>Last Online: ". date("D, d F Y H:i (P)", $Users['last_online']) ."</small></p>"
                                        ."<br><br><p style=\"float:right;margin-top:-30px;margin-right:5px;\">{$OnlineStatus}</p><br><br><br>";
                                }
                                echo "</div></div></div>";
                            }
                        ?>
                 
                        <script type="text/javascript">if (!$(document.body).hasClassName('process-template')) { Rounder.init(); }</script>
                    </div>



to


PHP:
<div id="column1" class="column">

                                        <?php

                            $GetRanks = mysql_query("SELECT id,name FROM ranks WHERE id = 3 ORDER BY id DESC");

                            while($Ranks = mysql_fetch_assoc($GetRanks))

                            {

                                echo "<div class=\"habblet-container \"><div class=\"cbb clearfix green \"><h2 class=\"title\">{$Ranks['name']}</h2><div style=\"padding:5px\"><p>";

                                $GetUsers = mysql_query("SELECT username,motto,rank,last_online,online,look FROM users WHERE rank = {$Ranks['id']}");

                                while($Users = mysql_fetch_assoc($GetUsers))

                                {

                                  if($Users['online'] == 1){ $OnlineStatus = "<img src='{url}/app/tpl/skins/Habbo/images/online.gif'/>"; } else { $OnlineStatus = "<img src='{url}/app/tpl/skins/Habbo/images/offline.gif'/>"; }

                                    echo "<img style=\"position:absolute;\" src=\"http://www.habbo.com/habbo-imaging/avatarimage?figure={$Users['look']}&action=wav&direction=2&head_direction=3&gesture=srp&size=l\">"

                                        ."<p style=\"margin-left:80px;margin-top:20px;\">Username: <strong>{$Users['username']}</strong><br>Motto: <strong>{$Users['motto']}</strong><br><small>Last Online: ". date("D, d F Y H:i (P)", $Users['last_online']) ."</small></p>"

                                        ."<br><br><p style=\"float:right;margin-top:-30px;margin-right:5px;\">{$OnlineStatus}</p><br><br><br>";

                                }

                                echo "</div></div></div>";

                            }

                        ?>

                 

                        <script type="text/javascript">if (!$(document.body).hasClassName('process-template')) { Rounder.init(); }</script>

                    </div>
 
Status
Not open for further replies.

Users who are viewing this thread

Top