Verifica se tem a tabela player_autoloot
se tiver, ela esta faltando colunas,
Caso tenha essa tabela apaga ela e executa esse script.
CREATE TABLE player_autoloot (
id int NOT NULL AUTO_INCREMENT,
player_id int NOT NULL,
autoloot_list blob,
PRIMARY KEY (id)
);