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

Lua Server Errors

Sir Mido

New Member
Joined
Dec 14, 2015
Messages
62
Reaction score
0
0KpPuh7.png

tfs 1.1
10.90
 
Function addOutfit do not exist in your servers functions.
Item 18516 is already registered in actions.xml.

Unknown coliumn 'cast' in 'field list', solution:
Code:
ALTER TABLE `players` ADD `cast` INT( 11 ) NOT NULL DEFAULT '0';

Table 'global_storage' doesn't exist, solution:
Code:
CREATE TABLE `global_storage` (
`key` INT UNSIGNED NOT NULL,
`value` INT NOT NULL,
PRIMARY KEY(`key`)
) ENGINE = InnoDB;
 
Back
Top