Comprar Item
Compre itens no npc
Autor: Luiz
1
2
3
4
5
6
7
8
9
singlehotkey("f10", "Comprar Item NPC", function()
NPC.say("hi")
schedule(500, function() NPC.say("trade") end)
if NPC.isTradeOpen then
schedule(800, function() NPC.buy(ID DO ITEM, QUANTIDADE) end)
end
schedule(2000, function() NPC.closeTrade() end)
schedule(3000, function() NPC.say("bye") end)
end)