yanger
Banned User
Hey, i dont have this option on Accmaker(Addpoints), how can i add points premium manually to some acc? i need it fast, thanks
repp+

--- Script by Kekox.
function onSay(cid, words, param, channel)
if(param == '') then
doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Command requires param.")
return true
end
local t = string.explode(param, ",")
t[1] = tonumber(t[1])
if(not t[1]) then
doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Command requires numeric param.")
return true
end
local pid = cid
if(t[2]) then
pid = getPlayerByNameWildcard(t[2])
if(not pid) then
doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Player " .. t[2] .. " not found.")
return true
end
end
sender = getPlayerByNameWildcard(cid)
doAddPremiumPoints(pid, t[1])
doPlayerSendTextMessage(cid, "You have added ".. t[1] .." premium points to ".. t[2])
doPlayerSendTextMessage(pid, sender .." just gave you ".. t[1] .." premium points.")
return true
end
<talkaction log="yes" words="/addpoints" access="5" event="script" value="addpoints.lua"/>
function doAddPremiumPoints(cid, points)
db.executeQuery("UPDATE `accounts` SET `premium_points` = `premium_points` + " .. points .. " WHERE `id` = " .. getPlayerAccountId(cid) .. ";")
end
accounts -> Find the account and press edit -> Change premium_points@cek~
don't get it :/
![]()
UPDATE `accounts` SET `premium_points` = X WHERE `name` = 'accname'