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

talkaction to add items in shop (tfs 1.0 - gesior 2012)

Yea take this :)
Code:
    function onSay(cid, words, param, channel)
            local params = param:split(",")
            local price = params[1]
            table.remove(params, 1)
            local desc = table.concat(params, ",")
            local name = ''
            local item1 = getPlayerSlotItem(cid, CONST_SLOT_RIGHT)
            local itemid1 = item1.itemid
            local count1 = item1.type
            local itemid2 = 0
            local count2 = 0
   
            if(itemid1 == 0) then
                    doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Put item in right hand.")
                    return true
            end
         
            if(not price) then
                    doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "You must set price.")
                    return true
            end
         
            price = tonumber(price)
            local itemInfo = ItemType(itemid1)
            local offer_type = 'item'
            if(isContainer(item1.uid)) then
                    local item2 = getContainerItem(item1.uid, 0)
                    if(item2.itemid > 0) then
                            count1 = getContainerCap(item1.uid)
                            itemid2 = item2.itemid
                            count2 = item2.type
                            offer_type = 'container'
                            itemInfo = ItemType(itemid2)
                    end
            end
   
            local count1_desc = (count1 > 0) and count1 or 1
            local count2_desc = (count2 > 0) and count2 or 1
            if(itemid2 == 0) then
                    name = count1_desc .. 'x ' .. itemInfo:getName()
            else
                    name = count1_desc .. 'x ' .. count2_desc .. 'x ' .. itemInfo:getName()
            end
         
            db.query('INSERT INTO `z_shop_offer` (`id` ,`points` ,`itemid1` ,`count1` ,`itemid2` ,`count2` ,`offer_type` ,`offer_description` ,`offer_name`) VALUES (NULL , ' .. price .. ', ' .. itemid1 .. ', ' .. count1 .. ', ' .. itemid2 .. ', ' .. count2 .. ', \'' .. offer_type .. '\', ' .. db.escapeString(desc) .. ', ' .. db.escapeString(name) .. ');')
            doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Item >> " .. name .. " << added to SMS shop. Price is " .. price .. " premium points.")
            return false
    end

and in talkactions.xml:
Code:
<talkaction words="/addshop" separator=" " script="add_shop.lua"/>
 
Back
Top