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

Problem reborn

replace this line:
db.executeQuery('UPDATE players SET rebirths=rebirths+'.. 1 ..' WHERE id='..getPlayerGUID(cid))

For this:
db.executeQuery("UPDATE `players` SET `rebirths` = `rebirths` + " .. 1 .. " WHERE `id` = " .. getPlayerGUID(cid) .. ";")
 
Change the query that sets the lvl to 8 to this.
Code:
db.executeQuery("UPDATE `players` SET `level` = 8, `experience` = 4200 WHERE `id` = "..getPlayerGUID(cid))
 
Back
Top