• 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 TFS 0.3.4 pl2 problem

TKO

Syphero Owner!
Joined
Mar 10, 2008
Messages
2,252
Reaction score
27
Location
Sweden
hey when i start my server i get some kind of error i post a screen shot of it:
problem.JPG
it say that and when i try to login my tibia client crash!
 
Your z_ots_comunication Table is missing

Execute this code in your database and it should work fine then :thumbup:

Code:
CREATE TABLE `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;
 
where should i get that if not put that in? mysql file?
did fix that but when i try to login i get some error in consol and the tibia client crash!
here is a screen
namnlös.JPG
 
where should i get that if not put that in? mysql file?
did fix that but when i try to login i get some error in consol and the tibia client crash!
here is a screen
View attachment 2319

Someone are using bots in your server. That will make the server unstable. Open your config.lua and set:
Code:
autoBanishUnknownBytes = "no"
to
Code:
autoBanishUnknownBytes = "yes"
 
lol no no one is using bot on the server couse no one can login! it crashes when i try to login to my server!
 
never mind found the bug! the bug was the port i used i needed to use port 7173 insted of 81 i change all 81 to 7173 and it worked!
 
Back
Top