• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Change donate items into points.

bybbzan

mapper
Joined
Aug 4, 2012
Messages
809
Solutions
2
Reaction score
136
Location
Sweden
Hello!

I've searched alot after this script but i can't find it anywhere.

How it works:
You put your donate item on a spot, pull the lever
the donate item will disappear and you will get the points for it
on the website.

Thanks in advance.
 
I don't have time to make the script for you, but the following will add the point(s) as long as your DB has the tables:

LUA:
local points = 1
db.executeQuery("UPDATE `accounts` SET `premium_points` = `premium_points` + " .. points .. " WHERE `id` = " .. getPlayerAccountId(cid))
You can find bits and pieces of code throughout the forum to put together this script.
 
Back
Top