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

Windows Error With MYSQL (( PLEASE HELP FAST ))

Just a guess, are you using the LUA script that gives players the items they bought from geisor acc, without having geissor acc put the tables into your database? You'll need to add the table to your SQL database.
 
Yes, you are missing the table from Gesior. Try to reinstall it.

Or just run this:
PHP:
CREATE TABLE IF NOT EXISTS `z_ots_comunication` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` 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 ;
 
error "real tibia reset.z_ots_comunication" dosn't exist.

Did this error come when you installed Gesior, or couple days after? :p

Looks suspicious. But I am not a master of Gesior or Mysql D:
 
Back
Top