[FIXED] [PlusEmu/Silverware] Client Reload

lak3y

New Member
Jun 8, 2014
10
0
Hello,
I am currently running PlusEmu Emulator and whenever I go to the client, it successfully loads, shows a black screen, and reloads, and does it over and over. I have used Web Developer tools, nothing is missing, and the Emulator's console does not output anything.

Does anybody know how to fix this issue?
 

13rad

King
Sep 15, 2013
156
36
Hello,
I am currently running PlusEmu Emulator and whenever I go to the client, it successfully loads, shows a black screen, and reloads, and does it over and over. I have used Web Developer tools, nothing is missing, and the Emulator's console does not output anything.

Does anybody know how to fix this issue?
If its the old ui go into external variables and change the banner link to urs.
If you are using the new ui add this to your client.php
Code:
"hotelview.banner.url" : "http://yoururl/game/rs4.php"
 

lak3y

New Member
Jun 8, 2014
10
0
Is it Revision 2? Did you even put the hotel.vis.url thingy on the client.php?
I don't know what revision it is, from the emulator it says Plus Emulator <Build 3.4.2.2>... and what hotel.vis.url? The hotelview banner url?
If its the old ui go into external variables and change the banner link to urs.
If you are using the new ui add this to your client.php
Code:
"hotelview.banner.url" : "http://yoururl/game/rs4.php"
It's already been added, in the client & external variables also and the rs4.php seems to be working...

I have also checked the Web Developer tools, nothing is missing.
 
Last edited:

lak3y

New Member
Jun 8, 2014
10
0
I decided to follow a tutorial that can be found . Detailed, and followed every step. But when I get to the client, it shows the hotel view and then does the same problem I'm having again (reloads and reloads). I have checked everything, the rs4.php, the SWFs, I even used a and it seems to be open. But for some reason, I go to the client and see the hotel view (christmas) and then it suddenly reloads again and again. .

config.ini:
Code:
## uberEmulator System Configuration File
## Must be edited for the server to work

## MySQL Configuration
db.hostname=localhost
db.port=3306
db.username=root
db.password=removed
db.name=r63b

## MySQL pooling setup (controls amount of connections)
db.pool.minsize=0
db.pool.maxsize=500

## Game TCP/IP Configuration
game.tcp.bindip=removed
game.tcp.port=30000
game.tcp.conlimit=11000
game.tcp.conperip=100
game.tcp.enablenagles=true

## MUS TCP/IP Configuration
mus.tcp.bindip=127.0.0.1
mus.tcp.port=30001
mus.tcp.allowedaddr=127.0.0.1

## Client configuration
client.ping.enabled=1
client.ping.interval=20000
client.maxrequests=300

client.php (i checked to see if connection.info.host is correct and it is):
Code:
<!DOCTYPE html>
<html lang="en">
    <head>
        <meta http-equiv="content-type" content="text/html; charset=utf-8">
        <title>Client</title>
     
        <link rel="stylesheet" href="http://removed/app/tpl/skins/HabboExtreme/styles/client.css" type="text/css">
     
        <script type="text/javascript" src="http://removed/app/tpl/skins/HabboExtreme/js/swfobject.js"></script>
        <script type="text/javascript">
            var BaseUrl = "http://removed/game";
            var flashvars =
            {
                "client.starting" : "Please wait, we're loading",
                "hotelview.banner.url" : "http://removed/game/rs4.php",
                "client.allow.cross.domain" : "1",
                "client.notify.cross.domain" : "0",
                "connection.info.host" : "removed",
                "connection.info.port" : "30000",
                "site.url" : "http://removed",
                "url.prefix" : "http://removed",
                "client.reload.url" : "http://removed/client",
                "client.fatal.error.url" : "http://removed/me",
                "client.connection.failed.url" : "http://removed/me",
                "external.variables.txt" : "http://removed/game/external_variables.txt",
                "external.texts.txt" : "http://removed/game/external_flash_texts.txt",
                "productdata.load.url" : "http://removed/game/productdata.txt",
                "furnidata.load.url" : "http://removed/game/furnidata_xml.xml",
                "use.sso.ticket" : "1",
                "sso.ticket" : "RevCMS-352/3d223c59525eff7f325cc6863c5e4ce86",
                "processlog.enabled" : "0",
                "flash.client.url" : BaseUrl,
                "flash.client.origin" : "popup"
            };
            var params =
            {
                "base" : BaseUrl + "/",
                "allowScriptAccess" : "always",
                "menu" : "false"             
            };
            swfobject.embedSWF(BaseUrl + "/Habbo.swf", "client", "100%", "100%", "10.0.0", "http://removed/game/expressInstall.swf", flashvars, params, null);
        </script>
    </head>
 
    <body>
 
        <div id="client"></div>
 
    </body>
</html>
Please help!
 

lak3y

New Member
Jun 8, 2014
10
0

Users who are viewing this thread

Top