HI! I want to reset all players on my server. I want them to have the same eq they had when they first logged in to the server. How to do this?
I did this to reset all simple stuff:
Is there any way to add x items to all player with x vocation? I know how to delete all items but that is not a good idea ;/ Thanks!
I did this to reset all simple stuff:
UPDATE `players` SET `level` = 8, `experience` = 4200, `health` = 185
, `healthmax` = 185, `mana` = 40, `manamax` = 40, `manaspent` = 0, `cap` = 600
, `posx` = 32369, `posy` = 32241, `posz` = 7, `maglevel` = 0, `lastlogin` = 0
, `lastip` = 0, `skull` = 4, `stamina` = 4, `loss_experience` = 100, `loss_mana` = 100
, `loss_skills` = 100, `loss_containers` = 100, `loss_items` = 100, `promotion` = 0
, `marriage` = 0, `onlinetime1` = 0, `onlinetime2` = 0, `onlinetime3` = 0, `onlinetime4` = 0
, `onlinetime5` = 0, `onlinetime6` = 0, `onlinetime7` = 0, `onlinetimeall` = 0
, `onlinetimetoday` = 0, `balance` = 0, `pvp_blessing` = 0, `blessings` = 0
, `lastlogout` = 0, `rank_id` = 0, `skulltime` = 0, `soul` = 0, `lookaddons` = 0
, `looktype` = 136, `looklegs` = 58, `lookhead` = 78, `lookfeet` = 76, `lookbody` = 68, `town_id` = 1;
UPDATE `player_skills` SET `value` = 10, `count` = 0;
Is there any way to add x items to all player with x vocation? I know how to delete all items but that is not a good idea ;/ Thanks!