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

Lua Data base update

nevix

Tunzodus.net
Joined
Mar 31, 2010
Messages
356
Reaction score
62
Location
Lithuanian
Hello again,

I asking how from lua script update my znote acc shop points. eg: you got 5 points please help a bit :)
 
Code:
local player = Player(cid)
local accountId, points = player:getAccountId(), 5
db.query("UPDATE znote_accounts SET points = points + " .. points .. " WHERE account_id = " .. accountId)
 
Back
Top