Sukkaed 56 Report post Posted July 19, 2017 As Arma has always had some troubles dealing with 7 digit numbers, this becomes a problem when database ID in player, construction, container or vehicle table reaches a million. Until someone bothers to add some formatting in Exile before using this number as variable in game, here is database query which will set the id numbers to start from 1 again: UPDATE construction JOIN (SELECT @number := 0) r SET id = @number:=@number +1; ALTER TABLE construction AUTO_INCREMENT = 1; UPDATE container JOIN (SELECT @number := 0) r SET id = @number:=@number +1; ALTER TABLE container AUTO_INCREMENT = 1; UPDATE player JOIN (SELECT @number := 0) r SET id = @number:=@number +1; ALTER TABLE player AUTO_INCREMENT = 1; UPDATE vehicle JOIN (SELECT @number := 0) r SET id = @number:=@number +1; ALTER TABLE vehicle AUTO_INCREMENT = 1; ...and stop the server before doing this. Share this post Link to post Share on other sites