Problema risolto Caricamento al 76%

Stato
Discussione chiusa ad ulteriori risposte.

Viperhabbo

Nuovo utente
Autore del topic
17 Aprile 2020
24
13
Miglior risposta
1
Come da titolo, il caricamento del client mi resta bloccato al 76%
Vorrei usarlo per alcuni test che voglio fare, senza far entrare nessuno. Mi interessa solo per me
Client.php
"<?php staffCheck(); Game::sso('client'); //Game::homeRoom(); ESTO LO DESACTIVO PARA QUE VAYA A LOS TERRITORIOS. ?> <html> </body> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title><?= User::userData('username')?> <?= $config['hotelName'] ?></title> <link rel="shortcut icon" type="image/x-icon" href="<?php echo H. $config['skin']; ?>/favicon.png"/> <script src="<?php echo H. $config['skin']; ?>/assets/client/jquery-latest.js" type="text/javascript"></script> <script src="<?php echo H. $config['skin']; ?>/assets/client/jquery-ui.js" type="text/javascript"></script> <script src="<?php echo H. $config['skin']; ?>/assets/client/flashclient.js"></script> <script src="<?php echo H. $config['skin']; ?>/assets/client/flash_detect_min.js"></script> <script src="<?php echo H. $config['skin']; ?>/assets/client/client.js" type="text/javascript"></script> </head> <body> <div class="client__buttons" style="left: 50px;"> <button ngsf-toggle-fullscreen="" class="client__fullscreen" onclick="resizeClient()"><b><i class="fa fa-snowflake-o " aria-hidden="true"></i> <?= $lang["descongelar"] ?></b></button> </div> <div id="client-ui" onclick="resizeClient()" ngsf-toggle-fullscreen=""> <div id="client" style='position:absolute; left:0; right:0; top:0; bottom:0; overflow:hidden; height:100%; width:100%;'></div> </div> <script> var Client = new SWFObject("<?= $hotel['swfFolderSwf'] ?>", "client", "100%", "100%", "10.0.0"); Client.addVariable("client.allow.cross.domain", "0"); Client.addVariable("client.notify.cross.domain", "1"); Client.addVariable("connection.info.host", "<?= $hotel['emuHost'] ?>"); Client.addVariable("connection.info.port", "<?= $hotel['emuPort'] ?>"); Client.addVariable("site.url", "<?= $config['hotelUrl'] ?>"); Client.addVariable("url.prefix", "<?= $config['hotelUrl'] ?>"); Client.addVariable("client.reload.url", "<?= $config['hotelUrl'] ?>/me"); Client.addVariable("client.fatal.error.url", "<?= $config['hotelUrl'] ?>/me"); Client.addVariable("client.connection.failed.url", "<?= $config['hotelUrl'] ?>/me"); Client.addVariable("external.override.texts.txt", "<?= $hotel['external_Texts_Override'] ?>"); Client.addVariable("external.override.variables.txt", "<?= $hotel['external_Variables_Override'] ?>"); Client.addVariable("external.variables.txt", "<?= $hotel['external_Variables'] ?>"); Client.addVariable("external.texts.txt", "<?= $hotel['external_Texts'] ?>"); Client.addVariable("external.figurepartlist.txt", "<?= $hotel['figuredata'] ?>"); Client.addVariable("flash.dynamic.avatar.download.configuration", "<?= $hotel['figuremap'] ?>"); Client.addVariable("productdata.load.url", "<?= $hotel['productdata'] ?>"); Client.addVariable("furnidata.load.url", "<?= $hotel['furnidata'] ?>"); Client.addVariable("use.sso.ticket", "1"); Client.addVariable("sso.ticket", "<?= User::userData('auth_ticket') ?>"); Client.addVariable("processlog.enabled", "0"); Client.addVariable("client.starting", "<?= $hotel['swftitle'] ?>"); Client.addVariable("flash.client.url", "<?= $hotel['swfFolder'] ?>/"); Client.addVariable("flash.client.origin", "popup"); Client.addVariable("nux.lobbies.enabled", "true"); Client.addVariable("country_code", "NL"); Client.addParam('base', '<?= $hotel['swfFolder'] ?>/'); Client.addParam('allowScriptAccess', 'always'); Client.addParam('menu', false); Client.addParam('wmode', "opaque"); Client.write('client'); FlashExternalInterface.signoutUrl = "<?= $config['hotelUrl'] ?>/logout"; </script> <script> //Usuário sem Adobe Flash Player if(!FlashDetect.installed){ window.location.href = "<?= $config['hotelUrl'] ?>/noflash"; } </script> </head> <script type="text/javascript"> 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> <script type="text/javascript"> function resizeClient(){ var theClient = document.getElementById('client'); var theWidth = theClient.clientWidth; theClient.style.width = "10px"; theClient.style.width = theWidth + "px"; } </script> <style> .client__buttons { left: 12px; position: absolute; top: -3px; z-index: 630; border-radius: 5px; } .client__buttons button { box-shadow: 0 3px 0 1px rgba(0,0,0,.3); background-color: #292929; border-color: #41403d; padding: 9px 2px; width: 200px; display: block; border-radius: 5px; float: left; padding-left: 6px; padding-right: 6px; line-height: 1.2; color: #b9b9b9; font-size: 12px; border-style: solid; margin-bottom: 4px; text-align: center; outline: none; } .client__buttons button:hover{ -webkit-animation-name:shakeit; -webkit-animation-duration:1s; -webkit-animation-timing-function:linear; -webkit-animation-iteration-count:infinite; animation-name:shakeit; animation-duration:1s; animation-timing-function:linear; animation-iteration-count:infinite;} @keyframes shakeit{0%{transform:rotate(0deg) translate(2px,1px);} 10%{transform:rotate(10deg) translate(1px,2px);} 20%{transform:rotate(-10deg) translate(3px,0px);} 30%{transform:rotate(0deg) translate(0px,-2px);} 40%{transform:rotate(-10deg) translate(-1px,1px);} 50%{transform:rotate(10deg) translate(1px,-2px);} 60%{transform:rotate(0deg) translate(3px,-1px);} 70%{transform:rotate(10deg) translate(-2px,-1px);} 80%{transform:rotate(-10deg) translate(1px,1px);} 90%{transform:rotate(0deg) translate(-2px,-2px);} 100%{transform:rotate(10deg) translate(-1px,2px);} }</style>"]

Varibles
activity.point.display.enabled=true
ads.domain=
akamai.debugging.enabled=false
app.review.triggers=purchase,respect
app.review.url.android=
app.review.url.ios=itms-apps://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&id=794866182
avatar.editor.character.update.url=
Perfavore, Entra oppure Registrati per vedere i Link!

avatar.editor.url=${url.prefix}/profile
avatar.expressions_menu.enabled=true
avatar.ignored.bubble.enabled=true
avatar.jumping.enabled=false
avatar.signs.enabled=true
avatar.sitting.enabled=true
avatar.widget.enabled=true
avatareditor.allowclubtryout=1
avatareditor.promohabbos=
Perfavore, Entra oppure Registrati per vedere i Link!

avatareditor.show.clubitems.dimmed=true
avatareditor.show.clubitems.first=true
avatareditor.support.sellablefurni=true
badge.display.excluded.badgeCodes=ADM,AMB,BAW01,BAW02,BAW03,BAW04
badge.image.path=
Perfavore, Entra oppure Registrati per vedere i Link!

billboard.adwarning.left.url=AdWarningsUK/ad_warning_L.png
billboard.adwarning.right.url=AdWarningsUK/ad_warning_R.png
builders.club.enabled=false
builders.club.furniture.placement.group.room.enabled=true
builders_club.buy_membership_page=/credits/client/mobile#cell_phone
builders_club.try_page=set_extras
bundle.dynamic.discounts.enabled=true
bundle.dynamic.maximum.purchase.size=100
cache.revision=2014-10-29 11:38:06
camera.available.effects=hearts_hardlight_02,stars_hardlight_02,security_hardlight,alien_hrd,bluemood_mpl,coffee_mpl,drops_mpl,glitter_hrd, misty_hrd,pinky_nrm,rusty_mpl,shiny_hrd,toxic_hrd, shadow_multiply_02,texture_overlay,frame_gold,frame_gray_4,frame_black_2,frame_wood_2,finger_nrm, color_1,color_2,color_3,color_4,dark_sepia,night_vision,x_ray,increase_saturation, decrease_saturation,hypersaturated,increase_contrast,decr_conrast,hue_bright_sat,Yellow,green_2
camera.competition.enabled=false
camera.effects.enabled=true
camera.enabled.android=1
camera.enabled.desktop=1
camera.enabled.ios=1
camera.enabled=true
camera.launch.ui.position=bottom-icons
camera.photo.publishing.enabled=false
catalog.deep.hierarchy=true
catalog.direct.sms.buy.allowed=false
catalog.direct.sms.buy.length.days=5
catalog.direct.vip.buy.enabled=true
catalog.direct.vip.buy.promo=1
catalog.drag_and_drop=true
catalog.furniture.animation=true
catalog.gallery.lang=en
catalog.large=true
catalog.multiple.purchase.enabled=true
catalog.new.additions.page.open.disabled=false
catalog.new_direct_vip_buy_window=true
catalog.newgiftflow.enabled=true
catalog.pets.adjust_old=false
catalog.pets.enabled=true
catalog.purchase.gift.singleclick.confirmation=true
catalog.purchase.gift.singleclick=true
catalog.purchase.gift_wrapping.default_box_index=0
catalog.restricted_nodes=avatar,perm_costumes,perm_effects,bots,erasmus,erasmus1,erasmus2,erasmus3,spaces_grid,rentables_spaces,guild_frontpage,halloween14_lovelock,hot_furni
catalog.show.purse=false
catalog.vip.benefits.enabled=true
catalog.vip.buy.promo=1,3
catalog.vip.gift.promo=1,3
cfh.faq.url=
Perfavore, Entra oppure Registrati per vedere i Link!

cfh.topic_id.to.sanction_type_id=0=1,1=1,2=1,5=1,3=6,36=1,31=6,6=1,8=1,9=6,10=6,11=6,32=1,33=6,12=1,13=106,34=1,14=1,15=1,16=102,17=1,18=6,19=1,20=1,21=105,22=1,23=1,29=6,35=6
chat.history.disabled=false
chat.muting.enabled=false
chatreviewreporterfeedbackctrl.enabled=true
citizenship.vip.quest.promotion.enabled=true
citizenship.vip.tutorial.quest.campaign.name=VIPTutorials
client.allow.external.links=1
client.allow.facebook.like=1
client.connection.failed.url=${url.prefix}/client_connection_failed
client.fatal.error.url=${url.prefix}/flash_client_error
client.hotel_view.image=
client.minimail.embed.enabled=true
client.news.embed.enabled=true
client.reload.url=${url.prefix}/account/reauthenticate?page=/flash_client
client.toolbar.static.enabled=true
extra_data_service_url=
Perfavore, Entra oppure Registrati per vedere i Link!

club.membership.extend.basic.promotion.enabled=true
club.membership.extend.vip.promotion.enabled=true
club.subscription.disabled=1
club_center.enabled=true
competition.africaDesert.catalogPage=set_desert
competition.africaJungle.catalogPage=set_jungle
competition.africaSavannah.catalogPage=set_savannah
competition.catalogPage=set_desert
competition.currentlyActive=africaDesert
competition.habboween12.catalogPage=new_habboween
competition.majesty.catalogPage=habbolympix2012
competition.requiredFurnis=anc_hot_sands,anc_pyramid_block,anc_trophy_sstone,track12_mini_torch08-08
competition.requiredFurniture=xmasRoomComp,xmas12_fireplace,xmas12_pork,xmas12_pillar1
competition.starsRoomComp2.catalogPage=habbo_stars_furni
competition.timing=2013-03-07 10:00,steamRoomComp;2013-03-21 11:00,
competition.vipParties1.catalogPage=jetset
competition.vipParties2.catalogPage=jetset
competition.vipParties3.catalogPage=jetset
competition.xmasRoomComp.catalogPage=xmas_castles_2012
connection.info.host.no=game-no.habbo.com
connection.info.name.no=Norge
connection.info.port.no=30000,993
currencyiconstyle.big.101.combo=55
currencyiconstyle.big.101=55
currencyiconstyle.big.102.combo=40
currencyiconstyle.big.102=38
currencyiconstyle.big.103=44
currencyiconstyle.big.104.combo=48
currencyiconstyle.big.104=47
currencyiconstyle.big.105.combo=43
currencyiconstyle.big.105=41
currencyiconstyle.small.101=55
currencyiconstyle.small.102=10
currencyiconstyle.small.103=45
currencyiconstyle.small.104=46
currencyiconstyle.small.105=42
custom.chat.styles.enabled=true
daily.quest.campaign.prefix=horse_
daily.quest.room.network.id=4
diamonds.enabled=true
disable.crypto=false
disabled.custom.chat.styles=1,2,8,9,10,18,21,22,23,24,25,26,27,28,30,31,32,33,34,35
disclaimer.credit_spending.enabled=false
duckets.enabled=true
duckets.promo.enabled=false
duckets.upper_limit=650
dynamic.download.name.template=%revision%/hh_furni_xx_%typeid%.cct
dynamic.download.samples.template=%revision%/%typeid%.cct
dynamic.download.url=
Perfavore, Entra oppure Registrati per vedere i Link!

effects.in.avatar.editor=true
effects.reactivate.on.room.entry=true
email.verification.url=${url.prefix}/settings/email
embed.showInRoomInfo=true
eventinfo.enabled=true
external.figurepartlist.txt=
Perfavore, Entra oppure Registrati per vedere i Link!

external.texts.txt=
Perfavore, Entra oppure Registrati per vedere i Link!

extra_data_batches_enabled=true
feed.badge_decorations.album=Feed_Badges
feed.badge_decorations.decoration_id=001
flash.dynamic.avatar.download.configuration=${flash.client.url}figuremap.xml
flash.dynamic.avatar.download.name.template=%libname%.swf
flash.dynamic.avatar.download.url=${flash.client.url}
flash.dynamic.download.name.template=%typeid%.swf
flash.dynamic.download.samples.template=mp3/sound_machine_sample_%typeid%.mp3
flash.dynamic.download.url=
Perfavore, Entra oppure Registrati per vedere i Link!

flash.dynamic.icon.download.name.template=%typeid%%param%_icon.png
free.flow.chat.wide.collider.visualization.enabled=false
friend.furniture.enabled=true
friend_bar.helper.friend_finding.enabled=true
friend_list.persistent_message_status.enabled=true
friend_list.pocket_habbo_status.enabled=true
friendbar.notifications.enabled=true
friendbar.playSnowStorm.enabled=true
friendbar.playSnowStorm.friendsThreshold=1000
friendbar.requests.enabled=true
friendship.category.management.enabled=true
furnidata.load.url=
Perfavore, Entra oppure Registrati per vedere i Link!

furniture.context.menu.widget.enabled=true
game.center.default_game=basejump
game.center.enabled.forStaff=true
game.center.enabled=true
game.center.promoted_game=true
game_center.image.library.url=//habboo-a.akamaihd.net/gamecenter/
games.buy.x.games.enabledtrue
games.buy.x.games.video.enabled=false
games.filter.enabled=false
games.highscores.enabled=true
games.highscores.scrolling.enabled=true
games.tokens.enabled=false
games_icon_enabled=true
gpu.inanimate_furni=xmas14_palm,xmas14_sunbeams
groupforum.poll.period=900
guardians.enabled=true
guide.help.alpha.groupid=340826
guide.help.new.user.tour.popup.delay=66
guides.enabled=true
guidetool.handle.chat_reviews=true
guidetool.handle.help_requests=true
guidetool.handle.tour_requests=true
habbo.gaming.api.enabled=true
habbo_club_buy_disabled=true
habboinfotool.url=
Perfavore, Entra oppure Registrati per vedere i Link!

habbopages.url=
Perfavore, Entra oppure Registrati per vedere i Link!

habboway.enabled=true
habboway.url=
Perfavore, Entra oppure Registrati per vedere i Link!

handitem.drop.enabled=true
handitem.give.enabled=true
handitem.give.pet.enabled=false
hccenter.activity.enabled=true
help.habboway.page.count=8
hotel.teaser=
hotelview.banner.url=
Perfavore, Entra oppure Registrati per vedere i Link!

hover.name.enabled=false
identityTracking.enabled=true
identityinformationtool.url=
Perfavore, Entra oppure Registrati per vedere i Link!

image.library.badgepart.url=
Perfavore, Entra oppure Registrati per vedere i Link!

image.library.catalogue.url=
Perfavore, Entra oppure Registrati per vedere i Link!

image.library.playlist.url=
Perfavore, Entra oppure Registrati per vedere i Link!

image.library.questing.url=
Perfavore, Entra oppure Registrati per vedere i Link!

image.library.url.server=
Perfavore, Entra oppure Registrati per vedere i Link!

image.library.url.stickers=
Perfavore, Entra oppure Registrati per vedere i Link!

image.library.url=
Perfavore, Entra oppure Registrati per vedere i Link!

productdata.load.url=
Perfavore, Entra oppure Registrati per vedere i Link!
external.texts.txt=
Perfavore, Entra oppure Registrati per vedere i Link!
external.override.variables.txt=
Perfavore, Entra oppure Registrati per vedere i Link!
flash.client.url=
Perfavore, Entra oppure Registrati per vedere i Link!
furnidata.load.url=
Perfavore, Entra oppure Registrati per vedere i Link!
external.variables.txt=
Perfavore, Entra oppure Registrati per vedere i Link!
external.override.texts.txt=
Perfavore, Entra oppure Registrati per vedere i Link!
external.figurepartlist.txt=
Perfavore, Entra oppure Registrati per vedere i Link!
"]
productdata.load.url=
Perfavore, Entra oppure Registrati per vedere i Link!

private.image.library.url=
Perfavore, Entra oppure Registrati per vedere i Link!

config
## BiosEmulador Configuração System
## Creditos ao Thiago Araujo - DevBios

## MySQL Configuração
db.hostname=localhost
db.port=3306
db.username=root
db.password=
db.name=habos

## MySQL pooling setup (controla a quantidade de conexões)
db.pool.minsize=10
db.pool.maxsize=250

## Game TCP/IP Configuração
game.tcp.bindip=127.0.0.1
game.tcp.port=30000
game.tcp.conlimit=100000
game.tcp.conperip=2000
game.tcp.enablenagles=true

## MUS TCP/IP Configuração
mus.tcp.bindip=localhost
mus.tcp.port=30001
mus.tcp.allowedaddr=localhost

## Client Configuração
client.ping.enabled=1
client.ping.interval=20000
client.maxrequests=300

## Configuração do Nome do seu hotel
hotel.name=Habbz
license=Habbz Hotel
game.legacy.figure_mutant=1

##Configuração dos Quartos do BiosEmulador
Quartovip=65
Prisao=32

## Configurações para recompesa de tempo online no hotel dos servidores de SAO
# A "MensagemAoReceber" alerta o usuário ("Você recebeu X moedas, X duckets e X diamantes!"
MensagemAoReceber=true
Moedas=50
Duckets=100
Diamantes=0
#<< INTERVALO EM MINUTOS! >>
Intervalo=15

# Vip 1 By: Thiago Araujo
Moedasvip=200
Ducketsvip=200
Diamantesvip=0
# Vip 2 By: Thiago Araujo
Moedassvip=300
Ducketssvip=300
Diamantessvip=0
# Comando Premiar By: Thiago Araujo
Moedaspremiar=500
Ducketspremiar=500
Diamantespremiar=1
NiveltotalGames=200
CodEmblemaNivel=NV

# Rank Minimo de Staff By: Thiago Araujo
MineRankStaff=2

Uso questo pack: Release - Pack - HypeCMS [Bios Emulator]
 
Ciao, per capire che problema di swf esegui questi passaggi: selezione il link del client e premi f12 ricarica la pagina del client, vai su console e mandami uno screen (FAI CARICARE PRIMA TUTTO).
 
posta il config del cms
Cosa centra in config del cms?

Ciao, per capire che problema di swf esegui questi passaggi: selezione il link del client e premi f12 ricarica la pagina del client, vai su console e mandami uno screen (FAI CARICARE PRIMA TUTTO).
Scusa ma non ho capito.

E' normale che l'emu resti così?
d92b1736c5c6782d65d10fdbfa86b717.png
 
Non è normale che resti così l'emu, nel pack che stai utilizzando il client si configura dal config del cms se non erro
 
<?php

/* Connessione al database */
$db['host'] = 'localhost'; //Host
$db['port'] = '3306'; //Porta
$db['user'] = "root"; //Utente
$db['pass'] = ''; //Password
$db['db'] = "db"; // Database

/* Configurazione emulatore */
$config['hotelEmu'] = 'plusemu'; // plusemu

/* Founder dell'hotel */
$config['Autor'] = 'thaBeast'; // thaBeast

/* Configurazione client */
$hotel['emuHost'] = "127.0.0.1"; // Ip del server
$hotel['emuPort'] = "30000"; // Porta dell'emulatore
$hotel['staffCheckClient'] = true; // Attiva il pin per lo staff nel client [Per attivarlo scrivi = true, per disattivarlo scrivi = false]
$hotel['staffCheckClientMinimumRank'] = "4"; // Livello minimo per inserire il pin nel client
$hotel['homeRoom'] = '0'; // Stanza base per tutti gli utenti
$hotel['external_Variables'] = "
Perfavore, Entra oppure Registrati per vedere i Link!
";
$hotel['external_Variables_Override'] = "
Perfavore, Entra oppure Registrati per vedere i Link!
";
$hotel['external_Texts'] = "
Perfavore, Entra oppure Registrati per vedere i Link!
";
$hotel['external_Texts_Override'] = "
Perfavore, Entra oppure Registrati per vedere i Link!
";
$hotel['productdata'] = "
Perfavore, Entra oppure Registrati per vedere i Link!
";
$hotel['furnidata'] = "
Perfavore, Entra oppure Registrati per vedere i Link!
";
$hotel['figuremap'] = "
Perfavore, Entra oppure Registrati per vedere i Link!
";
$hotel['figuredata'] = "
Perfavore, Entra oppure Registrati per vedere i Link!
";
$hotel['swfFolder'] = "
Perfavore, Entra oppure Registrati per vedere i Link!
";
$hotel['swfFolderSwf'] = "
Perfavore, Entra oppure Registrati per vedere i Link!
";
$hotel['swftitle'] = "L'hotel sta caricando";

/* Configurazione sito web */
$config['hotelUrl'] = "
Perfavore, Entra oppure Registrati per vedere i Link!
";// Link dell'hotel senza "/"
$config['hotelUrlSin'] = "127.0.0.1";//Link dell'hotel senza "/" e senza http:// o https://
$config['precioloteria'] = "5"; //Prezzo per giocare alla lotteria
$config['preciovip'] = "100"; //Prezzo per comprare il vip
$config['skin'] = "HypeCMS"; //Tema dell'hotel [!!! Non toccare !!!]
$config['lang'] = "it"; //Lingua del sito /it/
$config['hotelName'] = "Hype"; //Nome dell'hotel
$config['ipradio'] = "
Perfavore, Entra oppure Registrati per vedere i Link!
"; //Ip della radio
$config['linkfb'] = "
Perfavore, Entra oppure Registrati per vedere i Link!
"; //Link pagina facebook
$config['staffCheckHk'] = true; // Attiva il pin per accedere all'hk
$config['staffCheckHkMinimumRank'] = 6; // Rank minimo per la richiesta del pin
$config['maintenance'] = false; // Abilita la manutenzione del sito
$config['maintenancekMinimumRankLogin'] = 6; // Rank minimo per saltare la manutenzione
$config['groupBadgeURL'] = "
Perfavore, Entra oppure Registrati per vedere i Link!
";
$config['badgeURL'] = "
Perfavore, Entra oppure Registrati per vedere i Link!
";
$config['userLikeEnable'] = true; // true = Dai like all'utente
$config['newsCommandEnable'] = true; //true = Commenti nelle news
$config['build'] = "I";
$config['css'] = "212";
$config['newsCommandFilter'] = true; // Abilita il filtro delle parole, il filtro utilizza la tabella del db wordfilter
$config['HabboImg'] = "
Perfavore, Entra oppure Registrati per vedere i Link!
"; //Link per caricare i look
$config['RankMin'] = "7"; // Rank minimo per entrare nell'hk
$config['RankMax'] = "12"; // Rank massimo per entrare nell'hk

/* Registro Configuracion */
$config['startMotto'] = "Digita un motto"; //Motto iniziare
$config['credits'] = "500000"; // Crediti iniziali
$config['duckets'] = "500000"; // Duckets iniziali
$config['diamonds'] = "0"; // Diamanti iniziali
$config['diamondsRef'] = "1";
$config['registerEnable'] = true; // Abilita o disabilita registrazione

?>
 
Nel config del cms e dell'emu ci stanno due db diversi
Nope, l'ho modificata io, è la stessa in entrambi i config.

Può essere perché i campi della password di root sono vuoti? Io accedo senza password su phpmyadmin

O metto 127.0.0.1 o localhost è indifferente?
 
Come da titolo, il caricamento del client mi resta bloccato al 76%
Vorrei usarlo per alcuni test che voglio fare, senza far entrare nessuno. Mi interessa solo per me
Client.php
"<?php staffCheck(); Game::sso('client'); //Game::homeRoom(); ESTO LO DESACTIVO PARA QUE VAYA A LOS TERRITORIOS. ?> <html> </body> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title><?= User::userData('username')?> <?= $config['hotelName'] ?></title> <link rel="shortcut icon" type="image/x-icon" href="<?php echo H. $config['skin']; ?>/favicon.png"/> <script src="<?php echo H. $config['skin']; ?>/assets/client/jquery-latest.js" type="text/javascript"></script> <script src="<?php echo H. $config['skin']; ?>/assets/client/jquery-ui.js" type="text/javascript"></script> <script src="<?php echo H. $config['skin']; ?>/assets/client/flashclient.js"></script> <script src="<?php echo H. $config['skin']; ?>/assets/client/flash_detect_min.js"></script> <script src="<?php echo H. $config['skin']; ?>/assets/client/client.js" type="text/javascript"></script> </head> <body> <div class="client__buttons" style="left: 50px;"> <button ngsf-toggle-fullscreen="" class="client__fullscreen" onclick="resizeClient()"><b><i class="fa fa-snowflake-o " aria-hidden="true"></i> <?= $lang["descongelar"] ?></b></button> </div> <div id="client-ui" onclick="resizeClient()" ngsf-toggle-fullscreen=""> <div id="client" style='position:absolute; left:0; right:0; top:0; bottom:0; overflow:hidden; height:100%; width:100%;'></div> </div> <script> var Client = new SWFObject("<?= $hotel['swfFolderSwf'] ?>", "client", "100%", "100%", "10.0.0"); Client.addVariable("client.allow.cross.domain", "0"); Client.addVariable("client.notify.cross.domain", "1"); Client.addVariable("connection.info.host", "<?= $hotel['emuHost'] ?>"); Client.addVariable("connection.info.port", "<?= $hotel['emuPort'] ?>"); Client.addVariable("site.url", "<?= $config['hotelUrl'] ?>"); Client.addVariable("url.prefix", "<?= $config['hotelUrl'] ?>"); Client.addVariable("client.reload.url", "<?= $config['hotelUrl'] ?>/me"); Client.addVariable("client.fatal.error.url", "<?= $config['hotelUrl'] ?>/me"); Client.addVariable("client.connection.failed.url", "<?= $config['hotelUrl'] ?>/me"); Client.addVariable("external.override.texts.txt", "<?= $hotel['external_Texts_Override'] ?>"); Client.addVariable("external.override.variables.txt", "<?= $hotel['external_Variables_Override'] ?>"); Client.addVariable("external.variables.txt", "<?= $hotel['external_Variables'] ?>"); Client.addVariable("external.texts.txt", "<?= $hotel['external_Texts'] ?>"); Client.addVariable("external.figurepartlist.txt", "<?= $hotel['figuredata'] ?>"); Client.addVariable("flash.dynamic.avatar.download.configuration", "<?= $hotel['figuremap'] ?>"); Client.addVariable("productdata.load.url", "<?= $hotel['productdata'] ?>"); Client.addVariable("furnidata.load.url", "<?= $hotel['furnidata'] ?>"); Client.addVariable("use.sso.ticket", "1"); Client.addVariable("sso.ticket", "<?= User::userData('auth_ticket') ?>"); Client.addVariable("processlog.enabled", "0"); Client.addVariable("client.starting", "<?= $hotel['swftitle'] ?>"); Client.addVariable("flash.client.url", "<?= $hotel['swfFolder'] ?>/"); Client.addVariable("flash.client.origin", "popup"); Client.addVariable("nux.lobbies.enabled", "true"); Client.addVariable("country_code", "NL"); Client.addParam('base', '<?= $hotel['swfFolder'] ?>/'); Client.addParam('allowScriptAccess', 'always'); Client.addParam('menu', false); Client.addParam('wmode', "opaque"); Client.write('client'); FlashExternalInterface.signoutUrl = "<?= $config['hotelUrl'] ?>/logout"; </script> <script> //Usuário sem Adobe Flash Player if(!FlashDetect.installed){ window.location.href = "<?= $config['hotelUrl'] ?>/noflash"; } </script> </head> <script type="text/javascript"> 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> <script type="text/javascript"> function resizeClient(){ var theClient = document.getElementById('client'); var theWidth = theClient.clientWidth; theClient.style.width = "10px"; theClient.style.width = theWidth + "px"; } </script> <style> .client__buttons { left: 12px; position: absolute; top: -3px; z-index: 630; border-radius: 5px; } .client__buttons button { box-shadow: 0 3px 0 1px rgba(0,0,0,.3); background-color: #292929; border-color: #41403d; padding: 9px 2px; width: 200px; display: block; border-radius: 5px; float: left; padding-left: 6px; padding-right: 6px; line-height: 1.2; color: #b9b9b9; font-size: 12px; border-style: solid; margin-bottom: 4px; text-align: center; outline: none; } .client__buttons button:hover{ -webkit-animation-name:shakeit; -webkit-animation-duration:1s; -webkit-animation-timing-function:linear; -webkit-animation-iteration-count:infinite; animation-name:shakeit; animation-duration:1s; animation-timing-function:linear; animation-iteration-count:infinite;} @keyframes shakeit{0%{transform:rotate(0deg) translate(2px,1px);} 10%{transform:rotate(10deg) translate(1px,2px);} 20%{transform:rotate(-10deg) translate(3px,0px);} 30%{transform:rotate(0deg) translate(0px,-2px);} 40%{transform:rotate(-10deg) translate(-1px,1px);} 50%{transform:rotate(10deg) translate(1px,-2px);} 60%{transform:rotate(0deg) translate(3px,-1px);} 70%{transform:rotate(10deg) translate(-2px,-1px);} 80%{transform:rotate(-10deg) translate(1px,1px);} 90%{transform:rotate(0deg) translate(-2px,-2px);} 100%{transform:rotate(10deg) translate(-1px,2px);} }</style>"]

Varibles
activity.point.display.enabled=true
ads.domain=
akamai.debugging.enabled=false
app.review.triggers=purchase,respect
app.review.url.android=
app.review.url.ios=itms-apps://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&id=794866182
avatar.editor.character.update.url=
Perfavore, Entra oppure Registrati per vedere i Link!

avatar.editor.url=${url.prefix}/profile
avatar.expressions_menu.enabled=true
avatar.ignored.bubble.enabled=true
avatar.jumping.enabled=false
avatar.signs.enabled=true
avatar.sitting.enabled=true
avatar.widget.enabled=true
avatareditor.allowclubtryout=1
avatareditor.promohabbos=
Perfavore, Entra oppure Registrati per vedere i Link!

avatareditor.show.clubitems.dimmed=true
avatareditor.show.clubitems.first=true
avatareditor.support.sellablefurni=true
badge.display.excluded.badgeCodes=ADM,AMB,BAW01,BAW02,BAW03,BAW04
badge.image.path=
Perfavore, Entra oppure Registrati per vedere i Link!

billboard.adwarning.left.url=AdWarningsUK/ad_warning_L.png
billboard.adwarning.right.url=AdWarningsUK/ad_warning_R.png
builders.club.enabled=false
builders.club.furniture.placement.group.room.enabled=true
builders_club.buy_membership_page=/credits/client/mobile#cell_phone
builders_club.try_page=set_extras
bundle.dynamic.discounts.enabled=true
bundle.dynamic.maximum.purchase.size=100
cache.revision=2014-10-29 11:38:06
camera.available.effects=hearts_hardlight_02,stars_hardlight_02,security_hardlight,alien_hrd,bluemood_mpl,coffee_mpl,drops_mpl,glitter_hrd, misty_hrd,pinky_nrm,rusty_mpl,shiny_hrd,toxic_hrd, shadow_multiply_02,texture_overlay,frame_gold,frame_gray_4,frame_black_2,frame_wood_2,finger_nrm, color_1,color_2,color_3,color_4,dark_sepia,night_vision,x_ray,increase_saturation, decrease_saturation,hypersaturated,increase_contrast,decr_conrast,hue_bright_sat,Yellow,green_2
camera.competition.enabled=false
camera.effects.enabled=true
camera.enabled.android=1
camera.enabled.desktop=1
camera.enabled.ios=1
camera.enabled=true
camera.launch.ui.position=bottom-icons
camera.photo.publishing.enabled=false
catalog.deep.hierarchy=true
catalog.direct.sms.buy.allowed=false
catalog.direct.sms.buy.length.days=5
catalog.direct.vip.buy.enabled=true
catalog.direct.vip.buy.promo=1
catalog.drag_and_drop=true
catalog.furniture.animation=true
catalog.gallery.lang=en
catalog.large=true
catalog.multiple.purchase.enabled=true
catalog.new.additions.page.open.disabled=false
catalog.new_direct_vip_buy_window=true
catalog.newgiftflow.enabled=true
catalog.pets.adjust_old=false
catalog.pets.enabled=true
catalog.purchase.gift.singleclick.confirmation=true
catalog.purchase.gift.singleclick=true
catalog.purchase.gift_wrapping.default_box_index=0
catalog.restricted_nodes=avatar,perm_costumes,perm_effects,bots,erasmus,erasmus1,erasmus2,erasmus3,spaces_grid,rentables_spaces,guild_frontpage,halloween14_lovelock,hot_furni
catalog.show.purse=false
catalog.vip.benefits.enabled=true
catalog.vip.buy.promo=1,3
catalog.vip.gift.promo=1,3
cfh.faq.url=
Perfavore, Entra oppure Registrati per vedere i Link!

cfh.topic_id.to.sanction_type_id=0=1,1=1,2=1,5=1,3=6,36=1,31=6,6=1,8=1,9=6,10=6,11=6,32=1,33=6,12=1,13=106,34=1,14=1,15=1,16=102,17=1,18=6,19=1,20=1,21=105,22=1,23=1,29=6,35=6
chat.history.disabled=false
chat.muting.enabled=false
chatreviewreporterfeedbackctrl.enabled=true
citizenship.vip.quest.promotion.enabled=true
citizenship.vip.tutorial.quest.campaign.name=VIPTutorials
client.allow.external.links=1
client.allow.facebook.like=1
client.connection.failed.url=${url.prefix}/client_connection_failed
client.fatal.error.url=${url.prefix}/flash_client_error
client.hotel_view.image=
client.minimail.embed.enabled=true
client.news.embed.enabled=true
client.reload.url=${url.prefix}/account/reauthenticate?page=/flash_client
client.toolbar.static.enabled=true
extra_data_service_url=
Perfavore, Entra oppure Registrati per vedere i Link!

club.membership.extend.basic.promotion.enabled=true
club.membership.extend.vip.promotion.enabled=true
club.subscription.disabled=1
club_center.enabled=true
competition.africaDesert.catalogPage=set_desert
competition.africaJungle.catalogPage=set_jungle
competition.africaSavannah.catalogPage=set_savannah
competition.catalogPage=set_desert
competition.currentlyActive=africaDesert
competition.habboween12.catalogPage=new_habboween
competition.majesty.catalogPage=habbolympix2012
competition.requiredFurnis=anc_hot_sands,anc_pyramid_block,anc_trophy_sstone,track12_mini_torch08-08
competition.requiredFurniture=xmasRoomComp,xmas12_fireplace,xmas12_pork,xmas12_pillar1
competition.starsRoomComp2.catalogPage=habbo_stars_furni
competition.timing=2013-03-07 10:00,steamRoomComp;2013-03-21 11:00,
competition.vipParties1.catalogPage=jetset
competition.vipParties2.catalogPage=jetset
competition.vipParties3.catalogPage=jetset
competition.xmasRoomComp.catalogPage=xmas_castles_2012
connection.info.host.no=game-no.habbo.com
connection.info.name.no=Norge
connection.info.port.no=30000,993
currencyiconstyle.big.101.combo=55
currencyiconstyle.big.101=55
currencyiconstyle.big.102.combo=40
currencyiconstyle.big.102=38
currencyiconstyle.big.103=44
currencyiconstyle.big.104.combo=48
currencyiconstyle.big.104=47
currencyiconstyle.big.105.combo=43
currencyiconstyle.big.105=41
currencyiconstyle.small.101=55
currencyiconstyle.small.102=10
currencyiconstyle.small.103=45
currencyiconstyle.small.104=46
currencyiconstyle.small.105=42
custom.chat.styles.enabled=true
daily.quest.campaign.prefix=horse_
daily.quest.room.network.id=4
diamonds.enabled=true
disable.crypto=false
disabled.custom.chat.styles=1,2,8,9,10,18,21,22,23,24,25,26,27,28,30,31,32,33,34,35
disclaimer.credit_spending.enabled=false
duckets.enabled=true
duckets.promo.enabled=false
duckets.upper_limit=650
dynamic.download.name.template=%revision%/hh_furni_xx_%typeid%.cct
dynamic.download.samples.template=%revision%/%typeid%.cct
dynamic.download.url=
Perfavore, Entra oppure Registrati per vedere i Link!

effects.in.avatar.editor=true
effects.reactivate.on.room.entry=true
email.verification.url=${url.prefix}/settings/email
embed.showInRoomInfo=true
eventinfo.enabled=true
external.figurepartlist.txt=
Perfavore, Entra oppure Registrati per vedere i Link!

external.texts.txt=
Perfavore, Entra oppure Registrati per vedere i Link!

extra_data_batches_enabled=true
feed.badge_decorations.album=Feed_Badges
feed.badge_decorations.decoration_id=001
flash.dynamic.avatar.download.configuration=${flash.client.url}figuremap.xml
flash.dynamic.avatar.download.name.template=%libname%.swf
flash.dynamic.avatar.download.url=${flash.client.url}
flash.dynamic.download.name.template=%typeid%.swf
flash.dynamic.download.samples.template=mp3/sound_machine_sample_%typeid%.mp3
flash.dynamic.download.url=
Perfavore, Entra oppure Registrati per vedere i Link!

flash.dynamic.icon.download.name.template=%typeid%%param%_icon.png
free.flow.chat.wide.collider.visualization.enabled=false
friend.furniture.enabled=true
friend_bar.helper.friend_finding.enabled=true
friend_list.persistent_message_status.enabled=true
friend_list.pocket_habbo_status.enabled=true
friendbar.notifications.enabled=true
friendbar.playSnowStorm.enabled=true
friendbar.playSnowStorm.friendsThreshold=1000
friendbar.requests.enabled=true
friendship.category.management.enabled=true
furnidata.load.url=
Perfavore, Entra oppure Registrati per vedere i Link!

furniture.context.menu.widget.enabled=true
game.center.default_game=basejump
game.center.enabled.forStaff=true
game.center.enabled=true
game.center.promoted_game=true
game_center.image.library.url=//habboo-a.akamaihd.net/gamecenter/
games.buy.x.games.enabledtrue
games.buy.x.games.video.enabled=false
games.filter.enabled=false
games.highscores.enabled=true
games.highscores.scrolling.enabled=true
games.tokens.enabled=false
games_icon_enabled=true
gpu.inanimate_furni=xmas14_palm,xmas14_sunbeams
groupforum.poll.period=900
guardians.enabled=true
guide.help.alpha.groupid=340826
guide.help.new.user.tour.popup.delay=66
guides.enabled=true
guidetool.handle.chat_reviews=true
guidetool.handle.help_requests=true
guidetool.handle.tour_requests=true
habbo.gaming.api.enabled=true
habbo_club_buy_disabled=true
habboinfotool.url=
Perfavore, Entra oppure Registrati per vedere i Link!

habbopages.url=
Perfavore, Entra oppure Registrati per vedere i Link!

habboway.enabled=true
habboway.url=
Perfavore, Entra oppure Registrati per vedere i Link!

handitem.drop.enabled=true
handitem.give.enabled=true
handitem.give.pet.enabled=false
hccenter.activity.enabled=true
help.habboway.page.count=8
hotel.teaser=
hotelview.banner.url=
Perfavore, Entra oppure Registrati per vedere i Link!

hover.name.enabled=false
identityTracking.enabled=true
identityinformationtool.url=
Perfavore, Entra oppure Registrati per vedere i Link!

image.library.badgepart.url=
Perfavore, Entra oppure Registrati per vedere i Link!

image.library.catalogue.url=
Perfavore, Entra oppure Registrati per vedere i Link!

image.library.playlist.url=
Perfavore, Entra oppure Registrati per vedere i Link!

image.library.questing.url=
Perfavore, Entra oppure Registrati per vedere i Link!

image.library.url.server=
Perfavore, Entra oppure Registrati per vedere i Link!

image.library.url.stickers=
Perfavore, Entra oppure Registrati per vedere i Link!

image.library.url=
Perfavore, Entra oppure Registrati per vedere i Link!

productdata.load.url=
Perfavore, Entra oppure Registrati per vedere i Link!
external.texts.txt=
Perfavore, Entra oppure Registrati per vedere i Link!
external.override.variables.txt=
Perfavore, Entra oppure Registrati per vedere i Link!
flash.client.url=
Perfavore, Entra oppure Registrati per vedere i Link!
furnidata.load.url=
Perfavore, Entra oppure Registrati per vedere i Link!
external.variables.txt=
Perfavore, Entra oppure Registrati per vedere i Link!
external.override.texts.txt=
Perfavore, Entra oppure Registrati per vedere i Link!
external.figurepartlist.txt=
Perfavore, Entra oppure Registrati per vedere i Link!
"]
productdata.load.url=
Perfavore, Entra oppure Registrati per vedere i Link!

private.image.library.url=
Perfavore, Entra oppure Registrati per vedere i Link!

config
## BiosEmulador Configuração System
## Creditos ao Thiago Araujo - DevBios

## MySQL Configuração
db.hostname=localhost
db.port=3306
db.username=root
db.password=
db.name=habos

## MySQL pooling setup (controla a quantidade de conexões)
db.pool.minsize=10
db.pool.maxsize=250

## Game TCP/IP Configuração
game.tcp.bindip=127.0.0.1
game.tcp.port=30000
game.tcp.conlimit=100000
game.tcp.conperip=2000
game.tcp.enablenagles=true

## MUS TCP/IP Configuração
mus.tcp.bindip=localhost
mus.tcp.port=30001
mus.tcp.allowedaddr=localhost

## Client Configuração
client.ping.enabled=1
client.ping.interval=20000
client.maxrequests=300

## Configuração do Nome do seu hotel
hotel.name=Habbz
license=Habbz Hotel
game.legacy.figure_mutant=1

##Configuração dos Quartos do BiosEmulador
Quartovip=65
Prisao=32

## Configurações para recompesa de tempo online no hotel dos servidores de SAO
# A "MensagemAoReceber" alerta o usuário ("Você recebeu X moedas, X duckets e X diamantes!"
MensagemAoReceber=true
Moedas=50
Duckets=100
Diamantes=0
#<< INTERVALO EM MINUTOS! >>
Intervalo=15

# Vip 1 By: Thiago Araujo
Moedasvip=200
Ducketsvip=200
Diamantesvip=0
# Vip 2 By: Thiago Araujo
Moedassvip=300
Ducketssvip=300
Diamantessvip=0
# Comando Premiar By: Thiago Araujo
Moedaspremiar=500
Ducketspremiar=500
Diamantespremiar=1
NiveltotalGames=200
CodEmblemaNivel=NV

# Rank Minimo de Staff By: Thiago Araujo
MineRankStaff=2

Uso questo pack: Release - Pack - HypeCMS [Bios Emulator]
Se mi capiterà verrò a visitare le varie risposte
 
Come da titolo, il caricamento del client mi resta bloccato al 76%
Vorrei usarlo per alcuni test che voglio fare, senza far entrare nessuno. Mi interessa solo per me
Client.php
"<?php staffCheck(); Game::sso('client'); //Game::homeRoom(); ESTO LO DESACTIVO PARA QUE VAYA A LOS TERRITORIOS. ?> <html> </body> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title><?= User::userData('username')?> <?= $config['hotelName'] ?></title> <link rel="shortcut icon" type="image/x-icon" href="<?php echo H. $config['skin']; ?>/favicon.png"/> <script src="<?php echo H. $config['skin']; ?>/assets/client/jquery-latest.js" type="text/javascript"></script> <script src="<?php echo H. $config['skin']; ?>/assets/client/jquery-ui.js" type="text/javascript"></script> <script src="<?php echo H. $config['skin']; ?>/assets/client/flashclient.js"></script> <script src="<?php echo H. $config['skin']; ?>/assets/client/flash_detect_min.js"></script> <script src="<?php echo H. $config['skin']; ?>/assets/client/client.js" type="text/javascript"></script> </head> <body> <div class="client__buttons" style="left: 50px;"> <button ngsf-toggle-fullscreen="" class="client__fullscreen" onclick="resizeClient()"><b><i class="fa fa-snowflake-o " aria-hidden="true"></i> <?= $lang["descongelar"] ?></b></button> </div> <div id="client-ui" onclick="resizeClient()" ngsf-toggle-fullscreen=""> <div id="client" style='position:absolute; left:0; right:0; top:0; bottom:0; overflow:hidden; height:100%; width:100%;'></div> </div> <script> var Client = new SWFObject("<?= $hotel['swfFolderSwf'] ?>", "client", "100%", "100%", "10.0.0"); Client.addVariable("client.allow.cross.domain", "0"); Client.addVariable("client.notify.cross.domain", "1"); Client.addVariable("connection.info.host", "<?= $hotel['emuHost'] ?>"); Client.addVariable("connection.info.port", "<?= $hotel['emuPort'] ?>"); Client.addVariable("site.url", "<?= $config['hotelUrl'] ?>"); Client.addVariable("url.prefix", "<?= $config['hotelUrl'] ?>"); Client.addVariable("client.reload.url", "<?= $config['hotelUrl'] ?>/me"); Client.addVariable("client.fatal.error.url", "<?= $config['hotelUrl'] ?>/me"); Client.addVariable("client.connection.failed.url", "<?= $config['hotelUrl'] ?>/me"); Client.addVariable("external.override.texts.txt", "<?= $hotel['external_Texts_Override'] ?>"); Client.addVariable("external.override.variables.txt", "<?= $hotel['external_Variables_Override'] ?>"); Client.addVariable("external.variables.txt", "<?= $hotel['external_Variables'] ?>"); Client.addVariable("external.texts.txt", "<?= $hotel['external_Texts'] ?>"); Client.addVariable("external.figurepartlist.txt", "<?= $hotel['figuredata'] ?>"); Client.addVariable("flash.dynamic.avatar.download.configuration", "<?= $hotel['figuremap'] ?>"); Client.addVariable("productdata.load.url", "<?= $hotel['productdata'] ?>"); Client.addVariable("furnidata.load.url", "<?= $hotel['furnidata'] ?>"); Client.addVariable("use.sso.ticket", "1"); Client.addVariable("sso.ticket", "<?= User::userData('auth_ticket') ?>"); Client.addVariable("processlog.enabled", "0"); Client.addVariable("client.starting", "<?= $hotel['swftitle'] ?>"); Client.addVariable("flash.client.url", "<?= $hotel['swfFolder'] ?>/"); Client.addVariable("flash.client.origin", "popup"); Client.addVariable("nux.lobbies.enabled", "true"); Client.addVariable("country_code", "NL"); Client.addParam('base', '<?= $hotel['swfFolder'] ?>/'); Client.addParam('allowScriptAccess', 'always'); Client.addParam('menu', false); Client.addParam('wmode', "opaque"); Client.write('client'); FlashExternalInterface.signoutUrl = "<?= $config['hotelUrl'] ?>/logout"; </script> <script> //Usuário sem Adobe Flash Player if(!FlashDetect.installed){ window.location.href = "<?= $config['hotelUrl'] ?>/noflash"; } </script> </head> <script type="text/javascript"> 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> <script type="text/javascript"> function resizeClient(){ var theClient = document.getElementById('client'); var theWidth = theClient.clientWidth; theClient.style.width = "10px"; theClient.style.width = theWidth + "px"; } </script> <style> .client__buttons { left: 12px; position: absolute; top: -3px; z-index: 630; border-radius: 5px; } .client__buttons button { box-shadow: 0 3px 0 1px rgba(0,0,0,.3); background-color: #292929; border-color: #41403d; padding: 9px 2px; width: 200px; display: block; border-radius: 5px; float: left; padding-left: 6px; padding-right: 6px; line-height: 1.2; color: #b9b9b9; font-size: 12px; border-style: solid; margin-bottom: 4px; text-align: center; outline: none; } .client__buttons button:hover{ -webkit-animation-name:shakeit; -webkit-animation-duration:1s; -webkit-animation-timing-function:linear; -webkit-animation-iteration-count:infinite; animation-name:shakeit; animation-duration:1s; animation-timing-function:linear; animation-iteration-count:infinite;} @keyframes shakeit{0%{transform:rotate(0deg) translate(2px,1px);} 10%{transform:rotate(10deg) translate(1px,2px);} 20%{transform:rotate(-10deg) translate(3px,0px);} 30%{transform:rotate(0deg) translate(0px,-2px);} 40%{transform:rotate(-10deg) translate(-1px,1px);} 50%{transform:rotate(10deg) translate(1px,-2px);} 60%{transform:rotate(0deg) translate(3px,-1px);} 70%{transform:rotate(10deg) translate(-2px,-1px);} 80%{transform:rotate(-10deg) translate(1px,1px);} 90%{transform:rotate(0deg) translate(-2px,-2px);} 100%{transform:rotate(10deg) translate(-1px,2px);} }</style>"]

Varibles
activity.point.display.enabled=true
ads.domain=
akamai.debugging.enabled=false
app.review.triggers=purchase,respect
app.review.url.android=
app.review.url.ios=itms-apps://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&id=794866182
avatar.editor.character.update.url=
Perfavore, Entra oppure Registrati per vedere i Link!

avatar.editor.url=${url.prefix}/profile
avatar.expressions_menu.enabled=true
avatar.ignored.bubble.enabled=true
avatar.jumping.enabled=false
avatar.signs.enabled=true
avatar.sitting.enabled=true
avatar.widget.enabled=true
avatareditor.allowclubtryout=1
avatareditor.promohabbos=
Perfavore, Entra oppure Registrati per vedere i Link!

avatareditor.show.clubitems.dimmed=true
avatareditor.show.clubitems.first=true
avatareditor.support.sellablefurni=true
badge.display.excluded.badgeCodes=ADM,AMB,BAW01,BAW02,BAW03,BAW04
badge.image.path=
Perfavore, Entra oppure Registrati per vedere i Link!

billboard.adwarning.left.url=AdWarningsUK/ad_warning_L.png
billboard.adwarning.right.url=AdWarningsUK/ad_warning_R.png
builders.club.enabled=false
builders.club.furniture.placement.group.room.enabled=true
builders_club.buy_membership_page=/credits/client/mobile#cell_phone
builders_club.try_page=set_extras
bundle.dynamic.discounts.enabled=true
bundle.dynamic.maximum.purchase.size=100
cache.revision=2014-10-29 11:38:06
camera.available.effects=hearts_hardlight_02,stars_hardlight_02,security_hardlight,alien_hrd,bluemood_mpl,coffee_mpl,drops_mpl,glitter_hrd, misty_hrd,pinky_nrm,rusty_mpl,shiny_hrd,toxic_hrd, shadow_multiply_02,texture_overlay,frame_gold,frame_gray_4,frame_black_2,frame_wood_2,finger_nrm, color_1,color_2,color_3,color_4,dark_sepia,night_vision,x_ray,increase_saturation, decrease_saturation,hypersaturated,increase_contrast,decr_conrast,hue_bright_sat,Yellow,green_2
camera.competition.enabled=false
camera.effects.enabled=true
camera.enabled.android=1
camera.enabled.desktop=1
camera.enabled.ios=1
camera.enabled=true
camera.launch.ui.position=bottom-icons
camera.photo.publishing.enabled=false
catalog.deep.hierarchy=true
catalog.direct.sms.buy.allowed=false
catalog.direct.sms.buy.length.days=5
catalog.direct.vip.buy.enabled=true
catalog.direct.vip.buy.promo=1
catalog.drag_and_drop=true
catalog.furniture.animation=true
catalog.gallery.lang=en
catalog.large=true
catalog.multiple.purchase.enabled=true
catalog.new.additions.page.open.disabled=false
catalog.new_direct_vip_buy_window=true
catalog.newgiftflow.enabled=true
catalog.pets.adjust_old=false
catalog.pets.enabled=true
catalog.purchase.gift.singleclick.confirmation=true
catalog.purchase.gift.singleclick=true
catalog.purchase.gift_wrapping.default_box_index=0
catalog.restricted_nodes=avatar,perm_costumes,perm_effects,bots,erasmus,erasmus1,erasmus2,erasmus3,spaces_grid,rentables_spaces,guild_frontpage,halloween14_lovelock,hot_furni
catalog.show.purse=false
catalog.vip.benefits.enabled=true
catalog.vip.buy.promo=1,3
catalog.vip.gift.promo=1,3
cfh.faq.url=
Perfavore, Entra oppure Registrati per vedere i Link!

cfh.topic_id.to.sanction_type_id=0=1,1=1,2=1,5=1,3=6,36=1,31=6,6=1,8=1,9=6,10=6,11=6,32=1,33=6,12=1,13=106,34=1,14=1,15=1,16=102,17=1,18=6,19=1,20=1,21=105,22=1,23=1,29=6,35=6
chat.history.disabled=false
chat.muting.enabled=false
chatreviewreporterfeedbackctrl.enabled=true
citizenship.vip.quest.promotion.enabled=true
citizenship.vip.tutorial.quest.campaign.name=VIPTutorials
client.allow.external.links=1
client.allow.facebook.like=1
client.connection.failed.url=${url.prefix}/client_connection_failed
client.fatal.error.url=${url.prefix}/flash_client_error
client.hotel_view.image=
client.minimail.embed.enabled=true
client.news.embed.enabled=true
client.reload.url=${url.prefix}/account/reauthenticate?page=/flash_client
client.toolbar.static.enabled=true
extra_data_service_url=
Perfavore, Entra oppure Registrati per vedere i Link!

club.membership.extend.basic.promotion.enabled=true
club.membership.extend.vip.promotion.enabled=true
club.subscription.disabled=1
club_center.enabled=true
competition.africaDesert.catalogPage=set_desert
competition.africaJungle.catalogPage=set_jungle
competition.africaSavannah.catalogPage=set_savannah
competition.catalogPage=set_desert
competition.currentlyActive=africaDesert
competition.habboween12.catalogPage=new_habboween
competition.majesty.catalogPage=habbolympix2012
competition.requiredFurnis=anc_hot_sands,anc_pyramid_block,anc_trophy_sstone,track12_mini_torch08-08
competition.requiredFurniture=xmasRoomComp,xmas12_fireplace,xmas12_pork,xmas12_pillar1
competition.starsRoomComp2.catalogPage=habbo_stars_furni
competition.timing=2013-03-07 10:00,steamRoomComp;2013-03-21 11:00,
competition.vipParties1.catalogPage=jetset
competition.vipParties2.catalogPage=jetset
competition.vipParties3.catalogPage=jetset
competition.xmasRoomComp.catalogPage=xmas_castles_2012
connection.info.host.no=game-no.habbo.com
connection.info.name.no=Norge
connection.info.port.no=30000,993
currencyiconstyle.big.101.combo=55
currencyiconstyle.big.101=55
currencyiconstyle.big.102.combo=40
currencyiconstyle.big.102=38
currencyiconstyle.big.103=44
currencyiconstyle.big.104.combo=48
currencyiconstyle.big.104=47
currencyiconstyle.big.105.combo=43
currencyiconstyle.big.105=41
currencyiconstyle.small.101=55
currencyiconstyle.small.102=10
currencyiconstyle.small.103=45
currencyiconstyle.small.104=46
currencyiconstyle.small.105=42
custom.chat.styles.enabled=true
daily.quest.campaign.prefix=horse_
daily.quest.room.network.id=4
diamonds.enabled=true
disable.crypto=false
disabled.custom.chat.styles=1,2,8,9,10,18,21,22,23,24,25,26,27,28,30,31,32,33,34,35
disclaimer.credit_spending.enabled=false
duckets.enabled=true
duckets.promo.enabled=false
duckets.upper_limit=650
dynamic.download.name.template=%revision%/hh_furni_xx_%typeid%.cct
dynamic.download.samples.template=%revision%/%typeid%.cct
dynamic.download.url=
Perfavore, Entra oppure Registrati per vedere i Link!

effects.in.avatar.editor=true
effects.reactivate.on.room.entry=true
email.verification.url=${url.prefix}/settings/email
embed.showInRoomInfo=true
eventinfo.enabled=true
external.figurepartlist.txt=
Perfavore, Entra oppure Registrati per vedere i Link!

external.texts.txt=
Perfavore, Entra oppure Registrati per vedere i Link!

extra_data_batches_enabled=true
feed.badge_decorations.album=Feed_Badges
feed.badge_decorations.decoration_id=001
flash.dynamic.avatar.download.configuration=${flash.client.url}figuremap.xml
flash.dynamic.avatar.download.name.template=%libname%.swf
flash.dynamic.avatar.download.url=${flash.client.url}
flash.dynamic.download.name.template=%typeid%.swf
flash.dynamic.download.samples.template=mp3/sound_machine_sample_%typeid%.mp3
flash.dynamic.download.url=
Perfavore, Entra oppure Registrati per vedere i Link!

flash.dynamic.icon.download.name.template=%typeid%%param%_icon.png
free.flow.chat.wide.collider.visualization.enabled=false
friend.furniture.enabled=true
friend_bar.helper.friend_finding.enabled=true
friend_list.persistent_message_status.enabled=true
friend_list.pocket_habbo_status.enabled=true
friendbar.notifications.enabled=true
friendbar.playSnowStorm.enabled=true
friendbar.playSnowStorm.friendsThreshold=1000
friendbar.requests.enabled=true
friendship.category.management.enabled=true
furnidata.load.url=
Perfavore, Entra oppure Registrati per vedere i Link!

furniture.context.menu.widget.enabled=true
game.center.default_game=basejump
game.center.enabled.forStaff=true
game.center.enabled=true
game.center.promoted_game=true
game_center.image.library.url=//habboo-a.akamaihd.net/gamecenter/
games.buy.x.games.enabledtrue
games.buy.x.games.video.enabled=false
games.filter.enabled=false
games.highscores.enabled=true
games.highscores.scrolling.enabled=true
games.tokens.enabled=false
games_icon_enabled=true
gpu.inanimate_furni=xmas14_palm,xmas14_sunbeams
groupforum.poll.period=900
guardians.enabled=true
guide.help.alpha.groupid=340826
guide.help.new.user.tour.popup.delay=66
guides.enabled=true
guidetool.handle.chat_reviews=true
guidetool.handle.help_requests=true
guidetool.handle.tour_requests=true
habbo.gaming.api.enabled=true
habbo_club_buy_disabled=true
habboinfotool.url=
Perfavore, Entra oppure Registrati per vedere i Link!

habbopages.url=
Perfavore, Entra oppure Registrati per vedere i Link!

habboway.enabled=true
habboway.url=
Perfavore, Entra oppure Registrati per vedere i Link!

handitem.drop.enabled=true
handitem.give.enabled=true
handitem.give.pet.enabled=false
hccenter.activity.enabled=true
help.habboway.page.count=8
hotel.teaser=
hotelview.banner.url=
Perfavore, Entra oppure Registrati per vedere i Link!

hover.name.enabled=false
identityTracking.enabled=true
identityinformationtool.url=
Perfavore, Entra oppure Registrati per vedere i Link!

image.library.badgepart.url=
Perfavore, Entra oppure Registrati per vedere i Link!

image.library.catalogue.url=
Perfavore, Entra oppure Registrati per vedere i Link!

image.library.playlist.url=
Perfavore, Entra oppure Registrati per vedere i Link!

image.library.questing.url=
Perfavore, Entra oppure Registrati per vedere i Link!

image.library.url.server=
Perfavore, Entra oppure Registrati per vedere i Link!

image.library.url.stickers=
Perfavore, Entra oppure Registrati per vedere i Link!

image.library.url=
Perfavore, Entra oppure Registrati per vedere i Link!

productdata.load.url=
Perfavore, Entra oppure Registrati per vedere i Link!
external.texts.txt=
Perfavore, Entra oppure Registrati per vedere i Link!
external.override.variables.txt=
Perfavore, Entra oppure Registrati per vedere i Link!
flash.client.url=
Perfavore, Entra oppure Registrati per vedere i Link!
furnidata.load.url=
Perfavore, Entra oppure Registrati per vedere i Link!
external.variables.txt=
Perfavore, Entra oppure Registrati per vedere i Link!
external.override.texts.txt=
Perfavore, Entra oppure Registrati per vedere i Link!
external.figurepartlist.txt=
Perfavore, Entra oppure Registrati per vedere i Link!
"]
productdata.load.url=
Perfavore, Entra oppure Registrati per vedere i Link!

private.image.library.url=
Perfavore, Entra oppure Registrati per vedere i Link!

config
## BiosEmulador Configuração System
## Creditos ao Thiago Araujo - DevBios

## MySQL Configuração
db.hostname=localhost
db.port=3306
db.username=root
db.password=
db.name=habos

## MySQL pooling setup (controla a quantidade de conexões)
db.pool.minsize=10
db.pool.maxsize=250

## Game TCP/IP Configuração
game.tcp.bindip=127.0.0.1
game.tcp.port=30000
game.tcp.conlimit=100000
game.tcp.conperip=2000
game.tcp.enablenagles=true

## MUS TCP/IP Configuração
mus.tcp.bindip=localhost
mus.tcp.port=30001
mus.tcp.allowedaddr=localhost

## Client Configuração
client.ping.enabled=1
client.ping.interval=20000
client.maxrequests=300

## Configuração do Nome do seu hotel
hotel.name=Habbz
license=Habbz Hotel
game.legacy.figure_mutant=1

##Configuração dos Quartos do BiosEmulador
Quartovip=65
Prisao=32

## Configurações para recompesa de tempo online no hotel dos servidores de SAO
# A "MensagemAoReceber" alerta o usuário ("Você recebeu X moedas, X duckets e X diamantes!"
MensagemAoReceber=true
Moedas=50
Duckets=100
Diamantes=0
#<< INTERVALO EM MINUTOS! >>
Intervalo=15

# Vip 1 By: Thiago Araujo
Moedasvip=200
Ducketsvip=200
Diamantesvip=0
# Vip 2 By: Thiago Araujo
Moedassvip=300
Ducketssvip=300
Diamantessvip=0
# Comando Premiar By: Thiago Araujo
Moedaspremiar=500
Ducketspremiar=500
Diamantespremiar=1
NiveltotalGames=200
CodEmblemaNivel=NV

# Rank Minimo de Staff By: Thiago Araujo
MineRankStaff=2

Uso questo pack: Release - Pack - HypeCMS [Bios Emulator]
Se mi capiterà verrò a visitare le varie risposte
Il tuo database si chiama Habbos? Ne sei sicuro?
 
Come da titolo, il caricamento del client mi resta bloccato al 76%
Vorrei usarlo per alcuni test che voglio fare, senza far entrare nessuno. Mi interessa solo per me
Client.php
"<?php staffCheck(); Game::sso('client'); //Game::homeRoom(); ESTO LO DESACTIVO PARA QUE VAYA A LOS TERRITORIOS. ?> <html> </body> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title><?= User::userData('username')?> <?= $config['hotelName'] ?></title> <link rel="shortcut icon" type="image/x-icon" href="<?php echo H. $config['skin']; ?>/favicon.png"/> <script src="<?php echo H. $config['skin']; ?>/assets/client/jquery-latest.js" type="text/javascript"></script> <script src="<?php echo H. $config['skin']; ?>/assets/client/jquery-ui.js" type="text/javascript"></script> <script src="<?php echo H. $config['skin']; ?>/assets/client/flashclient.js"></script> <script src="<?php echo H. $config['skin']; ?>/assets/client/flash_detect_min.js"></script> <script src="<?php echo H. $config['skin']; ?>/assets/client/client.js" type="text/javascript"></script> </head> <body> <div class="client__buttons" style="left: 50px;"> <button ngsf-toggle-fullscreen="" class="client__fullscreen" onclick="resizeClient()"><b><i class="fa fa-snowflake-o " aria-hidden="true"></i> <?= $lang["descongelar"] ?></b></button> </div> <div id="client-ui" onclick="resizeClient()" ngsf-toggle-fullscreen=""> <div id="client" style='position:absolute; left:0; right:0; top:0; bottom:0; overflow:hidden; height:100%; width:100%;'></div> </div> <script> var Client = new SWFObject("<?= $hotel['swfFolderSwf'] ?>", "client", "100%", "100%", "10.0.0"); Client.addVariable("client.allow.cross.domain", "0"); Client.addVariable("client.notify.cross.domain", "1"); Client.addVariable("connection.info.host", "<?= $hotel['emuHost'] ?>"); Client.addVariable("connection.info.port", "<?= $hotel['emuPort'] ?>"); Client.addVariable("site.url", "<?= $config['hotelUrl'] ?>"); Client.addVariable("url.prefix", "<?= $config['hotelUrl'] ?>"); Client.addVariable("client.reload.url", "<?= $config['hotelUrl'] ?>/me"); Client.addVariable("client.fatal.error.url", "<?= $config['hotelUrl'] ?>/me"); Client.addVariable("client.connection.failed.url", "<?= $config['hotelUrl'] ?>/me"); Client.addVariable("external.override.texts.txt", "<?= $hotel['external_Texts_Override'] ?>"); Client.addVariable("external.override.variables.txt", "<?= $hotel['external_Variables_Override'] ?>"); Client.addVariable("external.variables.txt", "<?= $hotel['external_Variables'] ?>"); Client.addVariable("external.texts.txt", "<?= $hotel['external_Texts'] ?>"); Client.addVariable("external.figurepartlist.txt", "<?= $hotel['figuredata'] ?>"); Client.addVariable("flash.dynamic.avatar.download.configuration", "<?= $hotel['figuremap'] ?>"); Client.addVariable("productdata.load.url", "<?= $hotel['productdata'] ?>"); Client.addVariable("furnidata.load.url", "<?= $hotel['furnidata'] ?>"); Client.addVariable("use.sso.ticket", "1"); Client.addVariable("sso.ticket", "<?= User::userData('auth_ticket') ?>"); Client.addVariable("processlog.enabled", "0"); Client.addVariable("client.starting", "<?= $hotel['swftitle'] ?>"); Client.addVariable("flash.client.url", "<?= $hotel['swfFolder'] ?>/"); Client.addVariable("flash.client.origin", "popup"); Client.addVariable("nux.lobbies.enabled", "true"); Client.addVariable("country_code", "NL"); Client.addParam('base', '<?= $hotel['swfFolder'] ?>/'); Client.addParam('allowScriptAccess', 'always'); Client.addParam('menu', false); Client.addParam('wmode', "opaque"); Client.write('client'); FlashExternalInterface.signoutUrl = "<?= $config['hotelUrl'] ?>/logout"; </script> <script> //Usuário sem Adobe Flash Player if(!FlashDetect.installed){ window.location.href = "<?= $config['hotelUrl'] ?>/noflash"; } </script> </head> <script type="text/javascript"> 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> <script type="text/javascript"> function resizeClient(){ var theClient = document.getElementById('client'); var theWidth = theClient.clientWidth; theClient.style.width = "10px"; theClient.style.width = theWidth + "px"; } </script> <style> .client__buttons { left: 12px; position: absolute; top: -3px; z-index: 630; border-radius: 5px; } .client__buttons button { box-shadow: 0 3px 0 1px rgba(0,0,0,.3); background-color: #292929; border-color: #41403d; padding: 9px 2px; width: 200px; display: block; border-radius: 5px; float: left; padding-left: 6px; padding-right: 6px; line-height: 1.2; color: #b9b9b9; font-size: 12px; border-style: solid; margin-bottom: 4px; text-align: center; outline: none; } .client__buttons button:hover{ -webkit-animation-name:shakeit; -webkit-animation-duration:1s; -webkit-animation-timing-function:linear; -webkit-animation-iteration-count:infinite; animation-name:shakeit; animation-duration:1s; animation-timing-function:linear; animation-iteration-count:infinite;} @keyframes shakeit{0%{transform:rotate(0deg) translate(2px,1px);} 10%{transform:rotate(10deg) translate(1px,2px);} 20%{transform:rotate(-10deg) translate(3px,0px);} 30%{transform:rotate(0deg) translate(0px,-2px);} 40%{transform:rotate(-10deg) translate(-1px,1px);} 50%{transform:rotate(10deg) translate(1px,-2px);} 60%{transform:rotate(0deg) translate(3px,-1px);} 70%{transform:rotate(10deg) translate(-2px,-1px);} 80%{transform:rotate(-10deg) translate(1px,1px);} 90%{transform:rotate(0deg) translate(-2px,-2px);} 100%{transform:rotate(10deg) translate(-1px,2px);} }</style>"]

Varibles
activity.point.display.enabled=true
ads.domain=
akamai.debugging.enabled=false
app.review.triggers=purchase,respect
app.review.url.android=
app.review.url.ios=itms-apps://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&id=794866182
avatar.editor.character.update.url=
Perfavore, Entra oppure Registrati per vedere i Link!

avatar.editor.url=${url.prefix}/profile
avatar.expressions_menu.enabled=true
avatar.ignored.bubble.enabled=true
avatar.jumping.enabled=false
avatar.signs.enabled=true
avatar.sitting.enabled=true
avatar.widget.enabled=true
avatareditor.allowclubtryout=1
avatareditor.promohabbos=
Perfavore, Entra oppure Registrati per vedere i Link!

avatareditor.show.clubitems.dimmed=true
avatareditor.show.clubitems.first=true
avatareditor.support.sellablefurni=true
badge.display.excluded.badgeCodes=ADM,AMB,BAW01,BAW02,BAW03,BAW04
badge.image.path=
Perfavore, Entra oppure Registrati per vedere i Link!

billboard.adwarning.left.url=AdWarningsUK/ad_warning_L.png
billboard.adwarning.right.url=AdWarningsUK/ad_warning_R.png
builders.club.enabled=false
builders.club.furniture.placement.group.room.enabled=true
builders_club.buy_membership_page=/credits/client/mobile#cell_phone
builders_club.try_page=set_extras
bundle.dynamic.discounts.enabled=true
bundle.dynamic.maximum.purchase.size=100
cache.revision=2014-10-29 11:38:06
camera.available.effects=hearts_hardlight_02,stars_hardlight_02,security_hardlight,alien_hrd,bluemood_mpl,coffee_mpl,drops_mpl,glitter_hrd, misty_hrd,pinky_nrm,rusty_mpl,shiny_hrd,toxic_hrd, shadow_multiply_02,texture_overlay,frame_gold,frame_gray_4,frame_black_2,frame_wood_2,finger_nrm, color_1,color_2,color_3,color_4,dark_sepia,night_vision,x_ray,increase_saturation, decrease_saturation,hypersaturated,increase_contrast,decr_conrast,hue_bright_sat,Yellow,green_2
camera.competition.enabled=false
camera.effects.enabled=true
camera.enabled.android=1
camera.enabled.desktop=1
camera.enabled.ios=1
camera.enabled=true
camera.launch.ui.position=bottom-icons
camera.photo.publishing.enabled=false
catalog.deep.hierarchy=true
catalog.direct.sms.buy.allowed=false
catalog.direct.sms.buy.length.days=5
catalog.direct.vip.buy.enabled=true
catalog.direct.vip.buy.promo=1
catalog.drag_and_drop=true
catalog.furniture.animation=true
catalog.gallery.lang=en
catalog.large=true
catalog.multiple.purchase.enabled=true
catalog.new.additions.page.open.disabled=false
catalog.new_direct_vip_buy_window=true
catalog.newgiftflow.enabled=true
catalog.pets.adjust_old=false
catalog.pets.enabled=true
catalog.purchase.gift.singleclick.confirmation=true
catalog.purchase.gift.singleclick=true
catalog.purchase.gift_wrapping.default_box_index=0
catalog.restricted_nodes=avatar,perm_costumes,perm_effects,bots,erasmus,erasmus1,erasmus2,erasmus3,spaces_grid,rentables_spaces,guild_frontpage,halloween14_lovelock,hot_furni
catalog.show.purse=false
catalog.vip.benefits.enabled=true
catalog.vip.buy.promo=1,3
catalog.vip.gift.promo=1,3
cfh.faq.url=
Perfavore, Entra oppure Registrati per vedere i Link!

cfh.topic_id.to.sanction_type_id=0=1,1=1,2=1,5=1,3=6,36=1,31=6,6=1,8=1,9=6,10=6,11=6,32=1,33=6,12=1,13=106,34=1,14=1,15=1,16=102,17=1,18=6,19=1,20=1,21=105,22=1,23=1,29=6,35=6
chat.history.disabled=false
chat.muting.enabled=false
chatreviewreporterfeedbackctrl.enabled=true
citizenship.vip.quest.promotion.enabled=true
citizenship.vip.tutorial.quest.campaign.name=VIPTutorials
client.allow.external.links=1
client.allow.facebook.like=1
client.connection.failed.url=${url.prefix}/client_connection_failed
client.fatal.error.url=${url.prefix}/flash_client_error
client.hotel_view.image=
client.minimail.embed.enabled=true
client.news.embed.enabled=true
client.reload.url=${url.prefix}/account/reauthenticate?page=/flash_client
client.toolbar.static.enabled=true
extra_data_service_url=
Perfavore, Entra oppure Registrati per vedere i Link!

club.membership.extend.basic.promotion.enabled=true
club.membership.extend.vip.promotion.enabled=true
club.subscription.disabled=1
club_center.enabled=true
competition.africaDesert.catalogPage=set_desert
competition.africaJungle.catalogPage=set_jungle
competition.africaSavannah.catalogPage=set_savannah
competition.catalogPage=set_desert
competition.currentlyActive=africaDesert
competition.habboween12.catalogPage=new_habboween
competition.majesty.catalogPage=habbolympix2012
competition.requiredFurnis=anc_hot_sands,anc_pyramid_block,anc_trophy_sstone,track12_mini_torch08-08
competition.requiredFurniture=xmasRoomComp,xmas12_fireplace,xmas12_pork,xmas12_pillar1
competition.starsRoomComp2.catalogPage=habbo_stars_furni
competition.timing=2013-03-07 10:00,steamRoomComp;2013-03-21 11:00,
competition.vipParties1.catalogPage=jetset
competition.vipParties2.catalogPage=jetset
competition.vipParties3.catalogPage=jetset
competition.xmasRoomComp.catalogPage=xmas_castles_2012
connection.info.host.no=game-no.habbo.com
connection.info.name.no=Norge
connection.info.port.no=30000,993
currencyiconstyle.big.101.combo=55
currencyiconstyle.big.101=55
currencyiconstyle.big.102.combo=40
currencyiconstyle.big.102=38
currencyiconstyle.big.103=44
currencyiconstyle.big.104.combo=48
currencyiconstyle.big.104=47
currencyiconstyle.big.105.combo=43
currencyiconstyle.big.105=41
currencyiconstyle.small.101=55
currencyiconstyle.small.102=10
currencyiconstyle.small.103=45
currencyiconstyle.small.104=46
currencyiconstyle.small.105=42
custom.chat.styles.enabled=true
daily.quest.campaign.prefix=horse_
daily.quest.room.network.id=4
diamonds.enabled=true
disable.crypto=false
disabled.custom.chat.styles=1,2,8,9,10,18,21,22,23,24,25,26,27,28,30,31,32,33,34,35
disclaimer.credit_spending.enabled=false
duckets.enabled=true
duckets.promo.enabled=false
duckets.upper_limit=650
dynamic.download.name.template=%revision%/hh_furni_xx_%typeid%.cct
dynamic.download.samples.template=%revision%/%typeid%.cct
dynamic.download.url=
Perfavore, Entra oppure Registrati per vedere i Link!

effects.in.avatar.editor=true
effects.reactivate.on.room.entry=true
email.verification.url=${url.prefix}/settings/email
embed.showInRoomInfo=true
eventinfo.enabled=true
external.figurepartlist.txt=
Perfavore, Entra oppure Registrati per vedere i Link!

external.texts.txt=
Perfavore, Entra oppure Registrati per vedere i Link!

extra_data_batches_enabled=true
feed.badge_decorations.album=Feed_Badges
feed.badge_decorations.decoration_id=001
flash.dynamic.avatar.download.configuration=${flash.client.url}figuremap.xml
flash.dynamic.avatar.download.name.template=%libname%.swf
flash.dynamic.avatar.download.url=${flash.client.url}
flash.dynamic.download.name.template=%typeid%.swf
flash.dynamic.download.samples.template=mp3/sound_machine_sample_%typeid%.mp3
flash.dynamic.download.url=
Perfavore, Entra oppure Registrati per vedere i Link!

flash.dynamic.icon.download.name.template=%typeid%%param%_icon.png
free.flow.chat.wide.collider.visualization.enabled=false
friend.furniture.enabled=true
friend_bar.helper.friend_finding.enabled=true
friend_list.persistent_message_status.enabled=true
friend_list.pocket_habbo_status.enabled=true
friendbar.notifications.enabled=true
friendbar.playSnowStorm.enabled=true
friendbar.playSnowStorm.friendsThreshold=1000
friendbar.requests.enabled=true
friendship.category.management.enabled=true
furnidata.load.url=
Perfavore, Entra oppure Registrati per vedere i Link!

furniture.context.menu.widget.enabled=true
game.center.default_game=basejump
game.center.enabled.forStaff=true
game.center.enabled=true
game.center.promoted_game=true
game_center.image.library.url=//habboo-a.akamaihd.net/gamecenter/
games.buy.x.games.enabledtrue
games.buy.x.games.video.enabled=false
games.filter.enabled=false
games.highscores.enabled=true
games.highscores.scrolling.enabled=true
games.tokens.enabled=false
games_icon_enabled=true
gpu.inanimate_furni=xmas14_palm,xmas14_sunbeams
groupforum.poll.period=900
guardians.enabled=true
guide.help.alpha.groupid=340826
guide.help.new.user.tour.popup.delay=66
guides.enabled=true
guidetool.handle.chat_reviews=true
guidetool.handle.help_requests=true
guidetool.handle.tour_requests=true
habbo.gaming.api.enabled=true
habbo_club_buy_disabled=true
habboinfotool.url=
Perfavore, Entra oppure Registrati per vedere i Link!

habbopages.url=
Perfavore, Entra oppure Registrati per vedere i Link!

habboway.enabled=true
habboway.url=
Perfavore, Entra oppure Registrati per vedere i Link!

handitem.drop.enabled=true
handitem.give.enabled=true
handitem.give.pet.enabled=false
hccenter.activity.enabled=true
help.habboway.page.count=8
hotel.teaser=
hotelview.banner.url=
Perfavore, Entra oppure Registrati per vedere i Link!

hover.name.enabled=false
identityTracking.enabled=true
identityinformationtool.url=
Perfavore, Entra oppure Registrati per vedere i Link!

image.library.badgepart.url=
Perfavore, Entra oppure Registrati per vedere i Link!

image.library.catalogue.url=
Perfavore, Entra oppure Registrati per vedere i Link!

image.library.playlist.url=
Perfavore, Entra oppure Registrati per vedere i Link!

image.library.questing.url=
Perfavore, Entra oppure Registrati per vedere i Link!

image.library.url.server=
Perfavore, Entra oppure Registrati per vedere i Link!

image.library.url.stickers=
Perfavore, Entra oppure Registrati per vedere i Link!

image.library.url=
Perfavore, Entra oppure Registrati per vedere i Link!

productdata.load.url=
Perfavore, Entra oppure Registrati per vedere i Link!
external.texts.txt=
Perfavore, Entra oppure Registrati per vedere i Link!
external.override.variables.txt=
Perfavore, Entra oppure Registrati per vedere i Link!
flash.client.url=
Perfavore, Entra oppure Registrati per vedere i Link!
furnidata.load.url=
Perfavore, Entra oppure Registrati per vedere i Link!
external.variables.txt=
Perfavore, Entra oppure Registrati per vedere i Link!
external.override.texts.txt=
Perfavore, Entra oppure Registrati per vedere i Link!
external.figurepartlist.txt=
Perfavore, Entra oppure Registrati per vedere i Link!
"]
productdata.load.url=
Perfavore, Entra oppure Registrati per vedere i Link!

private.image.library.url=
Perfavore, Entra oppure Registrati per vedere i Link!

config
## BiosEmulador Configuração System
## Creditos ao Thiago Araujo - DevBios

## MySQL Configuração
db.hostname=localhost
db.port=3306
db.username=root
db.password=
db.name=habos

## MySQL pooling setup (controla a quantidade de conexões)
db.pool.minsize=10
db.pool.maxsize=250

## Game TCP/IP Configuração
game.tcp.bindip=127.0.0.1
game.tcp.port=30000
game.tcp.conlimit=100000
game.tcp.conperip=2000
game.tcp.enablenagles=true

## MUS TCP/IP Configuração
mus.tcp.bindip=localhost
mus.tcp.port=30001
mus.tcp.allowedaddr=localhost

## Client Configuração
client.ping.enabled=1
client.ping.interval=20000
client.maxrequests=300

## Configuração do Nome do seu hotel
hotel.name=Habbz
license=Habbz Hotel
game.legacy.figure_mutant=1

##Configuração dos Quartos do BiosEmulador
Quartovip=65
Prisao=32

## Configurações para recompesa de tempo online no hotel dos servidores de SAO
# A "MensagemAoReceber" alerta o usuário ("Você recebeu X moedas, X duckets e X diamantes!"
MensagemAoReceber=true
Moedas=50
Duckets=100
Diamantes=0
#<< INTERVALO EM MINUTOS! >>
Intervalo=15

# Vip 1 By: Thiago Araujo
Moedasvip=200
Ducketsvip=200
Diamantesvip=0
# Vip 2 By: Thiago Araujo
Moedassvip=300
Ducketssvip=300
Diamantessvip=0
# Comando Premiar By: Thiago Araujo
Moedaspremiar=500
Ducketspremiar=500
Diamantespremiar=1
NiveltotalGames=200
CodEmblemaNivel=NV

# Rank Minimo de Staff By: Thiago Araujo
MineRankStaff=2

Uso questo pack: Release - Pack - HypeCMS [Bios Emulator]
Se mi capiterà verrò a visitare le varie risposte
Il tuo database si chiama Habbos? Ne sei sicuro?
habos certo che ne sono sicuro
 
Come da titolo, il caricamento del client mi resta bloccato al 76%
Vorrei usarlo per alcuni test che voglio fare, senza far entrare nessuno. Mi interessa solo per me
Client.php
"<?php staffCheck(); Game::sso('client'); //Game::homeRoom(); ESTO LO DESACTIVO PARA QUE VAYA A LOS TERRITORIOS. ?> <html> </body> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title><?= User::userData('username')?> <?= $config['hotelName'] ?></title> <link rel="shortcut icon" type="image/x-icon" href="<?php echo H. $config['skin']; ?>/favicon.png"/> <script src="<?php echo H. $config['skin']; ?>/assets/client/jquery-latest.js" type="text/javascript"></script> <script src="<?php echo H. $config['skin']; ?>/assets/client/jquery-ui.js" type="text/javascript"></script> <script src="<?php echo H. $config['skin']; ?>/assets/client/flashclient.js"></script> <script src="<?php echo H. $config['skin']; ?>/assets/client/flash_detect_min.js"></script> <script src="<?php echo H. $config['skin']; ?>/assets/client/client.js" type="text/javascript"></script> </head> <body> <div class="client__buttons" style="left: 50px;"> <button ngsf-toggle-fullscreen="" class="client__fullscreen" onclick="resizeClient()"><b><i class="fa fa-snowflake-o " aria-hidden="true"></i> <?= $lang["descongelar"] ?></b></button> </div> <div id="client-ui" onclick="resizeClient()" ngsf-toggle-fullscreen=""> <div id="client" style='position:absolute; left:0; right:0; top:0; bottom:0; overflow:hidden; height:100%; width:100%;'></div> </div> <script> var Client = new SWFObject("<?= $hotel['swfFolderSwf'] ?>", "client", "100%", "100%", "10.0.0"); Client.addVariable("client.allow.cross.domain", "0"); Client.addVariable("client.notify.cross.domain", "1"); Client.addVariable("connection.info.host", "<?= $hotel['emuHost'] ?>"); Client.addVariable("connection.info.port", "<?= $hotel['emuPort'] ?>"); Client.addVariable("site.url", "<?= $config['hotelUrl'] ?>"); Client.addVariable("url.prefix", "<?= $config['hotelUrl'] ?>"); Client.addVariable("client.reload.url", "<?= $config['hotelUrl'] ?>/me"); Client.addVariable("client.fatal.error.url", "<?= $config['hotelUrl'] ?>/me"); Client.addVariable("client.connection.failed.url", "<?= $config['hotelUrl'] ?>/me"); Client.addVariable("external.override.texts.txt", "<?= $hotel['external_Texts_Override'] ?>"); Client.addVariable("external.override.variables.txt", "<?= $hotel['external_Variables_Override'] ?>"); Client.addVariable("external.variables.txt", "<?= $hotel['external_Variables'] ?>"); Client.addVariable("external.texts.txt", "<?= $hotel['external_Texts'] ?>"); Client.addVariable("external.figurepartlist.txt", "<?= $hotel['figuredata'] ?>"); Client.addVariable("flash.dynamic.avatar.download.configuration", "<?= $hotel['figuremap'] ?>"); Client.addVariable("productdata.load.url", "<?= $hotel['productdata'] ?>"); Client.addVariable("furnidata.load.url", "<?= $hotel['furnidata'] ?>"); Client.addVariable("use.sso.ticket", "1"); Client.addVariable("sso.ticket", "<?= User::userData('auth_ticket') ?>"); Client.addVariable("processlog.enabled", "0"); Client.addVariable("client.starting", "<?= $hotel['swftitle'] ?>"); Client.addVariable("flash.client.url", "<?= $hotel['swfFolder'] ?>/"); Client.addVariable("flash.client.origin", "popup"); Client.addVariable("nux.lobbies.enabled", "true"); Client.addVariable("country_code", "NL"); Client.addParam('base', '<?= $hotel['swfFolder'] ?>/'); Client.addParam('allowScriptAccess', 'always'); Client.addParam('menu', false); Client.addParam('wmode', "opaque"); Client.write('client'); FlashExternalInterface.signoutUrl = "<?= $config['hotelUrl'] ?>/logout"; </script> <script> //Usuário sem Adobe Flash Player if(!FlashDetect.installed){ window.location.href = "<?= $config['hotelUrl'] ?>/noflash"; } </script> </head> <script type="text/javascript"> 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> <script type="text/javascript"> function resizeClient(){ var theClient = document.getElementById('client'); var theWidth = theClient.clientWidth; theClient.style.width = "10px"; theClient.style.width = theWidth + "px"; } </script> <style> .client__buttons { left: 12px; position: absolute; top: -3px; z-index: 630; border-radius: 5px; } .client__buttons button { box-shadow: 0 3px 0 1px rgba(0,0,0,.3); background-color: #292929; border-color: #41403d; padding: 9px 2px; width: 200px; display: block; border-radius: 5px; float: left; padding-left: 6px; padding-right: 6px; line-height: 1.2; color: #b9b9b9; font-size: 12px; border-style: solid; margin-bottom: 4px; text-align: center; outline: none; } .client__buttons button:hover{ -webkit-animation-name:shakeit; -webkit-animation-duration:1s; -webkit-animation-timing-function:linear; -webkit-animation-iteration-count:infinite; animation-name:shakeit; animation-duration:1s; animation-timing-function:linear; animation-iteration-count:infinite;} @keyframes shakeit{0%{transform:rotate(0deg) translate(2px,1px);} 10%{transform:rotate(10deg) translate(1px,2px);} 20%{transform:rotate(-10deg) translate(3px,0px);} 30%{transform:rotate(0deg) translate(0px,-2px);} 40%{transform:rotate(-10deg) translate(-1px,1px);} 50%{transform:rotate(10deg) translate(1px,-2px);} 60%{transform:rotate(0deg) translate(3px,-1px);} 70%{transform:rotate(10deg) translate(-2px,-1px);} 80%{transform:rotate(-10deg) translate(1px,1px);} 90%{transform:rotate(0deg) translate(-2px,-2px);} 100%{transform:rotate(10deg) translate(-1px,2px);} }</style>"]

Varibles
activity.point.display.enabled=true
ads.domain=
akamai.debugging.enabled=false
app.review.triggers=purchase,respect
app.review.url.android=
app.review.url.ios=itms-apps://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&id=794866182
avatar.editor.character.update.url=
Perfavore, Entra oppure Registrati per vedere i Link!

avatar.editor.url=${url.prefix}/profile
avatar.expressions_menu.enabled=true
avatar.ignored.bubble.enabled=true
avatar.jumping.enabled=false
avatar.signs.enabled=true
avatar.sitting.enabled=true
avatar.widget.enabled=true
avatareditor.allowclubtryout=1
avatareditor.promohabbos=
Perfavore, Entra oppure Registrati per vedere i Link!

avatareditor.show.clubitems.dimmed=true
avatareditor.show.clubitems.first=true
avatareditor.support.sellablefurni=true
badge.display.excluded.badgeCodes=ADM,AMB,BAW01,BAW02,BAW03,BAW04
badge.image.path=
Perfavore, Entra oppure Registrati per vedere i Link!

billboard.adwarning.left.url=AdWarningsUK/ad_warning_L.png
billboard.adwarning.right.url=AdWarningsUK/ad_warning_R.png
builders.club.enabled=false
builders.club.furniture.placement.group.room.enabled=true
builders_club.buy_membership_page=/credits/client/mobile#cell_phone
builders_club.try_page=set_extras
bundle.dynamic.discounts.enabled=true
bundle.dynamic.maximum.purchase.size=100
cache.revision=2014-10-29 11:38:06
camera.available.effects=hearts_hardlight_02,stars_hardlight_02,security_hardlight,alien_hrd,bluemood_mpl,coffee_mpl,drops_mpl,glitter_hrd, misty_hrd,pinky_nrm,rusty_mpl,shiny_hrd,toxic_hrd, shadow_multiply_02,texture_overlay,frame_gold,frame_gray_4,frame_black_2,frame_wood_2,finger_nrm, color_1,color_2,color_3,color_4,dark_sepia,night_vision,x_ray,increase_saturation, decrease_saturation,hypersaturated,increase_contrast,decr_conrast,hue_bright_sat,Yellow,green_2
camera.competition.enabled=false
camera.effects.enabled=true
camera.enabled.android=1
camera.enabled.desktop=1
camera.enabled.ios=1
camera.enabled=true
camera.launch.ui.position=bottom-icons
camera.photo.publishing.enabled=false
catalog.deep.hierarchy=true
catalog.direct.sms.buy.allowed=false
catalog.direct.sms.buy.length.days=5
catalog.direct.vip.buy.enabled=true
catalog.direct.vip.buy.promo=1
catalog.drag_and_drop=true
catalog.furniture.animation=true
catalog.gallery.lang=en
catalog.large=true
catalog.multiple.purchase.enabled=true
catalog.new.additions.page.open.disabled=false
catalog.new_direct_vip_buy_window=true
catalog.newgiftflow.enabled=true
catalog.pets.adjust_old=false
catalog.pets.enabled=true
catalog.purchase.gift.singleclick.confirmation=true
catalog.purchase.gift.singleclick=true
catalog.purchase.gift_wrapping.default_box_index=0
catalog.restricted_nodes=avatar,perm_costumes,perm_effects,bots,erasmus,erasmus1,erasmus2,erasmus3,spaces_grid,rentables_spaces,guild_frontpage,halloween14_lovelock,hot_furni
catalog.show.purse=false
catalog.vip.benefits.enabled=true
catalog.vip.buy.promo=1,3
catalog.vip.gift.promo=1,3
cfh.faq.url=
Perfavore, Entra oppure Registrati per vedere i Link!

cfh.topic_id.to.sanction_type_id=0=1,1=1,2=1,5=1,3=6,36=1,31=6,6=1,8=1,9=6,10=6,11=6,32=1,33=6,12=1,13=106,34=1,14=1,15=1,16=102,17=1,18=6,19=1,20=1,21=105,22=1,23=1,29=6,35=6
chat.history.disabled=false
chat.muting.enabled=false
chatreviewreporterfeedbackctrl.enabled=true
citizenship.vip.quest.promotion.enabled=true
citizenship.vip.tutorial.quest.campaign.name=VIPTutorials
client.allow.external.links=1
client.allow.facebook.like=1
client.connection.failed.url=${url.prefix}/client_connection_failed
client.fatal.error.url=${url.prefix}/flash_client_error
client.hotel_view.image=
client.minimail.embed.enabled=true
client.news.embed.enabled=true
client.reload.url=${url.prefix}/account/reauthenticate?page=/flash_client
client.toolbar.static.enabled=true
extra_data_service_url=
Perfavore, Entra oppure Registrati per vedere i Link!

club.membership.extend.basic.promotion.enabled=true
club.membership.extend.vip.promotion.enabled=true
club.subscription.disabled=1
club_center.enabled=true
competition.africaDesert.catalogPage=set_desert
competition.africaJungle.catalogPage=set_jungle
competition.africaSavannah.catalogPage=set_savannah
competition.catalogPage=set_desert
competition.currentlyActive=africaDesert
competition.habboween12.catalogPage=new_habboween
competition.majesty.catalogPage=habbolympix2012
competition.requiredFurnis=anc_hot_sands,anc_pyramid_block,anc_trophy_sstone,track12_mini_torch08-08
competition.requiredFurniture=xmasRoomComp,xmas12_fireplace,xmas12_pork,xmas12_pillar1
competition.starsRoomComp2.catalogPage=habbo_stars_furni
competition.timing=2013-03-07 10:00,steamRoomComp;2013-03-21 11:00,
competition.vipParties1.catalogPage=jetset
competition.vipParties2.catalogPage=jetset
competition.vipParties3.catalogPage=jetset
competition.xmasRoomComp.catalogPage=xmas_castles_2012
connection.info.host.no=game-no.habbo.com
connection.info.name.no=Norge
connection.info.port.no=30000,993
currencyiconstyle.big.101.combo=55
currencyiconstyle.big.101=55
currencyiconstyle.big.102.combo=40
currencyiconstyle.big.102=38
currencyiconstyle.big.103=44
currencyiconstyle.big.104.combo=48
currencyiconstyle.big.104=47
currencyiconstyle.big.105.combo=43
currencyiconstyle.big.105=41
currencyiconstyle.small.101=55
currencyiconstyle.small.102=10
currencyiconstyle.small.103=45
currencyiconstyle.small.104=46
currencyiconstyle.small.105=42
custom.chat.styles.enabled=true
daily.quest.campaign.prefix=horse_
daily.quest.room.network.id=4
diamonds.enabled=true
disable.crypto=false
disabled.custom.chat.styles=1,2,8,9,10,18,21,22,23,24,25,26,27,28,30,31,32,33,34,35
disclaimer.credit_spending.enabled=false
duckets.enabled=true
duckets.promo.enabled=false
duckets.upper_limit=650
dynamic.download.name.template=%revision%/hh_furni_xx_%typeid%.cct
dynamic.download.samples.template=%revision%/%typeid%.cct
dynamic.download.url=
Perfavore, Entra oppure Registrati per vedere i Link!

effects.in.avatar.editor=true
effects.reactivate.on.room.entry=true
email.verification.url=${url.prefix}/settings/email
embed.showInRoomInfo=true
eventinfo.enabled=true
external.figurepartlist.txt=
Perfavore, Entra oppure Registrati per vedere i Link!

external.texts.txt=
Perfavore, Entra oppure Registrati per vedere i Link!

extra_data_batches_enabled=true
feed.badge_decorations.album=Feed_Badges
feed.badge_decorations.decoration_id=001
flash.dynamic.avatar.download.configuration=${flash.client.url}figuremap.xml
flash.dynamic.avatar.download.name.template=%libname%.swf
flash.dynamic.avatar.download.url=${flash.client.url}
flash.dynamic.download.name.template=%typeid%.swf
flash.dynamic.download.samples.template=mp3/sound_machine_sample_%typeid%.mp3
flash.dynamic.download.url=
Perfavore, Entra oppure Registrati per vedere i Link!

flash.dynamic.icon.download.name.template=%typeid%%param%_icon.png
free.flow.chat.wide.collider.visualization.enabled=false
friend.furniture.enabled=true
friend_bar.helper.friend_finding.enabled=true
friend_list.persistent_message_status.enabled=true
friend_list.pocket_habbo_status.enabled=true
friendbar.notifications.enabled=true
friendbar.playSnowStorm.enabled=true
friendbar.playSnowStorm.friendsThreshold=1000
friendbar.requests.enabled=true
friendship.category.management.enabled=true
furnidata.load.url=
Perfavore, Entra oppure Registrati per vedere i Link!

furniture.context.menu.widget.enabled=true
game.center.default_game=basejump
game.center.enabled.forStaff=true
game.center.enabled=true
game.center.promoted_game=true
game_center.image.library.url=//habboo-a.akamaihd.net/gamecenter/
games.buy.x.games.enabledtrue
games.buy.x.games.video.enabled=false
games.filter.enabled=false
games.highscores.enabled=true
games.highscores.scrolling.enabled=true
games.tokens.enabled=false
games_icon_enabled=true
gpu.inanimate_furni=xmas14_palm,xmas14_sunbeams
groupforum.poll.period=900
guardians.enabled=true
guide.help.alpha.groupid=340826
guide.help.new.user.tour.popup.delay=66
guides.enabled=true
guidetool.handle.chat_reviews=true
guidetool.handle.help_requests=true
guidetool.handle.tour_requests=true
habbo.gaming.api.enabled=true
habbo_club_buy_disabled=true
habboinfotool.url=
Perfavore, Entra oppure Registrati per vedere i Link!

habbopages.url=
Perfavore, Entra oppure Registrati per vedere i Link!

habboway.enabled=true
habboway.url=
Perfavore, Entra oppure Registrati per vedere i Link!

handitem.drop.enabled=true
handitem.give.enabled=true
handitem.give.pet.enabled=false
hccenter.activity.enabled=true
help.habboway.page.count=8
hotel.teaser=
hotelview.banner.url=
Perfavore, Entra oppure Registrati per vedere i Link!

hover.name.enabled=false
identityTracking.enabled=true
identityinformationtool.url=
Perfavore, Entra oppure Registrati per vedere i Link!

image.library.badgepart.url=
Perfavore, Entra oppure Registrati per vedere i Link!

image.library.catalogue.url=
Perfavore, Entra oppure Registrati per vedere i Link!

image.library.playlist.url=
Perfavore, Entra oppure Registrati per vedere i Link!

image.library.questing.url=
Perfavore, Entra oppure Registrati per vedere i Link!

image.library.url.server=
Perfavore, Entra oppure Registrati per vedere i Link!

image.library.url.stickers=
Perfavore, Entra oppure Registrati per vedere i Link!

image.library.url=
Perfavore, Entra oppure Registrati per vedere i Link!

productdata.load.url=
Perfavore, Entra oppure Registrati per vedere i Link!
external.texts.txt=
Perfavore, Entra oppure Registrati per vedere i Link!
external.override.variables.txt=
Perfavore, Entra oppure Registrati per vedere i Link!
flash.client.url=
Perfavore, Entra oppure Registrati per vedere i Link!
furnidata.load.url=
Perfavore, Entra oppure Registrati per vedere i Link!
external.variables.txt=
Perfavore, Entra oppure Registrati per vedere i Link!
external.override.texts.txt=
Perfavore, Entra oppure Registrati per vedere i Link!
external.figurepartlist.txt=
Perfavore, Entra oppure Registrati per vedere i Link!
"]
productdata.load.url=
Perfavore, Entra oppure Registrati per vedere i Link!

private.image.library.url=
Perfavore, Entra oppure Registrati per vedere i Link!

config
## BiosEmulador Configuração System
## Creditos ao Thiago Araujo - DevBios

## MySQL Configuração
db.hostname=localhost
db.port=3306
db.username=root
db.password=
db.name=habos

## MySQL pooling setup (controla a quantidade de conexões)
db.pool.minsize=10
db.pool.maxsize=250

## Game TCP/IP Configuração
game.tcp.bindip=127.0.0.1
game.tcp.port=30000
game.tcp.conlimit=100000
game.tcp.conperip=2000
game.tcp.enablenagles=true

## MUS TCP/IP Configuração
mus.tcp.bindip=localhost
mus.tcp.port=30001
mus.tcp.allowedaddr=localhost

## Client Configuração
client.ping.enabled=1
client.ping.interval=20000
client.maxrequests=300

## Configuração do Nome do seu hotel
hotel.name=Habbz
license=Habbz Hotel
game.legacy.figure_mutant=1

##Configuração dos Quartos do BiosEmulador
Quartovip=65
Prisao=32

## Configurações para recompesa de tempo online no hotel dos servidores de SAO
# A "MensagemAoReceber" alerta o usuário ("Você recebeu X moedas, X duckets e X diamantes!"
MensagemAoReceber=true
Moedas=50
Duckets=100
Diamantes=0
#<< INTERVALO EM MINUTOS! >>
Intervalo=15

# Vip 1 By: Thiago Araujo
Moedasvip=200
Ducketsvip=200
Diamantesvip=0
# Vip 2 By: Thiago Araujo
Moedassvip=300
Ducketssvip=300
Diamantessvip=0
# Comando Premiar By: Thiago Araujo
Moedaspremiar=500
Ducketspremiar=500
Diamantespremiar=1
NiveltotalGames=200
CodEmblemaNivel=NV

# Rank Minimo de Staff By: Thiago Araujo
MineRankStaff=2

Uso questo pack: Release - Pack - HypeCMS [Bios Emulator]
Nell'emulatore hai provato a mettere tutti 127.0.0.1?
 
Come da titolo, il caricamento del client mi resta bloccato al 76%
Vorrei usarlo per alcuni test che voglio fare, senza far entrare nessuno. Mi interessa solo per me
Client.php
"<?php staffCheck(); Game::sso('client'); //Game::homeRoom(); ESTO LO DESACTIVO PARA QUE VAYA A LOS TERRITORIOS. ?> <html> </body> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title><?= User::userData('username')?> <?= $config['hotelName'] ?></title> <link rel="shortcut icon" type="image/x-icon" href="<?php echo H. $config['skin']; ?>/favicon.png"/> <script src="<?php echo H. $config['skin']; ?>/assets/client/jquery-latest.js" type="text/javascript"></script> <script src="<?php echo H. $config['skin']; ?>/assets/client/jquery-ui.js" type="text/javascript"></script> <script src="<?php echo H. $config['skin']; ?>/assets/client/flashclient.js"></script> <script src="<?php echo H. $config['skin']; ?>/assets/client/flash_detect_min.js"></script> <script src="<?php echo H. $config['skin']; ?>/assets/client/client.js" type="text/javascript"></script> </head> <body> <div class="client__buttons" style="left: 50px;"> <button ngsf-toggle-fullscreen="" class="client__fullscreen" onclick="resizeClient()"><b><i class="fa fa-snowflake-o " aria-hidden="true"></i> <?= $lang["descongelar"] ?></b></button> </div> <div id="client-ui" onclick="resizeClient()" ngsf-toggle-fullscreen=""> <div id="client" style='position:absolute; left:0; right:0; top:0; bottom:0; overflow:hidden; height:100%; width:100%;'></div> </div> <script> var Client = new SWFObject("<?= $hotel['swfFolderSwf'] ?>", "client", "100%", "100%", "10.0.0"); Client.addVariable("client.allow.cross.domain", "0"); Client.addVariable("client.notify.cross.domain", "1"); Client.addVariable("connection.info.host", "<?= $hotel['emuHost'] ?>"); Client.addVariable("connection.info.port", "<?= $hotel['emuPort'] ?>"); Client.addVariable("site.url", "<?= $config['hotelUrl'] ?>"); Client.addVariable("url.prefix", "<?= $config['hotelUrl'] ?>"); Client.addVariable("client.reload.url", "<?= $config['hotelUrl'] ?>/me"); Client.addVariable("client.fatal.error.url", "<?= $config['hotelUrl'] ?>/me"); Client.addVariable("client.connection.failed.url", "<?= $config['hotelUrl'] ?>/me"); Client.addVariable("external.override.texts.txt", "<?= $hotel['external_Texts_Override'] ?>"); Client.addVariable("external.override.variables.txt", "<?= $hotel['external_Variables_Override'] ?>"); Client.addVariable("external.variables.txt", "<?= $hotel['external_Variables'] ?>"); Client.addVariable("external.texts.txt", "<?= $hotel['external_Texts'] ?>"); Client.addVariable("external.figurepartlist.txt", "<?= $hotel['figuredata'] ?>"); Client.addVariable("flash.dynamic.avatar.download.configuration", "<?= $hotel['figuremap'] ?>"); Client.addVariable("productdata.load.url", "<?= $hotel['productdata'] ?>"); Client.addVariable("furnidata.load.url", "<?= $hotel['furnidata'] ?>"); Client.addVariable("use.sso.ticket", "1"); Client.addVariable("sso.ticket", "<?= User::userData('auth_ticket') ?>"); Client.addVariable("processlog.enabled", "0"); Client.addVariable("client.starting", "<?= $hotel['swftitle'] ?>"); Client.addVariable("flash.client.url", "<?= $hotel['swfFolder'] ?>/"); Client.addVariable("flash.client.origin", "popup"); Client.addVariable("nux.lobbies.enabled", "true"); Client.addVariable("country_code", "NL"); Client.addParam('base', '<?= $hotel['swfFolder'] ?>/'); Client.addParam('allowScriptAccess', 'always'); Client.addParam('menu', false); Client.addParam('wmode', "opaque"); Client.write('client'); FlashExternalInterface.signoutUrl = "<?= $config['hotelUrl'] ?>/logout"; </script> <script> //Usuário sem Adobe Flash Player if(!FlashDetect.installed){ window.location.href = "<?= $config['hotelUrl'] ?>/noflash"; } </script> </head> <script type="text/javascript"> 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> <script type="text/javascript"> function resizeClient(){ var theClient = document.getElementById('client'); var theWidth = theClient.clientWidth; theClient.style.width = "10px"; theClient.style.width = theWidth + "px"; } </script> <style> .client__buttons { left: 12px; position: absolute; top: -3px; z-index: 630; border-radius: 5px; } .client__buttons button { box-shadow: 0 3px 0 1px rgba(0,0,0,.3); background-color: #292929; border-color: #41403d; padding: 9px 2px; width: 200px; display: block; border-radius: 5px; float: left; padding-left: 6px; padding-right: 6px; line-height: 1.2; color: #b9b9b9; font-size: 12px; border-style: solid; margin-bottom: 4px; text-align: center; outline: none; } .client__buttons button:hover{ -webkit-animation-name:shakeit; -webkit-animation-duration:1s; -webkit-animation-timing-function:linear; -webkit-animation-iteration-count:infinite; animation-name:shakeit; animation-duration:1s; animation-timing-function:linear; animation-iteration-count:infinite;} @keyframes shakeit{0%{transform:rotate(0deg) translate(2px,1px);} 10%{transform:rotate(10deg) translate(1px,2px);} 20%{transform:rotate(-10deg) translate(3px,0px);} 30%{transform:rotate(0deg) translate(0px,-2px);} 40%{transform:rotate(-10deg) translate(-1px,1px);} 50%{transform:rotate(10deg) translate(1px,-2px);} 60%{transform:rotate(0deg) translate(3px,-1px);} 70%{transform:rotate(10deg) translate(-2px,-1px);} 80%{transform:rotate(-10deg) translate(1px,1px);} 90%{transform:rotate(0deg) translate(-2px,-2px);} 100%{transform:rotate(10deg) translate(-1px,2px);} }</style>"]

Varibles
activity.point.display.enabled=true
ads.domain=
akamai.debugging.enabled=false
app.review.triggers=purchase,respect
app.review.url.android=
app.review.url.ios=itms-apps://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&id=794866182
avatar.editor.character.update.url=
Perfavore, Entra oppure Registrati per vedere i Link!

avatar.editor.url=${url.prefix}/profile
avatar.expressions_menu.enabled=true
avatar.ignored.bubble.enabled=true
avatar.jumping.enabled=false
avatar.signs.enabled=true
avatar.sitting.enabled=true
avatar.widget.enabled=true
avatareditor.allowclubtryout=1
avatareditor.promohabbos=
Perfavore, Entra oppure Registrati per vedere i Link!

avatareditor.show.clubitems.dimmed=true
avatareditor.show.clubitems.first=true
avatareditor.support.sellablefurni=true
badge.display.excluded.badgeCodes=ADM,AMB,BAW01,BAW02,BAW03,BAW04
badge.image.path=
Perfavore, Entra oppure Registrati per vedere i Link!

billboard.adwarning.left.url=AdWarningsUK/ad_warning_L.png
billboard.adwarning.right.url=AdWarningsUK/ad_warning_R.png
builders.club.enabled=false
builders.club.furniture.placement.group.room.enabled=true
builders_club.buy_membership_page=/credits/client/mobile#cell_phone
builders_club.try_page=set_extras
bundle.dynamic.discounts.enabled=true
bundle.dynamic.maximum.purchase.size=100
cache.revision=2014-10-29 11:38:06
camera.available.effects=hearts_hardlight_02,stars_hardlight_02,security_hardlight,alien_hrd,bluemood_mpl,coffee_mpl,drops_mpl,glitter_hrd, misty_hrd,pinky_nrm,rusty_mpl,shiny_hrd,toxic_hrd, shadow_multiply_02,texture_overlay,frame_gold,frame_gray_4,frame_black_2,frame_wood_2,finger_nrm, color_1,color_2,color_3,color_4,dark_sepia,night_vision,x_ray,increase_saturation, decrease_saturation,hypersaturated,increase_contrast,decr_conrast,hue_bright_sat,Yellow,green_2
camera.competition.enabled=false
camera.effects.enabled=true
camera.enabled.android=1
camera.enabled.desktop=1
camera.enabled.ios=1
camera.enabled=true
camera.launch.ui.position=bottom-icons
camera.photo.publishing.enabled=false
catalog.deep.hierarchy=true
catalog.direct.sms.buy.allowed=false
catalog.direct.sms.buy.length.days=5
catalog.direct.vip.buy.enabled=true
catalog.direct.vip.buy.promo=1
catalog.drag_and_drop=true
catalog.furniture.animation=true
catalog.gallery.lang=en
catalog.large=true
catalog.multiple.purchase.enabled=true
catalog.new.additions.page.open.disabled=false
catalog.new_direct_vip_buy_window=true
catalog.newgiftflow.enabled=true
catalog.pets.adjust_old=false
catalog.pets.enabled=true
catalog.purchase.gift.singleclick.confirmation=true
catalog.purchase.gift.singleclick=true
catalog.purchase.gift_wrapping.default_box_index=0
catalog.restricted_nodes=avatar,perm_costumes,perm_effects,bots,erasmus,erasmus1,erasmus2,erasmus3,spaces_grid,rentables_spaces,guild_frontpage,halloween14_lovelock,hot_furni
catalog.show.purse=false
catalog.vip.benefits.enabled=true
catalog.vip.buy.promo=1,3
catalog.vip.gift.promo=1,3
cfh.faq.url=
Perfavore, Entra oppure Registrati per vedere i Link!

cfh.topic_id.to.sanction_type_id=0=1,1=1,2=1,5=1,3=6,36=1,31=6,6=1,8=1,9=6,10=6,11=6,32=1,33=6,12=1,13=106,34=1,14=1,15=1,16=102,17=1,18=6,19=1,20=1,21=105,22=1,23=1,29=6,35=6
chat.history.disabled=false
chat.muting.enabled=false
chatreviewreporterfeedbackctrl.enabled=true
citizenship.vip.quest.promotion.enabled=true
citizenship.vip.tutorial.quest.campaign.name=VIPTutorials
client.allow.external.links=1
client.allow.facebook.like=1
client.connection.failed.url=${url.prefix}/client_connection_failed
client.fatal.error.url=${url.prefix}/flash_client_error
client.hotel_view.image=
client.minimail.embed.enabled=true
client.news.embed.enabled=true
client.reload.url=${url.prefix}/account/reauthenticate?page=/flash_client
client.toolbar.static.enabled=true
extra_data_service_url=
Perfavore, Entra oppure Registrati per vedere i Link!

club.membership.extend.basic.promotion.enabled=true
club.membership.extend.vip.promotion.enabled=true
club.subscription.disabled=1
club_center.enabled=true
competition.africaDesert.catalogPage=set_desert
competition.africaJungle.catalogPage=set_jungle
competition.africaSavannah.catalogPage=set_savannah
competition.catalogPage=set_desert
competition.currentlyActive=africaDesert
competition.habboween12.catalogPage=new_habboween
competition.majesty.catalogPage=habbolympix2012
competition.requiredFurnis=anc_hot_sands,anc_pyramid_block,anc_trophy_sstone,track12_mini_torch08-08
competition.requiredFurniture=xmasRoomComp,xmas12_fireplace,xmas12_pork,xmas12_pillar1
competition.starsRoomComp2.catalogPage=habbo_stars_furni
competition.timing=2013-03-07 10:00,steamRoomComp;2013-03-21 11:00,
competition.vipParties1.catalogPage=jetset
competition.vipParties2.catalogPage=jetset
competition.vipParties3.catalogPage=jetset
competition.xmasRoomComp.catalogPage=xmas_castles_2012
connection.info.host.no=game-no.habbo.com
connection.info.name.no=Norge
connection.info.port.no=30000,993
currencyiconstyle.big.101.combo=55
currencyiconstyle.big.101=55
currencyiconstyle.big.102.combo=40
currencyiconstyle.big.102=38
currencyiconstyle.big.103=44
currencyiconstyle.big.104.combo=48
currencyiconstyle.big.104=47
currencyiconstyle.big.105.combo=43
currencyiconstyle.big.105=41
currencyiconstyle.small.101=55
currencyiconstyle.small.102=10
currencyiconstyle.small.103=45
currencyiconstyle.small.104=46
currencyiconstyle.small.105=42
custom.chat.styles.enabled=true
daily.quest.campaign.prefix=horse_
daily.quest.room.network.id=4
diamonds.enabled=true
disable.crypto=false
disabled.custom.chat.styles=1,2,8,9,10,18,21,22,23,24,25,26,27,28,30,31,32,33,34,35
disclaimer.credit_spending.enabled=false
duckets.enabled=true
duckets.promo.enabled=false
duckets.upper_limit=650
dynamic.download.name.template=%revision%/hh_furni_xx_%typeid%.cct
dynamic.download.samples.template=%revision%/%typeid%.cct
dynamic.download.url=
Perfavore, Entra oppure Registrati per vedere i Link!

effects.in.avatar.editor=true
effects.reactivate.on.room.entry=true
email.verification.url=${url.prefix}/settings/email
embed.showInRoomInfo=true
eventinfo.enabled=true
external.figurepartlist.txt=
Perfavore, Entra oppure Registrati per vedere i Link!

external.texts.txt=
Perfavore, Entra oppure Registrati per vedere i Link!

extra_data_batches_enabled=true
feed.badge_decorations.album=Feed_Badges
feed.badge_decorations.decoration_id=001
flash.dynamic.avatar.download.configuration=${flash.client.url}figuremap.xml
flash.dynamic.avatar.download.name.template=%libname%.swf
flash.dynamic.avatar.download.url=${flash.client.url}
flash.dynamic.download.name.template=%typeid%.swf
flash.dynamic.download.samples.template=mp3/sound_machine_sample_%typeid%.mp3
flash.dynamic.download.url=
Perfavore, Entra oppure Registrati per vedere i Link!

flash.dynamic.icon.download.name.template=%typeid%%param%_icon.png
free.flow.chat.wide.collider.visualization.enabled=false
friend.furniture.enabled=true
friend_bar.helper.friend_finding.enabled=true
friend_list.persistent_message_status.enabled=true
friend_list.pocket_habbo_status.enabled=true
friendbar.notifications.enabled=true
friendbar.playSnowStorm.enabled=true
friendbar.playSnowStorm.friendsThreshold=1000
friendbar.requests.enabled=true
friendship.category.management.enabled=true
furnidata.load.url=
Perfavore, Entra oppure Registrati per vedere i Link!

furniture.context.menu.widget.enabled=true
game.center.default_game=basejump
game.center.enabled.forStaff=true
game.center.enabled=true
game.center.promoted_game=true
game_center.image.library.url=//habboo-a.akamaihd.net/gamecenter/
games.buy.x.games.enabledtrue
games.buy.x.games.video.enabled=false
games.filter.enabled=false
games.highscores.enabled=true
games.highscores.scrolling.enabled=true
games.tokens.enabled=false
games_icon_enabled=true
gpu.inanimate_furni=xmas14_palm,xmas14_sunbeams
groupforum.poll.period=900
guardians.enabled=true
guide.help.alpha.groupid=340826
guide.help.new.user.tour.popup.delay=66
guides.enabled=true
guidetool.handle.chat_reviews=true
guidetool.handle.help_requests=true
guidetool.handle.tour_requests=true
habbo.gaming.api.enabled=true
habbo_club_buy_disabled=true
habboinfotool.url=
Perfavore, Entra oppure Registrati per vedere i Link!

habbopages.url=
Perfavore, Entra oppure Registrati per vedere i Link!

habboway.enabled=true
habboway.url=
Perfavore, Entra oppure Registrati per vedere i Link!

handitem.drop.enabled=true
handitem.give.enabled=true
handitem.give.pet.enabled=false
hccenter.activity.enabled=true
help.habboway.page.count=8
hotel.teaser=
hotelview.banner.url=
Perfavore, Entra oppure Registrati per vedere i Link!

hover.name.enabled=false
identityTracking.enabled=true
identityinformationtool.url=
Perfavore, Entra oppure Registrati per vedere i Link!

image.library.badgepart.url=
Perfavore, Entra oppure Registrati per vedere i Link!

image.library.catalogue.url=
Perfavore, Entra oppure Registrati per vedere i Link!

image.library.playlist.url=
Perfavore, Entra oppure Registrati per vedere i Link!

image.library.questing.url=
Perfavore, Entra oppure Registrati per vedere i Link!

image.library.url.server=
Perfavore, Entra oppure Registrati per vedere i Link!

image.library.url.stickers=
Perfavore, Entra oppure Registrati per vedere i Link!

image.library.url=
Perfavore, Entra oppure Registrati per vedere i Link!

productdata.load.url=
Perfavore, Entra oppure Registrati per vedere i Link!
external.texts.txt=
Perfavore, Entra oppure Registrati per vedere i Link!
external.override.variables.txt=
Perfavore, Entra oppure Registrati per vedere i Link!
flash.client.url=
Perfavore, Entra oppure Registrati per vedere i Link!
furnidata.load.url=
Perfavore, Entra oppure Registrati per vedere i Link!
external.variables.txt=
Perfavore, Entra oppure Registrati per vedere i Link!
external.override.texts.txt=
Perfavore, Entra oppure Registrati per vedere i Link!
external.figurepartlist.txt=
Perfavore, Entra oppure Registrati per vedere i Link!
"]
productdata.load.url=
Perfavore, Entra oppure Registrati per vedere i Link!

private.image.library.url=
Perfavore, Entra oppure Registrati per vedere i Link!

config
## BiosEmulador Configuração System
## Creditos ao Thiago Araujo - DevBios

## MySQL Configuração
db.hostname=localhost
db.port=3306
db.username=root
db.password=
db.name=habos

## MySQL pooling setup (controla a quantidade de conexões)
db.pool.minsize=10
db.pool.maxsize=250

## Game TCP/IP Configuração
game.tcp.bindip=127.0.0.1
game.tcp.port=30000
game.tcp.conlimit=100000
game.tcp.conperip=2000
game.tcp.enablenagles=true

## MUS TCP/IP Configuração
mus.tcp.bindip=localhost
mus.tcp.port=30001
mus.tcp.allowedaddr=localhost

## Client Configuração
client.ping.enabled=1
client.ping.interval=20000
client.maxrequests=300

## Configuração do Nome do seu hotel
hotel.name=Habbz
license=Habbz Hotel
game.legacy.figure_mutant=1

##Configuração dos Quartos do BiosEmulador
Quartovip=65
Prisao=32

## Configurações para recompesa de tempo online no hotel dos servidores de SAO
# A "MensagemAoReceber" alerta o usuário ("Você recebeu X moedas, X duckets e X diamantes!"
MensagemAoReceber=true
Moedas=50
Duckets=100
Diamantes=0
#<< INTERVALO EM MINUTOS! >>
Intervalo=15

# Vip 1 By: Thiago Araujo
Moedasvip=200
Ducketsvip=200
Diamantesvip=0
# Vip 2 By: Thiago Araujo
Moedassvip=300
Ducketssvip=300
Diamantessvip=0
# Comando Premiar By: Thiago Araujo
Moedaspremiar=500
Ducketspremiar=500
Diamantespremiar=1
NiveltotalGames=200
CodEmblemaNivel=NV

# Rank Minimo de Staff By: Thiago Araujo
MineRankStaff=2

Uso questo pack: Release - Pack - HypeCMS [Bios Emulator]
Nell'emulatore hai provato a mettere tutti 127.0.0.1?
Si, l'emu non parte proprio.
 
Stato
Discussione chiusa ad ulteriori risposte.