• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

no such table: player_inboxitems

SQL:
CREATE TABLE IF NOT EXISTS `player_inboxitems` 
(
    `player_id` INTEGER NOT NULL, 
    `sid` INTEGER NOT NULL, 
    `pid` INTEGER NOT NULL DEFAULT 0, 
    `itemtype` SMALLINT NOT NULL, 
    `count` SMALLINT NOT NULL DEFAULT 0, 
    `attributes` BLOB NOT NULL, 
    UNIQUE (`player_id`,`sid`), 
    PRIMARY KEY (`player_id`), 
    FOREIGN KEY (`player_id`) REFERENCES `players`(`id`) ON DELETE CASCADE
);
 
should i make it to you?.. you can make it :) just copy and sql table and make it

- - - Updated - - -

Ninja already made it...
 
Back
Top