[uber] keeps reloading

Mute

New Member
Apr 3, 2011
18
0
Hey guys i have a prob whit mine ubercms when i logg into the game it just keeps reloading

here is my vars and client


Client.php
PHP:
<?php
/*=======================================================================
| UberCMS - Advanced Website and Content Management System for uberEmu
| #######################################################################
| Copyright (c) 2010, Roy 'Meth0d' and updates by Matthew 'MDK'
| http://www.meth0d.org & http://www.sulake.biz
| #######################################################################
| This program is free software: you can redistribute it and/or modify
| it under the terms of the GNU General Public License as published by
| the Free Software Foundation, either version 3 of the License, or
| (at your option) any later version.
| #######################################################################
| This program is distributed in the hope that it will be useful,
| but WITHOUT ANY WARRANTY; without even the implied warranty of
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
| GNU General Public License for more details.
\======================================================================*/

define('HIDE_FEEDBACK', true);

require_once "global.php";
require_once "inc/class.rooms.php";

if (!LOGGED_IN)
{
    header("Location: " . WWW. "/login_popup");
    exit;
}

$forwardType = 0;
$forwardId = 0;

$lang = '';
$habbo10 = '';

if (isset($_GET['lang']))
{
    $lang = $_GET['lang'];
}

switch ($lang)
{
        default:

    $lang = "";
        dbquery("UPDATE users SET real_name = 'English' WHERE id = '" . USER_ID . "' LIMIT 1");
        break;

    case "br":

        $lang = "_br.txt";
        dbquery("UPDATE users SET real_name = 'Brazilian' WHERE id = '" . USER_ID . "' LIMIT 1");
        break;

    case "de":
    
        $lang = "_de.txt";
        dbquery("UPDATE users SET real_name = 'German' WHERE id = '" . USER_ID . "' LIMIT 1");
        break;

    case "dk":
    
        $lang = "_dk.txt";
        dbquery("UPDATE users SET real_name = 'Danish' WHERE id = '" . USER_ID . "' LIMIT 1");
        break;

    case "es":
    
        $lang = "_es.txt";
        dbquery("UPDATE users SET real_name = 'Spanish' WHERE id = '" . USER_ID . "' LIMIT 1");
        break;

    case "fi":
    
        $lang = "_fi.txt";
        dbquery("UPDATE users SET real_name = 'Finnish' WHERE id = '" . USER_ID . "' LIMIT 1");
        break;

    case "fr":
    
        $lang = "_fr.txt";
        dbquery("UPDATE users SET real_name = 'French' WHERE id = '" . USER_ID . "' LIMIT 1");
        break;

    case "it":
    
        $lang = "_it.txt";
        dbquery("UPDATE users SET real_name = 'Italian' WHERE id = '" . USER_ID . "' LIMIT 1");
        break;

    case "jp":
    
        $lang = "_jp.txt";
        $habbo10 = "_jp";
        dbquery("UPDATE users SET real_name = 'Japanese' WHERE id = '" . USER_ID . "' LIMIT 1");
        break;

    case "nl":
    
        $lang = "_nl.txt";
        dbquery("UPDATE users SET real_name = 'Dutch' WHERE id = '" . USER_ID . "' LIMIT 1");
        break;

    case "no":
    
        $lang = "_no.txt";
        dbquery("UPDATE users SET real_name = 'Norwegian' WHERE id = '" . USER_ID . "' LIMIT 1");
        break;

    case "se":
    
        $lang = "_se.txt";
        dbquery("UPDATE users SET real_name = 'Swedish' WHERE id = '" . USER_ID . "' LIMIT 1");
        break;
}


if ($users->getUserVar(USER_ID, 'newbie_status') == "0")
{
    if (isset($_GET['createRoom']) && is_numeric($_GET['createRoom']))
    {
        $roomId = RoomManager::CreateRoom(USER_NAME . "'s kamer", USER_NAME, 'model_s');

        switch (intval($_GET['createRoom']))
        {
            default:
            case 0:
            
                RoomManager::PaintRoom($roomId, '1701', '601');
                break;
                
            case 1:
            
                RoomManager::PaintRoom($roomId, '607', '111');
                break;
                
            case 2:
            
                RoomManager::PaintRoom($roomId, '1901', '301');
                break;
                
            case 3:
            
                RoomManager::PaintRoom($roomId, '1801', '110');
                break;
                
            case 4:
            
                RoomManager::PaintRoom($roomId, '503', '104');
                break;
                
            case 5:
            
                RoomManager::PaintRoom($roomId, '804', '107');
                break;
        }

        //die('createRoom Result: ' . $roomId);
        dbquery("UPDATE users SET home_room = '" . $roomId . "', newbie_status = '1' WHERE id = '" . USER_ID . "' LIMIT 1");
        
        //$forwardType = 2;
        //$forwardId = $roomId;
    }
    else
    {
        header("Location: " . WWW . "/client?createRoom=" . rand(0, 5));
        exit;
    }
}
else if (isset($_GET['forwardType']) && isset($_GET['forwardId']) && is_numeric($_GET['forwardType']) && is_numeric($_GET['forwardId']))
{
    $forwardType = intval($_GET['forwardType']);
    $forwardId = intval($_GET['forwardId']);
    
    if ($forwardType >= 3 || $forwardType <= 0)
    {
        return;
    }
}

if ($users->GetUserVar(USER_ID, "newbie_status", false) == "1")
{
dbquery("UPDATE users SET newbie_status = '2' WHERE id = '" . USER_ID . "' LIMIT 1");
}

$users->CheckSSO(USER_ID);

$tpl->Init();

$client = new Template('page-client-r61');
$client->SetParam('sso_ticket', $users->GetUserVar(USER_ID, 'auth_ticket', false));
$client->SetParam('flash_base', '%www%/gordon/RELEASE61-29232-29225-201010221424_9ceba2c2aa22ca6c86bbff05c74cb321/');
$client->SetParam('flash_client_url', '%www%/client');
$client->SetParam('habbo10_swf', '%www%/gordon/RELEASE61-29232-29225-201010221424_9ceba2c2aa22ca6c86bbff05c74cb321/Habbo10'.$habbo10.'.swf');
$client->SetParam('external_flash_texts', '%www%/gamedata/external?id=external_flash_texts'.$lang);
$client->SetParam('info_host', '5.162.164.43');
$client->SetParam('info_port', '30000');

if (isset($_GET['forceTicket']) && $users->HasFuse(USER_ID, 'fuse_admin'))
{
    $client->SetParam('sso_ticket', $_GET['forceTicket']);
}

$tpl->AddTemplate($client);

$tpl->Output();

?>

page-client-61.tpl
PHP:
<html>
<head>
    <title>Habbo: </title>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <style type="text/css"> 
        body {
            background-color: #000000; 
            color: #FFFFFF;
            margin: 0;
            padding: 0;
        }

        a {
            color: #FFFFFF;
        }
    </style> 
        <script>
        window.name = "uberClientWnd";
        </script>
</head>



<body>
    <center>
        <div style='position:absolute; left:0; right:0; top:0; bottom:0; overflow:hidden; height:100%; width:100%;'>&nbsp;
                   <object id="flash-container" style="height:100%; width:100%; position:absolute; top:0px; left:0px;" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="100%" height="100%"> 
                <param name="movie" value="%habbo10_swf%" /> 
                <param name="base" value="%flash_base%" /> 
                <param name="allowScriptAccess" value="always" /> 
                <param name="menu" value="false"/> 
                <param name="flashVars" value="external.variables.txt=http://5.162.164.43/gamedata/external_variables&amp;external.texts.txt=%external_flash_texts%&amp;client.allow.cross.domain=0&amp;client.notify.cross.domain=1&amp;flash.client.url=%flash_client_url%&amp;connection.info.host=%info_host%&amp;connection.info.port=%info_port%&amp;site.url=%www%&amp;url.prefix=%www%&amp;client.reload.url=%www%/client&amp;client.fatal.error.url=%www%/client&amp;client.connection.failed.url=%www%/client&amp;sso.ticket=%sso_ticket%&amp;use.sso.ticket=1&amp;has.identity=1&amp;processlog.enabled=0&amp;account_id=0&amp;client.starting=Please+wait%21+Habbo+is+starting+up.&amp;processlog.enabled=0&amp;flash.client.origin=popup&amp;" /> 
                        <!--[if !IE]>--> 
                            <object style="height:100%; width:100%; position:absolute; top: 0px; left: 0px;" type="application/x-shockwave-flash" data="%habbo10_swf%" width="100%" height="100%"> 
                            <param name="movie" value="%habbo10_swf%" /> 
                                  <param name="base" value="%flash_base%" /> 
                            <param name="allowScriptAccess" value="always" /> 
                            <param name="menu" value="false"/> 
                            <param name="flashVars" value="external.variables.txt=http://5.162.164.43/gamedata/external_variables&amp;external.texts.txt=%external_flash_texts%&amp;client.allow.cross.domain=0&amp;client.notify.cross.domain=1&amp;flash.client.url=%flash_client_url%&amp;connection.info.host=%info_host%&amp;connection.info.port=%info_port%&amp;site.url=%www%&amp;url.prefix=%www%&amp;client.reload.url=%www%/client&amp;client.fatal.error.url=%www%/client&amp;client.connection.failed.url=%www%/client&amp;sso.ticket=%sso_ticket%&amp;use.sso.ticket=1&amp;has.identity=1&amp;processlog.enabled=0&amp;account_id=0&amp;client.starting=Please+wait%21+Habbo+is+starting+up.&amp;processlog.enabled=0&amp;flash.client.origin=popup&amp;" /> 
                        <!--<![endif]--> 
                        <div style="color: #FFFFFF; width: 400px; margin: 20px auto 0 auto"> 
                        <h2>Please install Adobe Flash Player.</h2> 
                                <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://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" /></a></p> 
                        </div> 
                        <!--[if !IE]>--> 
                            </object>
                        <!--<![endif]-->
                        </object>
                    </object> 
        </div>
    </center>
</body>
</html>

and here is the
vars
PHP:
char.conversion.mac=[128:219,130:226,131:196,132:227,133:201,134:160,135:224,136:246,137:228,139:220,140:206,145:212,146:213,147:210,148:211,149:165,150:208,151:209,152:247,153:170,155:221,156:207,159:217,161:193,165:180,167:164,168:172,170:187,171:199,172:194,173:208,174:168,176:161,180:171,182:166,183:225,184:252,186:188,187:200,191:192,192:203,193:231,194:229,195:204,196:128,197:129,198:174,199:130,200:233,201:131,202:230,203:232,204:237,205:234,206:235,207:236,209:132,210:241,211:238,212:239,213:205,214:133,216:175,217:244,218:242,219:243,220:134,223:167,224:136,225:135,226:137,227:139,228:138,229:140,230:190,231:141,232:143,233:142,234:144,235:145,236:147,237:146,238:148,239:149,241:150,242:152,243:151,244:153,246:154,247:214,248:191,249:157,250:156,251:158,252:159,255:216]
stats.tracking.javascript=google
productdata.load.url=http://5.162.164.43/gamedata/productdata
figure.partsets.xml=http://5.162.164.43/gamedata/figurepartconfig/partsets
struct.font.grey=[#font:"v", #fontSize:9,#lineHeight:10,#color:rgb("#666666"),#ilk:#struct,#fontStyle:[#italic]]
billboard.adwarning.left.url=AdWarningsUK/ad_warning_L.png
security.cast.load.url=http://5.162.164.43/gamedata/sec.cct?t=%token%
navigator.default.view=public
latencytest.interval=20000
external.figurepartlist.txt=http://5.162.164.43/gamedata/figuredata
image.library.url=http://5.162.164.43/c_images/
navigator.visible.public.root=3
permitted.name.chars=1234567890qwertyuiopasdfghjklzxcvbnm-=?!@:.,
latencytest.report.delta=100
struct.font.bold=[#font:"vb",#fontSize:9,#lineHeight:10,#color:rgb("#000000"),#ilk:#struct,#fontStyle:[#plain]]
figure.draworder.xml=http://5.162.164.43/gamedata/figurepartconfig/draworder
client.hotel_view.image=hotel_view_images_hq/hotelview_banzai.png
billboard.adwarning.right.url=AdWarningsUK/ad_warning_R.png
flash.dynamic.download.url=http://5.162.164.43/dcr/hof_furni/
image.library.catalogue.url=http://5.162.164.43/c_images/catalogue/
room.default.wall=201
purse.transactions.active=1
client.use.invites=1
struct.font.plain=[#font:"v", #fontSize:9,#lineHeight:10,#color:rgb("#000000"),#ilk:#struct,#fontStyle:[#plain]]
hotelview.banner.url=http://5.162.164.43//gamedata/banner
client.textdata.utf8=1
logout.concurrent.url=http://5.162.164.43/account/disconnected?reason=concurrentlogin&origin=%origin%
figure.animation.xml=http://5.162.164.43/gamedata/figurepartconfig/animation
dynamic.download.url=http://5.162.164.43/dcr/hof_furni/
language=en
client.allow.facebook.like=1
struct.font.italic=[#font:"v", #fontSize:9,#lineHeight:10,#color:rgb("#000000"),#ilk:#struct,#fontStyle:[#italic]]
external.figurepartlist.txt.secure=http://5.162.164.43/gamedata/figuredata
logout.url=http://5.162.164.43/account/disconnected?reason=%reason%&origin=%origin%
room.default.floor=111
navigator.public.default=3
tutorial.name.new_user_flow=NUF_mini
furnidata.load.url=http://5.162.164.43/gamedata/furnidata
flash.dynamic.download.name.template=%typeid%.swf
struct.font.tooltip=[#font:"v", #fontSize:9,#lineHeight:10,#color:rgb("#000000"),#ilk:#struct,#fontStyle:[#plain]]
struct.font.link=[#font:"v", #fontSize:9,#lineHeight:10,#color:rgb("#000000"),#ilk:#struct,#fontStyle:[#underline]]
figure.draworder.xml.secure=http://5.162.164.43/gamedata/figurepartconfig/draworder
fuse.project.id=habbo_us
flash.dynamic.download.samples.template=mp3/sound_machine_sample_%typeid%.mp3
navigator.private.default=4
client.window.title=Habbo Hotel
dynamic.download.name.template=hh_furni_xx_%typeid%.cct
avatareditor.allowclubtryout=1
private.image.library.url=http://5.162.164.43/c_images/
logout.disconnect.url=http://5.162.164.43/account/disconnected?reason=logout&origin=%origin%
latencytest.report.index=3
dynamic.download.samples.template=%typeid%.cct
navigator.visible.private.root=4
stats.tracking.javascript.template=\TCODE
link.format.friendlist.pref=http://5.162.164.43/profile/friendsmanagement?tab=6
cast.entry.10=hh_human_hats
cast.entry.11=hh_human_hair
group.badge.url=http://5.162.164.43/habbo-imaging/badge/%imagerdata%.gif
cast.entry.12=hh_human_shirt
interface.cmds.user.friend=["friend","trade","ignore","unignore","userpage"]
cast.entry.13=hh_human_leg
cast.entry.14=hh_human_shoe
cast.entry.15=hh_kiosk_room
cast.entry.17=hh_room_utils
cast.entry.16=hh_pets_common
cast.entry.19=hh_furni_classes
cast.entry.18=hh_room_ui
link.format.credits=http://5.162.164.43/credits
lagWarningLog.enabled=1
cfh.usercategories.withnoharasser=101,102,103,104,105,106
room.cast.12=hh_human_50_fx
interface.cmds.active.ctrl=["move","rotate"]
room.cast.11=hh_human_fx
avatar.editor.url=http://5.162.164.43/profile
room.cast.10=hh_roomdimmer
client.minimail.embed.enabled=false
link.format.pets=http://5.162.164.43/hotel/pets
room.cast.1=hh_soundmachine
room.cast.2=hh_human_acc_chest
room.cast.3=hh_human_acc_waist
link.format.club=http://5.162.164.43/credits/habboclub
club.subscription.disabled=1
cfh.usercategories.withharasser=101,102,103,104,105,106
room.cast.8=hh_human_50_acc_chest
link.format.user.search=http://5.162.164.43/me#habbo-search
room.cast.9=hh_human_50_acc_waist
moderatoractionlog.url=http://theallseeingeye.sulake.com/ase/habbo/us/housekeeping/extra/hobba/moderator_activity.action?searchCriteria.habboName=
link.format.habboclub=http://5.162.164.43/credits/habboclub
room.cast.4=hh_human_50_shirt
interstitial.interval=120000
room.cast.5=hh_human_50_leg
avatar.editor.character.update.url=http://5.162.164.43/profile/characterupdate
room.cast.6=hh_human_50_shoe
room.cast.7=hh_human_50_item
navigator.tagcolorlimit.yellow=500
interstitial.show.time=5000
roomadmin.url=http://theallseeingeye.sulake.com/ase/habbo/us/housekeeping/extra/hobba/roomadmin_search.action?searchParamType=3&searchParamValue=
avatar.editor.club.promo.image=http://5.162.164.43/c_images/catalogue/club_promo_uk.gif
link.format.mail.compose=javascript:alert('You can send an Minimail @ The Homepage')
room.rating.enable=1
interface.cmds.user.personal=["badge","dance","wave","hcdance","userpage"]
paalu.key.list=[#bal1:"Q", #bal2:"E", #push1:"A", #push2:"D", #move1:"N", #move2:"M", #stabilise:"SPACE"]
navigator.cache.duration=30
navigator.colorlimit.orange=80
room.cast.private=["hh_room_private", "hh_room_landscapes"]
link.format.userpage=javascript:alert('You can see someones Home @ The Homepage')
displayer.tag.expiration.time=600000
navigator.default_tab=official
client.news.embed.enabled=false
navigator.tagcolorlimit.orange=1000
client.full.refresh.period=5000
interface.cmds.user.owner=["take_rights","give_rights","kick","friend","trade","ignore","unignore","userpage"]
wordfilter.url=http://theallseeingeye.sulake.com/ase/habbo/us/housekeeping/extra/localization/wordfilter_select.action
text.crap.fixing=1
castload.retry.delay=20000
roomenterad.habblet.enabled=false
habboinfotool.url=http://theallseeingeye.sulake.com/ase/habbo/us/housekeeping/extra/hobba/scam_userinfo_new.action?searchParamName=username&database=Stats&searchParamValue=
rosetta.warning.page.url=http://5.162.164.43/client_popup/rosetta_info
link.format.tag.search=http://5.162.164.43//tag/search?tag=%tag%
navigator.always_open_after_login=0
interstitial.enabled=true
pixels.enabled=true
interface.cmds.item.owner=["pick"]
cast.entry.42=hh_friend_list
interface.cmds.photo.owner=["pick","delete"]
cast.entry.41=hh_human_50_body
room.cast.small.1=hh_pets_50
cast.entry.44=hh_pets
interface.cmds.active.owner=["move","rotate","pick"]
cast.entry.43=hh_instant_messenger
cast.entry.45=hh_guide
embed.showInRoomInfo=false
client.fatal.error.url=http://5.162.164.43/client_error
cast.entry.40=hh_human_50_acc_head
swimjump.key.list=[#run1:"A", #run2:"D", #dive1:"W", #dive2:"E", #dive3:"A", #dive4:"S", #dive5:"D", #dive6:"Z", #dive7:"X", #jump:"SPACE"]
cast.entry.9=hh_human_item
cast.entry.8=hh_human_face
cast.entry.7=hh_human_body
client.allow.external.links=1
cast.entry.6=hh_human
cast.entry.5=hh_patch_uk
cast.entry.4=hh_interface
cast.entry.3=hh_shared
cast.entry.2=hh_entry_base
cast.entry.1=hh_entry_us
client.credits.embed.enabled=false
avatar.editor.trial.promo=0
text.render.compatibility.mode=2
moderator.cmds=[":alert x",":ban x",":kick x",":superban x",":shutup x",":unmute x",":transfer x",":softkick x"]
cast.entry.38=hh_human_50_acc_eye
cast.entry.39=hh_human_50_acc_face
cast.entry.37=hh_human_50_hair
cast.entry.36=hh_human_50_hats
cast.entry.35=hh_human_50_face
avatar.editor.club.promo=0
cast.entry.34=hh_human_acc_head
cast.entry.33=hh_human_acc_face
cast.entry.32=hh_human_acc_eye
cast.entry.31=hh_entry_init
cast.entry.30=hh_badges
navigator.colorlimit.yellow=50
interstitial.max.displays=5
client.flood.timeout=300000
client.version.id=401
navigator.tagcolorlimit.red=2000
link.format.collectibles=http://5.162.164.43/credits/collectibles
cast.entry.27=hh_dynamic_downloader
cast.entry.28=hh_recycler
cast.entry.29=hh_poll
cast.entry.24=hh_cat_new
cast.entry.23=hh_navigator
cast.entry.26=hh_buffer
cast.entry.25=hh_cat_gfx_all
cast.entry.20=hh_room
cast.entry.22=hh_photo
infostand.report.show=1
cast.entry.21=hh_club
subscription.reminder.when.days.left=5
interface.cmds.user.ctrl=["kick","friend","trade","ignore","unignore","userpage"]
navigator.colorlimit.red=92
interface.cmds.photo.ctrl=[]
link.format.mail.inbox=javascript:alert('You can see your Minimail Inbox @ The Homepage')
interface.cmds.item.ctrl=[]
room.recommendations=1


can u help my fix that??

You must be registered for see images attach


here is the photo
 

Users who are viewing this thread

Top