function onTradeRequest(cid, target, item)
local cfg = {
items = {itemid, itemid, itemid}
}
if isInArray (cfg.items, item.itemid) then
doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "You are not allowed to trade this item")
return false
end
return true
end