• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!
  • 2026 staff recruitment is open! Check it out and consider applying!

Starting Server problem

Muhmo

New Member
Joined
Jan 13, 2009
Messages
7
Reaction score
0
Hello guy!

Im having a trouble starting the server i just downloaded, NATALA 8.6, recently uploaded data pack.

When i open server and try to login, the character page shows, but i cant enter the game, it just says loading but doent log in.

There is something weird in the TFS thing saying:
mysql_real_query(): SELECT * FROM `z_ots_comunication` WHERE `type` = 'login'; - MYSQL ERROR: Table 'otserv.z_ots_comunication' doesn't exist (1146)

Anyone knows what the problem is? BTW where it says "otserv.z__ots...." thats the name of the data base: "otserv"
 
Try to change your ip in the ip changer to your static IP, your global IP or 127.0.0.1

Server runs fine right? The problem is that you can't connect to it?
 
To fix the zots_com... execute this query:
Code:
CREATE TABLE IF NOT EXISTS `z_ots_comunication` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `login` varchar(255) NOT NULL,
  `type` varchar(255) NOT NULL,
  `action` varchar(255) NOT NULL,
  `param1` varchar(255) NOT NULL,
  `param2` varchar(255) NOT NULL,
  `param3` varchar(255) NOT NULL,
  `param4` varchar(255) NOT NULL,
  `param5` varchar(255) NOT NULL,
  `param6` varchar(255) NOT NULL,
  `param7` varchar(255) NOT NULL,
  `delete_it` int(2) NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=230 ;
 
Back
Top