PDA

View Full Version : Updating items via SQL


Jorin
03-11-2022, 01:46 PM
I know this is rather simple but I still suck horribly at sql. Can anyone post a query that will make all spells no drop. Would be very much appreciated!

NatedogEZ
03-11-2022, 06:39 PM
UPDATE items i
SET i.nodrop = 0
WHERE
i.scrolltype = 7 AND
i.scrolleffect > 0;


Obviously backup your database before running such a query :D

Jorin
03-12-2022, 01:07 AM
Awesome ty Nate