how to delete a item

Junior Spellweaver
Joined
Jun 7, 2007
Messages
168
Reaction score
0
I need to know how to delete a item from my server

becas item [Halberd of Smiting] is imba and you can 1 hit everting with it
some1 got a sql come for me the id is 19874
 
u need to open up sqlyog...load up the connection.

open up the database you are using.

then click on the items tab.

on the right hand side click the tab thats displays it in a Table.

then scroll down to the item.
on the left hand side on the table theres a white box next to every item. click on the box next to your items name.

then right click and select delete row. confirm...

then your done...

hope this helps

-Bloodshed-
 
or chech out this sql command


DELETE FROM items WHERE entry BETWEEN 'xxxxxx' AND 'xxxxxxx';


just replace xxxxx with the desired weapon entry and you're done


cheerz
 
Back