• 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!

STORAGE - Command to remove storage and code to remove storage in SQL.

Kuantikum

Member
Joined
Jul 3, 2015
Messages
219
Solutions
1
Reaction score
20
Hello guys!


I would like to know if there is a talkaction script so that I can remove certain storage from a player.

Something like that:
Lua:
/storage "player_name", storage, nill or 1 or -1


On the other hand I would like to know the command line to be able to execute this same function to delete in the MYSQL database.


I'm very grateful 😍😘🥰
 
Hello guys!


I would like to know if there is a talkaction script so that I can remove certain storage from a player.

Something like that:
Lua:
/storage "player_name", storage, nill or 1 or -1


On the other hand I would like to know the command line to be able to execute this same function to delete in the MYSQL database.


I'm very grateful 😍😘🥰
Create talkaction script that execute this:
db.query("DELETE FROM `player_storage` WHERE `player_storage`.`key` = " 123456 ";")
 
Back
Top