Kuantikum
Member
- Joined
- Jul 3, 2015
- Messages
- 221
- Solutions
- 1
- Reaction score
- 21
Hello guys,
Could someone help me with this script for version TFS 1.3?
It would be interesting for the script to be able to sell full stacks or more than 1 item at a time, currently it sells only 1 item at a time ...
I am very grateful!


Could someone help me with this script for version TFS 1.3?
It would be interesting for the script to be able to sell full stacks or more than 1 item at a time, currently it sells only 1 item at a time ...
LUA:
local items = {
[11350] = 10000,
[2181] = 5000,
[11296] = 50000,
[11298] = 14000,
[8885] = 100000,
[2519] = 8000,
[2392] = 4000,
[8910] = 12000,
[8871] = 8000,
[2393] = 20000,
[11295] = 10000,
[11299] = 10000,
[2528] = 10000,
[2195] = 40000,
[2516] = 4000,
[2498] = 40000,
[2492] = 45000,
[2656] = 12000,
[2514] = 60000,
[2472] = 150000,
[2520] = 50000,
[2470] = 50000,
[2503] = 50000,
[7897] = 11000,
[2466] = 20000,
[8873] = 3000,
[3968] = 1000
}
function onUse(cid, item, fromPosition, itemEx, toPosition)
local x = items[itemEx.itemid]
if x then
doRemoveItem(itemEx.uid, 1)
doPlayerAddMoney(cid, x)
local info = getItemInfo(itemEx.itemid)
doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "You sold "..info.article.." "..info.name.." for "..x.." gold.")
doSendMagicEffect(getThingPos(cid), CONST_ME_FIREWORK_YELLOW)
else
doPlayerSendCancel(cid, "You can't sell this item.")
doSendMagicEffect(getThingPos(cid), CONST_ME_POFF)
end
return true
end
I am very grateful!