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

TFS 1.X+ Error saving the player

Piifafa

Member
Joined
Apr 16, 2023
Messages
67
Reaction score
16
Estou com esse erro não sei o que fazer, player é criado e tudo mas nunca é salvo!

I have this error I don't know what to do, player is created and everything but it is never saved!


Lua:
[Error - mysql_real_query] Query: INSERT INTO `player_items` (`player_id`, `pid`, `sid`, `itemtype`, `count`, `attributes`) VALUES (5,1,101,3355,1,''),(5,2,102,3084,65535,'��'),(5,3,103,2854,1,''),(5,4,104,3361,1,''),(5,5,105,3430,1,''),(5,6,106,3066,1,''),(5,7,107,3559,1,''),(5,8,108,355
Message: Out of range value for column 'count' at row 2
 
SQL:
CREATE TABLE `player_items` (
  `player_id` int(11) NOT NULL DEFAULT 0,
  `pid` int(11) NOT NULL DEFAULT 0,
  `sid` int(11) NOT NULL DEFAULT 0,
  `itemtype` smallint(6) NOT NULL DEFAULT 0,
  `count` smallint(5) NOT NULL DEFAULT 0,
  `attributes` blob NOT NULL,
  `abilities` blob NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
 
Last edited:
Back
Top