• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

[V26 Emulator] Can you help me with a Emulator?

Joined
Sep 2, 2011
Messages
9
Reaction score
0
Hello Ragezone.

I have a problem with my Emulator (V26 Dissi's edit)
I run the emulator, but i have a error.

Here a screen.

design.PNG - [V26 Emulator] Can you help me with a Emulator? - RaGEZONE Forums

I have Mysql Connector,
I have Xampp,
I have Phpretro,
I have a Emulator

Here's a screen from my database table: System_config

advert 2 - [V26 Emulator] Can you help me with a Emulator? - RaGEZONE Forums

Here's a screen from my emulator (mysql.ini)
spitsuur - [V26 Emulator] Can you help me with a Emulator? - RaGEZONE Forums

Please help me!
 

Attachments

You must be registered for see attachments list
Joined
Oct 4, 2008
Messages
1,050
Reaction score
308
Drop your 'system_config' table, then import this;

PHP:
CREATE TABLE IF NOT EXISTS `system_config` (
`id` int(10) NOT NULL auto_increment,
`skey` varchar(100) collate latin1_general_ci NOT NULL,
`sval` text collate latin1_general_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci AUTO_INCREMENT=39 ;

INSERT INTO `system_config` (`id`, `skey`, `sval`) VALUES
(1, 'server_game_port', '21'),
(2, 'server_game_maxconnections', '300'),
(4, 'server_mus_port', '20'),
(5, 'server_mus_maxconnections', '50000'),
(6, 'server_mus_host', '127.0.0.1'),
(3, 'server_game_backlog', '25000'),
(7, 'server_mus_backlog', '5000'),
(8, 'lang', 'nl'),
(9, 'welcomemessage_enable', '0'),
(10, 'wordfilter_enable', '1'),
(11, 'wordfilter_censor', 'bobba'),
(12, 'chatanims_enable', '1'),
(13, 'trading_enable', '1'),
(14, 'recycler_enable', '1'),
(15, 'recycler_minownertime', '43200'),
(16, 'recycler_session_length', '60'),
(17, 'recycler_session_expirelength', '10080'),
(18, 'rooms_loadadvertisement_img', 'http://ads.habbohotel.co.uk/max/adview.php?zoneid=325&n=hhuk'),
(19, 'rooms_loadadvertisement_uri', 'http://www.holographemulator.com/'),
(20, 'statuses_wave_duration', '1500'),
(21, 'statuses_carryitem_sipamount', '10'),
(22, 'statuses_carryitem_sipinterval', '9000'),
(23, 'statuses_carryitem_sipduration', '1000'),
(24, 'rooms_roomban_duration', '15'),
(25, 'items_stacking_maxstackheight', '20'),
(28, 'navigator_roomsearch_maxresults', '30'),
(27, 'navigator_createroom_maxrooms', '50'),
(26, 'events_categorycount', '11'),
(29, 'navigator_opencategory_maxresults', '30'),
(30, 'navigator_favourites_maxrooms', '30'),
(31, 'events_deadevents_removeinterval', '120'),
(32, 'soundmachine_burntodisk_disktid', '1355'),
(35, 'game_bb_gamelength_seconds', '180'),
(34, 'game_scorewindow_restartgame_seconds', '1200'),
(33, 'game_countdown_seconds', '15'),
(36, 'spectator_bar_enabled', '0'),
(37, 'max_registered_per_ip', '3'),
(38, 'max_online_per_ip', '10');
 
Upvote 0
Back
Top