Using GTE
- No connections shown or dropped
- Where It Shows (game.tcp.bindip=0.0.0.0) I also used My VPS IP, both allow the EMU to start, but still can't connect to client
- Where It Shows (db.hostname=localhost) I also used 127.0.0.1, both allow the EMU to start, but still can't connect to client
EMU Config:
Client:
I've changed out the Web Build, I opened all 4 ports used, tried every SWF and client. Any suggestions help!
- No connections shown or dropped
- Where It Shows (game.tcp.bindip=0.0.0.0) I also used My VPS IP, both allow the EMU to start, but still can't connect to client
- Where It Shows (db.hostname=localhost) I also used 127.0.0.1, both allow the EMU to start, but still can't connect to client
EMU Config:
Code:
## MySQL Configuration
db.hostname=localhost
db.port=3306
db.username=root
db.password=MY PASSWORD
db.name=DB NAME
## MySQL pooling setup (controls amount of connections)
db.pool.minsize=5
db.pool.maxsize=55
## Game TCP/IP Configuration
game.tcp.bindip=0.0.0.0
game.tcp.port=30000
game.tcp.conlimit=100
game.tcp.proxyip=0.0.0.0
## Client configuration
client.ping.enabled=1
client.ping.interval=30000
## MUS TCP/IP Configuration
mus.tcp.bindip=0.0.0.0
mus.tcp.port=30001
mus.tcp.allowedaddr=0.0.0.0
## Console Configuration
emu.messages.connections=1
emu.messages.roommgr=1
## Automatic shutdown (DONT CHANGE VALUES IF YOU DONT WANT ENABLE THIS)
shutdown-server=
shutdown-server-player-limit=0
shutdown-warning-alert=!!!Hotel shutdown!!!
## Automatic update
gte.update.noticy.disable=0
gte.update.autoupdate=0
## Anti Advertising Configuration ###
anti.ads.enable=1
## The following configuration defines the last rank that will have anti advertisement enabled
## ranks above this integer will be able to post links freely
anti.ads.rank=1
## Message that is displayed after ad preventation
anti.ads.msg=Advertising will lead you to be banned
## Some ad (alert) shit to client
ads.disable=0
ads.allowrdonlyrandomads=1
debug=0
Client:
Code:
<!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/style/client.css" type="text/css">
<script type="text/javascript" src="{url}/app/tpl/skins/Habbo/js/swfobject.js"></script>
<script type="text/javascript">
var BaseUrl = "{swf_folder}";
var flashvars =
{
"client.starting" : "Please wait, the hotel is loading",
"client.allow.cross.domain" : "1",
"client.notify.cross.domain" : "0",
"connection.info.host" : "{server_ip}",
"connection.info.port" : "{server_port}",
"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" : "{external_vars}",
"external.texts.txt" : "{external_texts}",
"productdata.load.url" : "{product_data}",
"furnidata.load.url" : "{furni_data}",
"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", "{swf_folder}/expressInstall.swf", flashvars, params, null);
</script>
</head>
<body>
<div id="client"></div>
</body>
</html>
I've changed out the Web Build, I opened all 4 ports used, tried every SWF and client. Any suggestions help!