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

Some Errors need help.

saltsaft

Elder Druid
Joined
May 29, 2013
Messages
35
Reaction score
0
[error - GlobalEvent Interface]
In a timer event called from:
buffer:onThink
Description:
(luaGetThingFromPos) Title not found

This error spamms about 100 times every 10 minutes or so.




And This Spamms Like Every minute.....

4gi0xf.jpg
 
about the first error there is a problem in the configuration you may added wrong position or something.
about the second error add this to your database
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`)
);
 
i fixed it by my self :D

i googled for like 30 mins and got it
i did need to add it to my globalevent shit file

i had on my database
 
Last edited by a moderator:
Back
Top