NovaEmulator connection issue
Hi!
I have a problem trying to connect in the hotel, everything is configured, I read similar post and I've checked the supersecret.php, variables and user_tickets in CMS, but the error persists. Screenshots and codes attached:
As you can see, the client connects to the emulator and supersecret.php is loaded, but fails to connect properly and the emulator displays 'GenerateSecretKeyMessageComposer'. Supersecret config is in the client:
http://i.imgur.com/6Fqw4tX.png
Code:
"hotelview.banner.url" : "http://dcr.lavvos.pl/corp/gamedata/supersecret.php"
,
user_tickets code is in the client, I checked the tables after log in and apparently works:
PHP Code:
$ticket = md5( $my_id . $token . md5( $toten ) . sha1( $shortname ) );
$time = time();
$ip = $remote_ip;
$check = mysql_query("SELECT null FROM user_tickets WHERE userid = '{$my_id}'");
if($check > 0) {
mysql_query("UPDATE user_tickets SET sessionticket = '{$ticket}', ipaddress = '{$ip}' WHERE userid = '{$my_id}'");
/// User Info fix //
$usersql = mysql_query("SELECT * FROM user_info WHERE user_id = '{$my_id}' ");
$userinfo = mysql_fetch_assoc($usersql);
if ($userinfo <1){
$user = mysql_query("SELECT * FROM users WHERE id = '{$my_id}'");
mysql_query("INSERT INTO `user_info` (`user_id`, `bans`, `cautions`, `reg_timestamp`, `login_timestamp`, `cfhs`, `cfhs_abusive`, `email`, `trade_locks`) VALUES ('{$my_id}', 0, 0, 0, '". time() . "', 0, 0, '" . $user['mail'] . "', 0);");
}
}
else {
mysql_query("INSERT INTO user_tickets (userid, sessionticket, ipaddress) VALUES ('".$my_id."', '" . $ticket . "', '" . $ip . "')");
}
Vars: http://dcr.lavvos.pl/corp/gamedata/e..._variables.txt
I have tried to solve this problem for several days and have made changes of CMS, supersecret, different Habbo.swf... I need some help, so I would appreciate any response.
Re: NovaEmulator connection issue
I've edited the post adding some updated information, I really need your help so I would be grateful for an answer