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

Solved How to assign a storage to all the players registered?

Joined
Jul 18, 2014
Messages
193
Solutions
2
Reaction score
15
Hi!, i have knowledges about the LUA script, but i don't know how to assign a storage to all the players already registered, dont cares if the players is online or not. I think if it can be possible with a talkaction or something. Can someone help me, please?.

Thanks! :)
 
If you are sure registered players will login sometime again, and you don't care about people that will not play again then do what @up said.
Else you have to do a query
Code:
INSERT INTO player_storages (player_id, key, value) VALUES (1, 2000, 3)

If this is what you want for every player, then pm me and I'll help you further.
 
If you are sure registered players will login sometime again, and you don't care about people that will not play again then do what @up said.
Else you have to do a query
Code:
INSERT INTO player_storages (player_id, key, value) VALUES (1, 2000, 3)

If this is what you want for every player, then pm me and I'll help you further.
Thank you!.
 
Back
Top