Emulator Error

Brenner23

Member
May 15, 2013
44
2
Code:
3/12/2014 10:39:13 AM: System.NullReferenceException: Object reference not set to an instance of an object.
  at GoldTree.HabboHotel.Users.Inventory.InventoryComponent..ctor(UInt32 uint_1, GameClient class16_1, UserDataFactory class12_0) in c:\Users\Joni\Gold-Tree-Emulator\Gold Tree Emulator 3.0\HabboHotel\Users\Inventory\InventoryComponent.cs:line 68
  at GoldTree.HabboHotel.Users.Habbo..ctor(UInt32 UserId, String Username, String Name, String SSO, UInt32 Rank, String Motto, String Look, String Gender, Int32 Credits, Int32 Pixels, Double Activity_Points_LastUpdate, String DataCadastro, Boolean Muted, UInt32 HomeRoom, Int32 NewbieStatus, Boolean BlockNewFriends, Boolean HideInRoom, Boolean HideOnline, Boolean Vip, Int32 Volume, Int32 Points, Boolean AcceptTrading, String LastIp, GameClient Session, UserDataFactory userDataFactory, String last_online, Int32 daily_respect_points, Int32 daily_pet_respect_points, Double vipha_last, Double viphal_last, Boolean FriendStream) in c:\Users\Joni\Gold-Tree-Emulator\Gold Tree Emulator 3.0\HabboHotel\Users\Habbo.cs:line 366
  at GoldTree.HabboHotel.Users.Authenticator.Authenticator.smethod_1(DataRow habboData, String SSOTicket, GameClient Session, UserDataFactory class12_0) in c:\Users\Joni\Gold-Tree-Emulator\Gold Tree Emulator 3.0\HabboHotel\Users\Authenticator\Authenticator.cs:line 33
  at GoldTree.HabboHotel.Users.Authenticator.Authenticator.smethod_0(String string_0, GameClient Session, UserDataFactory class12_0, UserDataFactory class12_1) in c:\Users\Joni\Gold-Tree-Emulator\Gold Tree Emulator 3.0\HabboHotel\Users\Authenticator\Authenticator.cs:line 12
  at GoldTree.HabboHotel.GameClients.GameClient.method_6(String string_0) in c:\Users\Joni\Gold-Tree-Emulator\Gold Tree Emulator 3.0\HabboHotel\GameClients\GameClient.cs:line 98
I got that error, The I restarted the database and the client won't load and just stays black. Also when people try to connect to the client nothing show up on the emulator. All of my ports are open and it was working fine. Only thing I added was the points shop by x9751
 

bingxuan2009

Member
Nov 9, 2011
190
15
Update your webbuild go to habbo.com and check the source of the client they also changed some links.
If you dont know how to do this, im too lazy to explain but i think you can if you can't try not to open a retro because that is the most basic thing and note that habbo hotel change some links so open your client.php and check the source of habbo hotel client and copy the links from habbo client to yours
 

Brenner23

Member
May 15, 2013
44
2
Update your webbuild go to habbo.com and check the source of the client they also changed some links.
If you dont know how to do this, im too lazy to explain but i think you can if you can't try not to open a retro because that is the most basic thing and note that habbo hotel change some links so open your client.php and check the source of habbo hotel client and copy the links from habbo client to yours
Thats not it, I am up to date.
 

Brenner23

Member
May 15, 2013
44
2
yes
Code:
/*
Navicat MySQL Data Transfer

Source Server        : localhost
Source Server Version : 50516
Source Host          : localhost:3306
Source Database      : phx

Target Server Type    : MYSQL
Target Server Version : 50516
File Encoding        : 65001

Date: 2012-03-24 17:16:57
*/

SET FOREIGN_KEY_CHECKS=0;

-- ----------------------------
-- Table structure for `points_badge`
-- ----------------------------
DROP TABLE IF EXISTS `points_badge`;
CREATE TABLE `points_badge` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `badge_cost` text COLLATE latin1_general_ci NOT NULL,
  `badge_code` text COLLATE latin1_general_ci NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `id` (`id`) USING BTREE
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;

-- ----------------------------
-- Records of points_badge
-- ----------------------------

-- ----------------------------
-- Table structure for `points_commands`
-- ----------------------------
DROP TABLE IF EXISTS `points_commands`;
CREATE TABLE `points_commands` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `cost` varchar(255) NOT NULL,
  `command` varchar(255) NOT NULL,
  `name` varchar(255) NOT NULL,
  `desc` varchar(255) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `id` (`id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

-- ----------------------------
-- Records of points_commands
-- ----------------------------

-- ----------------------------
-- Table structure for `points_credits`
-- ----------------------------
DROP TABLE IF EXISTS `points_credits`;
CREATE TABLE `points_credits` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `credits` varchar(255) NOT NULL,
  `points` varchar(255) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `ID` (`id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

-- ----------------------------
-- Records of points_credits
-- ----------------------------

-- ----------------------------
-- Table structure for `points_cron`
-- ----------------------------
DROP TABLE IF EXISTS `points_cron`;
CREATE TABLE `points_cron` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `exc_last` varchar(999) NOT NULL,
  `exc_every` varchar(999) NOT NULL DEFAULT '86400',
  `file` varchar(999) NOT NULL,
  `enable` enum('1','0') NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;

-- ----------------------------
-- Records of points_cron
-- ----------------------------
INSERT INTO `points_cron` VALUES ('1', '1332629188', '86400', 'reward.php', '1');

-- ----------------------------
-- Table structure for `points_daily`
-- ----------------------------
DROP TABLE IF EXISTS `points_daily`;
CREATE TABLE `points_daily` (
  `user_id` varchar(11) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

-- ----------------------------
-- Records of points_daily
-- ----------------------------
INSERT INTO `points_daily` VALUES ('0');

-- ----------------------------
-- Table structure for `points_furni`
-- ----------------------------
DROP TABLE IF EXISTS `points_furni`;
CREATE TABLE `points_furni` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `points` varchar(255) NOT NULL,
  `name` varchar(255) NOT NULL,
  `item_id` varchar(255) NOT NULL,
  `img` varchar(255) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `id` (`id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

-- ----------------------------
-- Records of points_furni
-- ----------------------------

-- ----------------------------
-- Table structure for `points_logs`
-- ----------------------------
DROP TABLE IF EXISTS `points_logs`;
CREATE TABLE `points_logs` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `userid` int(11) NOT NULL,
  `username` varchar(255) NOT NULL,
  `bought` varchar(255) NOT NULL,
  `date` varchar(255) NOT NULL,
  `attempt` varchar(255) NOT NULL,
  `amount` varchar(255) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `id` (`id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

-- ----------------------------
-- Records of points_logs
-- ----------------------------

-- ----------------------------
-- Table structure for `points_pixels`
-- ----------------------------
DROP TABLE IF EXISTS `points_pixels`;
CREATE TABLE `points_pixels` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `points` varchar(255) NOT NULL,
  `pixels` varchar(255) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

-- ----------------------------
-- Records of points_pixels
-- ----------------------------

-- ----------------------------
-- Table structure for `points_room`
-- ----------------------------
DROP TABLE IF EXISTS `points_room`;
CREATE TABLE `points_room` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `coins` int(11) NOT NULL,
  `room` varchar(11) NOT NULL,
  `img` varchar(255) NOT NULL,
  `name` varchar(255) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

-- ----------------------------
-- Records of points_room
-- ----------------------------

-- ----------------------------
-- Table structure for `points_vip`
-- ----------------------------
DROP TABLE IF EXISTS `points_vip`;
CREATE TABLE `points_vip` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `points` varchar(255) NOT NULL,
  `credits` varchar(255) NOT NULL,
  `time` varchar(255) NOT NULL,
  `rank` int(11) NOT NULL DEFAULT '2',
  `pixels` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

-- ----------------------------
-- Records of points_vip
-- ----------------------------

ALTER TABLE `users` ADD COLUMN `vip_time` VARCHAR(255) NOT NULL DEFAULT 0;
 

Users who are viewing this thread

Top