-- Decide what the loss percentage (0-100 where 0 is never and 100 is always) should be for the following columns:
SET @experience = 0,
@health = 0,
@mana = 0,
@skills = 0,
@items = 0,
@containers = 0;
-- Do not touch these lines.
ALTER TABLE `players` MODIFY `loss_experience` INT(11) DEFAULT @experience, MODIFY `loss_health` INT(11) DEFAULT @health, MODIFY `loss_mana` INT(11) DEFAULT @mana, MODIFY `loss_skills` INT(11) DEFAULT @skills, MODIFY `loss_items` INT(11) DEFAULT @items, MODIFY `loss_containers` INT(11) DEFAULT @containers;
UPDATE `players` SET `loss_experience` = @experience, `loss_health` = @health, `loss_mana` = @mana, `loss_skills` = @skills, `loss_items` = @items, `loss_containers` = @containers;