I don't think your client is connecting to your emulator so check your ports are 3000 & 30001
My firewall is off?Have you opened the ports your emulator runs off?
My firewall is off?
I even added ports to get allowed through firewall.
I haven't restarted vps..
Send your client.php & config in your emulator
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>Pixable - Client</title>
<link rel="stylesheet" href="{url}/app/tpl/skins/Habbo/styles/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 {username}, Pixable is Loading!",
"client.allow.cross.domain" : "1",
"client.notify.cross.domain" : "0",
"connection.info.host" : "SERVER-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" : "{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>
## BcStorm - Leons Edition
## Must be edited for the server to work
## MySQL Configuration
db.hostname=localhost
db.port=3306
db.username=root
db.password=PASS
db.name=DB
## MySQL pooling setup (controls amount of connections)
db.pool.minsize=1
db.pool.maxsize=100
## Game TCP/IP Configuration
game.tcp.bindip=SERVER-IP
game.tcp.port=300
game.tcp.conlimit=11000
game.tcp.conperip=100
game.tcp.enablenagles=False
## MUS TCP/IP Configuration
mus.tcp.bindip=SERVER-IP
mus.tcp.port=301
mus.tcp.allowedaddr=localhost;127.0.0.1
## Stream Message;
hotel.stream.message=
## License
internal.license=iJaay
##Hotel Link
hotel.link=http://localhost
## Hotel Link; To Stream Images
guilds.link=http://habbo.nl/habbo-imaging/badge/
stream.link=http://habbo.nl/habbo-imaging/head/
## Client configuration
client.ping.enabled=1
client.ping.interval=200000
client.maxrequests=500
client.maxpossiblefriends=700
client.maxitemsininventary=0
#IRC
irc.enabled=false
irc.server=irc.website-service.org
irc.port=6667
irc.user=USER CSharpBot 8 * :I'm a C# irc bot
irc.nick=[VG]Mordi
irc.channel=#habbovg_servermod
irc.password=rofl123
group.enabled=true
auth.ssodisabled=false
#Says wether the users should receive pixels each X seconds, how much and when (When in seconds)
game.pixel.enabled=true
game.pixel.amount=100
game.pixel.time=600
#Says wether the users should receive pixels each X seconds, how much and when (When in seconds)
game.credits.enabled=true
game.credits.amount=1000
game.credits.time=600
game.login.credits.receiveamount=100
game.login.pixel.receiveamount=100
#Daily Credits
daily.credits.enable=true
daily.credits.amount=3000
#Threading Main Loops.
#Esta opcion separa del MainGameLoop cada tarea a ejecutar en un proceso distinto.
SeparatedTasksInMainLoops.enabled=true
#Threading GameClientManager Loops.
#Esta opcion separa del GameClientManager.OnCycle las tareas de forma lógica para aumentar rendimiento.
SeparatedTasksInGameClientManager.enabled=false
#Baneo por spam
#Esta opción banea a los usuarios tras sucesivos intentos de flood.
spambans.enabled=true
spambans.limit=5
#Send users to their homeroom
ForwardToHomeRoomEnabled=false
Client:
Config:PHP:<!DOCTYPE html> <html lang="en"> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8"> <title>Pixable - Client</title> <link rel="stylesheet" href="{url}/app/tpl/skins/Habbo/styles/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 {username}, Pixable is Loading!", "client.allow.cross.domain" : "1", "client.notify.cross.domain" : "0", "connection.info.host" : "SERVER-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" : "{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>
Code:## BcStorm - Leons Edition ## Must be edited for the server to work ## MySQL Configuration db.hostname=localhost db.port=3306 db.username=root db.password=PASS db.name=DB ## MySQL pooling setup (controls amount of connections) db.pool.minsize=1 db.pool.maxsize=100 ## Game TCP/IP Configuration game.tcp.bindip=SERVER-IP game.tcp.port=300 game.tcp.conlimit=11000 game.tcp.conperip=100 game.tcp.enablenagles=False ## MUS TCP/IP Configuration mus.tcp.bindip=SERVER-IP mus.tcp.port=301 mus.tcp.allowedaddr=localhost;127.0.0.1 ## Stream Message; hotel.stream.message= ## License internal.license=iJaay ##Hotel Link hotel.link=http://localhost ## Hotel Link; To Stream Images guilds.link=http://habbo.nl/habbo-imaging/badge/ stream.link=http://habbo.nl/habbo-imaging/head/ ## Client configuration client.ping.enabled=1 client.ping.interval=200000 client.maxrequests=500 client.maxpossiblefriends=700 client.maxitemsininventary=0 #IRC irc.enabled=false irc.server=irc.website-service.org irc.port=6667 irc.user=USER CSharpBot 8 * :I'm a C# irc bot irc.nick=[VG]Mordi irc.channel=#habbovg_servermod irc.password=rofl123 group.enabled=true auth.ssodisabled=false #Says wether the users should receive pixels each X seconds, how much and when (When in seconds) game.pixel.enabled=true game.pixel.amount=100 game.pixel.time=600 #Says wether the users should receive pixels each X seconds, how much and when (When in seconds) game.credits.enabled=true game.credits.amount=1000 game.credits.time=600 game.login.credits.receiveamount=100 game.login.pixel.receiveamount=100 #Daily Credits daily.credits.enable=true daily.credits.amount=3000 #Threading Main Loops. #Esta opcion separa del MainGameLoop cada tarea a ejecutar en un proceso distinto. SeparatedTasksInMainLoops.enabled=true #Threading GameClientManager Loops. #Esta opcion separa del GameClientManager.OnCycle las tareas de forma lógica para aumentar rendimiento. SeparatedTasksInGameClientManager.enabled=false #Baneo por spam #Esta opción banea a los usuarios tras sucesivos intentos de flood. spambans.enabled=true spambans.limit=5 #Send users to their homeroom ForwardToHomeRoomEnabled=false
## BcStorm - Leons Edition
## Must be edited for the server to work
## MySQL Configuration
db.hostname=localhost
db.port=3306
db.username=root
db.password=PASS
db.name=DB
## MySQL pooling setup (controls amount of connections)
db.pool.minsize=1
db.pool.maxsize=100
## Game TCP/IP Configuration
game.tcp.bindip=SERVER-IP
game.tcp.port=30000
game.tcp.conlimit=11000
game.tcp.conperip=100
game.tcp.enablenagles=False
## MUS TCP/IP Configuration
mus.tcp.bindip=SERVER-IP
mus.tcp.port=30001
mus.tcp.allowedaddr=localhost;127.0.0.1
## Stream Message;
hotel.stream.message=
## License
internal.license=iJaay
##Hotel Link
hotel.link=You must be registered for see links
## Hotel Link; To Stream Images
guilds.link=You must be registered for see links
stream.link=You must be registered for see links
## Client configuration
client.ping.enabled=1
client.ping.interval=200000
client.maxrequests=500
client.maxpossiblefriends=700
client.maxitemsininventary=0
#IRC
irc.enabled=false
irc.server=irc.website-service.org
irc.port=6667
irc.user=USER CSharpBot 8 * :I'm a C# irc bot
irc.nick=[VG]Mordi
irc.channel=#habbovg_servermod
irc.password=rofl123
group.enabled=true
auth.ssodisabled=false
#Says wether the users should receive pixels each X seconds, how much and when (When in seconds)
game.pixel.enabled=true
game.pixel.amount=100
game.pixel.time=600
#Says wether the users should receive pixels each X seconds, how much and when (When in seconds)
game.credits.enabled=true
game.credits.amount=1000
game.credits.time=600
game.login.credits.receiveamount=100
game.login.pixel.receiveamount=100
#Daily Credits
daily.credits.enable=true
daily.credits.amount=3000
#Threading Main Loops.
#Esta opcion separa del MainGameLoop cada tarea a ejecutar en un proceso distinto.
SeparatedTasksInMainLoops.enabled=true
#Threading GameClientManager Loops.
#Esta opcion separa del GameClientManager.OnCycle las tareas de forma lógica para aumentar rendimiento.
SeparatedTasksInGameClientManager.enabled=false
#Baneo por spam
#Esta opción banea a los usuarios tras sucesivos intentos de flood.
spambans.enabled=true
spambans.limit=5
#Send users to their homeroom
ForwardToHomeRoomEnabled=false
If it helped please like and follow ;3Thanks. I'll test now.
I had the blackscreen error too, i had to completely re-setup my revcmsErm.. No. It now says
Connection Recieved.. Lets do this!!
And won't work. Just a black screen.