Plus EMU Errors.

Central

Imagination is more important than knowledge.
Feb 22, 2015
709
107
Problem: Client is stuck on 76% with no errors on developer console nor Plus EMU Logs.
I'm using the up to date Plus Emulator 2017 version, and still cannot get it to work, I've tried different SWF Revisions such as 2016 and still doesn't work. All my SWFS are linked correctly and stuff like that, and all ports are open, and I've tested those ports and it is actually open. When I load the client at 76% it says 1 user online on the emulator, do you guys know the problem?

Client File
PHP:
<!DOCTYPE html>
<html lang="en">
    <head>
        <meta http-equiv="content-type" content="text/html; charset=utf-8">
        <title>{hotelName} - Client</title>
        
        <link rel="stylesheet" href="{url}/app/tpl/skins/Habbo/styles/client.css" type="text/css">

        <script type="text/javascript" src="//code.jquery.com/jquery-2.0.2.js"></script>
        <script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.1.1/js/bootstrap.min.js"></script>
        <link href="https://bootswatch.com/paper/bootstrap.css" rel="stylesheet" type="text/css">
        <script type="text/javascript" src="{url}/app/tpl/skins/Habbo/js/swfobject.js"></script>
        <script type="text/javascript">
            var BaseUrl = "http://playvox.uk/gordon";
            var flashvars =
            {
                "client.starting" : "Please wait, {hotelname} loading",
                "hotelview.banner.url" : "{url}/swf/gordon/rs4.php",
                "client.allow.cross.domain" : "1",
                "client.notify.cross.domain" : "0",
                "connection.info.host" : "vPS IP",
                "connection.info.port" : "30000",
                "site.url" : "{url}",
                "url.prefix" : "{url}",
                "client.reload.url" : "{url}/client",
                "client.fatal.error.url" : "{url}/me",
                "client.connection.failed.url" : "{url}/me",
                "external.variables.txt" : "{url}/swf/gamedata/external_variables.txt",
                "external.texts.txt" : "{url}/swf/gamedata/external_flash_texts.txt",
                "productdata.load.url" : "{url}/swf/gamedata/productdata.txt",
                "furnidata.load.url" : "{url}/swf/gamedata/furnidata.xml",
                "use.sso.ticket" : "1",
                "sso.ticket" : "{sso}",
                "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", "{url}/game/expressInstall.swf", flashvars, params, null);
        </script>
    </head>
    
    <body>
    
        <div id="client"></div>
        <div style="margin-bottom: 0px; position: fixed; z-index: 10;" class="alert alert-dismissible alert-primary">
<a target="_blank" max-height: 5px; width: 88px; margin-top: 4px;" class="navbar-brand" href="/me"></a>
<a onclick="toggleFullScreen()" style="margin-top: 7px; margin-left: 15px;" class="btn btn-success">FullScreen</a>

</div>
<script>
function toggleFullScreen() {
if ((document.fullScreenElement && document.fullScreenElement !== null) ||
(!document.mozFullScreen && !document.webkitIsFullScreen)) {
if (document.documentElement.requestFullScreen) {
document.documentElement.requestFullScreen();
} else if (document.documentElement.mozRequestFullScreen) {
document.documentElement.mozRequestFullScreen();
} else if (document.documentElement.webkitRequestFullScreen) {
document.documentElement.webkitRequestFullScreen(Element.ALLOW_KEYBOARD_INPUT);
}
} else {
if (document.cancelFullScreen) {
document.cancelFullScreen();
} else if (document.mozCancelFullScreen) {
document.mozCancelFullScreen();
} else if (document.webkitCancelFullScreen) {
document.webkitCancelFullScreen();
}
}
}
</script>
    
    </body>
</html>

Emulator Config
Code:
## PlusEMU System Configuration File
## Must be edited for the server to work

## MySQL Configuration
db.hostname=127.0.0.1
db.port=3306
db.username=root
db.password=MySQL Password
db.name=Database Name

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

## Game TCP/IP Configuration
game.tcp.bindip=VPS IP
game.tcp.port=30000
game.tcp.conlimit=100000
game.tcp.conperip=5
game.tcp.enablenagles=true

## RCON TCP/IP Configuration
rcon.tcp.bindip=0.0.0.0
rcon.tcp.port=30001
rcon.tcp.allowedaddr=localhost

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

JayC

Always Learning
Aug 8, 2013
5,493
1,398
There is literally, 300 posts about this.. Your error is going to be no different than probably 1/3 of them. GO LOOK FOR YOURSELF - Or don't own a hotel.
 
And actually your swfs are not linked correctly
 

Users who are viewing this thread

Top