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

Solved !items Lever Selling for Points Problem!

killing

Member
Joined
Feb 23, 2012
Messages
815
Reaction score
11
Location
BIH
Lua:
function onUse(cid, item, fromPosition, itemEx, toPosition)
local itemm =  { [2644] = {point = 10}, [2126] = {point = 20},[8293] = {point = 25},[8879] = {point = 33},[2427] = {point = 15},[2504] = {point = 15},[7958] = {point = 15},[2128] = {point = 5},[2472] = {point = 4},[8888] = {point = 19},[7435] = {point = 10},[5907] = {point = 15},[7735] = {point = 25},[2474] = {point = 15},[2493] = {point = 5} }



local iteeeemm = getThingFromPos({x = 1076, y = 746, z = 7, stackpos = 1})




for k, v in pairs(itemm) do
   if (iteeeemm.uid ~= 0 and iteeeemm.itemid == k) then
             doRemoveItem(iteeeemm.uid, 1)

	db.executeQuery("UPDATE `accounts` SET `premium_points` = `premium_points` + " .. v.point .. " WHERE `id` = " .. getPlayerAccountId(cid) .. ";")
	    doCreatureSay(cid, "You have got rid of "..getItemNameById(k).." and you have recievd again the "..v.point.." points.", TALKTYPE_ORANGE_1)

	else
	  doPlayerSendCancel(cid,"not worth it,try something else.!")
	
	 end
end

end

Player loss Item But don't get any POINTS!!!
 
Last edited:
Back
Top