• 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!

Solved Z_ots_comunication

Gabbe Englund

New Member
Joined
Jun 8, 2014
Messages
14
Reaction score
0
Hi guys, im a new "mapper" and i realy need help with this problem i got here. When i try to open my map on Forgottenserver and this comes up

popups mysql_real_query(): SELECT * FROM z_ots_comunication WHERE `type` = 'login'; - M
YSQL ERROR: Table 'forgottenserver.z_ots_comunication' doesn't exist (1146)

I have tried look on others but nothing helps need 1 expert to help me :) thanks for me (enlgish grammar are bad..)
 
add this table in ur database
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