• 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 Remove premium points.

spyk3z

Theós:Undying
Joined
Jul 23, 2007
Messages
385
Reaction score
90
Location
Home.
Code:
 function onDeath(cid, corpse, lastHitKiller, mostDamageKiller)
db.executeQuery("UPDATE `accounts` SET `premium_points` = `premium_points` -1 WHERE `id` = " .. getPlayerAccountId(cid) .. ";")
return TRUE
end
Well, thats the script I use. The thing is it doesn't remove the points when the characters die nor does it show any errors in tfs 0.3.5p1
 
Back
Top