Jump to content
  • 0

Change +10 Items in to +0


Question

3 answers to this question

Recommended Posts

Posted

Yeah, with a simple sql query you can do that.

Google about UPDATE.

It would be something like

UPDATE `inventory` SET `refine` = 0 WHERE `refine` = 10;

Don't forgot the other tables, like storage, cart_inventory..

Posted

Yeah, with a simple sql query you can do that.

Google about UPDATE.

It would be something like

UPDATE `inventory` SET `refine` = 0 WHERE `refine` = 10;

Don't forgot the other tables, like storage, cart_inventory..

 

Im not that familiar with this.. but to make sure im gonna ask if this is correct..

 

UPDATE `inventory` SET `refine` = 0 WHERE `refine` = 10; // Check for Inventory

UPDATE `storage` SET `refine` = 0 WHERE `refine` = 10; // for storage

UPDATE `cart_inventory` SET `refine` = 0 WHERE `refine` = 10; // cart inventory

UPDATE `guild_storage` SET `refine` = 0 WHERE `refine` = 10; // cart guild storage

 

this will re-refine all the +10 items into +0 right?

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...