Hi again guys!
So as i'm learning about the php coding and now i got some trouble. When using PlusEMU with plus database everything is working fine. I'm using this code on the PlusEMU.
But on the habboon emulator i'm using this code:
And that is not working. The difference i see is that it's a rcon Configuration on the PlusEMU but MUS configuration on habboon. Anyways, how do i work around this glitch? My habboon database and emulator is from habbofiles.com
So as i'm learning about the php coding and now i got some trouble. When using PlusEMU with plus database everything is working fine. I'm using this code on the PlusEMU.
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=mangos
db.name=hotel
## MySQL pooling setup (controls amount of connections)
db.pool.minsize=10
db.pool.maxsize=250
## Game TCP/IP Configuration
game.tcp.bindip=127.0.0.1
game.tcp.port=30000
game.tcp.conlimit=100000
game.tcp.conperip=5
game.tcp.enablenagles=true
## RCON TCP/IP Configuration
rcon.tcp.bindip=127.0.0.1
rcon.tcp.port=30001
rcon.tcp.allowedaddr=localhost;127.0.0.1
## Client configuration
client.ping.enabled=1
client.ping.interval=20000
client.maxrequests=300
But on the habboon emulator i'm using this code:
Code:
## uberEmulator 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=mangos
db.name=habboon
## MySQL pooling setup (controls amount of connections)
db.pool.minsize=10
db.pool.maxsize=250
## Game TCP/IP Configuration
game.tcp.bindip=127.0.0.1
game.tcp.port=30000
game.tcp.conlimit=100000
game.tcp.conperip=5
game.tcp.enablenagles=true
## MUS TCP/IP Configuration
mus.tcp.bindip=127.0.0.1
mus.tcp.port=30001
mus.tcp.allowedaddr=localhost;127.0.0.1
## Client configuration
client.ping.enabled=1
client.ping.interval=20000
client.maxrequests=300