Bringer Posted August 19, 2016 Group: Members Topic Count: 162 Topics Per Day: 0.04 Content Count: 748 Reputation: 47 Joined: 03/12/14 Last Seen: April 16 Share Posted August 19, 2016 Hello i have 4 kinds of Weapon 1100 Sword 1400 Lance 1600 Staff 1700 Bow is possible to Delete Only The +10 Weapons? Quote Link to comment Share on other sites More sharing options...
0 Emistry Posted August 19, 2016 Group: Forum Moderator Topic Count: 93 Topics Per Day: 0.02 Content Count: 10018 Reputation: 2369 Joined: 10/28/11 Last Seen: Sunday at 05:32 PM Share Posted August 19, 2016 DELETE FROM `inventory` WHERE `nameid` IN ( 1100,1400,1600 ) AND `refine` = 10; DELETE FROM `cart_inventory` WHERE `nameid` IN ( 1100,1400,1600 ) AND `refine` = 10; DELETE FROM `storage` WHERE `nameid` IN ( 1100,1400,1600 ) AND `refine` = 10; DELETE FROM `guild_storage` WHERE `nameid` IN ( 1100,1400,1600 ) AND `refine` = 10; DELETE FROM `mail` WHERE `nameid` IN ( 1100,1400,1600 ) AND `refine` = 10; DELETE FROM `auction` WHERE `nameid` IN ( 1100,1400,1600 ) AND `refine` = 10; shut down server and execute the query. 1 Quote Link to comment Share on other sites More sharing options...
0 nitrous Posted August 19, 2016 Group: Developer Topic Count: 4 Topics Per Day: 0.00 Content Count: 141 Reputation: 46 Joined: 08/14/12 Last Seen: April 5 Share Posted August 19, 2016 query_sql("DELETE FROM inventory WHERE (nameid = 1100 OR nameid = 1400 OR nameid = 1600 OR nameid = 1700) AND refine = 10;"); query_sql("DELETE FROM cart_inventory WHERE (nameid = 1100 OR nameid = 1400 OR nameid = 1600 OR nameid = 1700) AND refine = 10;"); query_sql("DELETE FROM storage WHERE (nameid = 1100 OR nameid = 1400 OR nameid = 1600 OR nameid = 1700) AND refine = 10;"); query_sql("DELETE FROM guild_storage WHERE (nameid = 1100 OR nameid = 1400 OR nameid = 1600 OR nameid = 1700) AND refine = 10;"); Quote Link to comment Share on other sites More sharing options...
Question
Bringer
Hello i have 4 kinds of Weapon
1100 Sword
1400 Lance
1600 Staff
1700 Bow
is possible to Delete Only The +10 Weapons?
Link to comment
Share on other sites
2 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.