mysql script/command needed.

vijay

New member
Messages
76
Points
0
Age
33
Location
Bangalore, India.
Emulator
Hello everyone!
I really need a command that unequips head,mid & top gears from all the char's in the server.
And also hairstyle,haircolor & dye.

I need this coz players in my server keeps crashing soon after the ID PW login.

~Thanks.

 
Code:
-- Remove char custom sprite displayUPDATE	`char` SET	`hair_color` = '0',	`clothes_color` = '0',	`head_top` = '0',	`head_mid` = '0',	`head_bottom` = '0',	`robe` = '0'
Code:
-- Unequip all equipments.UPDATE	`inventory` SET	`equip` = '0'
 
Back
Top