Kido Posted April 22, 2014 Posted April 22, 2014 I would like to have a script where will make all refined items fromg +10 to +0 I want it to affect only +10 items, other refine items such +9 +8 +7 etc. must be intact Thanks in advance o:! Quote
Capuche Posted April 22, 2014 Posted April 22, 2014 For one player, all? update storage set refine = 0 where refine = 10; update mail set refine = 0 where refine = 10; update guild_storage set refine = 0 where refine = 10; update inventory set refine = 0 where refine = 10; update cart_inventory set refine = 0 where refine = 10; execute this when your server is offline 1 Quote
Kido Posted April 22, 2014 Author Posted April 22, 2014 For one player, all? update storage set refine = 0 where refine = 10; update mail set refine = 0 where refine = 10; update guild_storage set refine = 0 where refine = 10; update inventory set refine = 0 where refine = 10; update cart_inventory set refine = 0 where refine = 10; execute this when your server is offline thanks capuccino <33 huh how to execute it if may i ask? Quote
sandbox Posted April 23, 2014 Posted April 23, 2014 go to your SQL database. and find the query/sql tab, then paste those codes. 1 Quote
Question
Kido
I would like to have a script where will make all refined items fromg +10 to +0
I want it to affect only +10 items, other refine items such +9 +8 +7 etc. must be intact
Thanks in advance o:!
3 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.