My query is for removing addons that players have bought/received, not those that they're wearing.Cykotitan Thanks.
But i testet this from Anco and it works
Thx For HELP!
He needs raw SQL queries, not the ones to be used in Lua scriptsThis will remove the addons in use by players...
db.executeQuery("UPDATE `players` SET ´lookaddons` = 0;")
This will remove the privilege of use them...
db.executeQuery("UPDATE `players` SET `value` = 0 WHERE `key` >= 10000000;")
Code:DELETE FROM `player_storage` WHERE `key` >= 10000000;