• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Need a Fast Script that Remove all Addons form players! [Database]

This 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;")
 
This 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;")
He needs raw SQL queries, not the ones to be used in Lua scripts :p
 
Back
Top