Ir para conteúdo
  • 0

[Pedido] Npc Para Vender Itens Vip


murilo775

Pergunta

1 resposta a esta questão

Posts Recomendados

  • 0

Vai em Data>Npc

 

Crie uma Pasta.xml e Renomeie para Item Vip Seller e Coloque Isso!

 

<npc name="Item Vip Seller" script="data/npc/scripts/itemsvip.lua" access="5" lookdir="1">
   <health now="1000" max="1000"/>
<look type="73" head="0" body="0" legs="0" feet="0" addons="3"/>
</npc>  

 

Agora vá em Data>Npcs>Scripts crie uma pasta.lua e renomeie para itemsvip e coloque isso dentro!!

 

local keywordHandler = KeywordHandler:new()
local npcHandler = NpcHandler:new(keywordHandler)
NpcSystem.parseParameters(npcHandler)
local talkState = {}

function onCreatureAppear(cid)                          npcHandler:onCreatureAppear(cid)                        end
function onCreatureDisappear(cid)                       npcHandler:onCreatureDisappear(cid)                     end
function onCreatureSay(cid, type, msg)                  npcHandler:onCreatureSay(cid, type, msg)                end
function onThink()                                      npcHandler:onThink()                                    end

local shopModule = ShopModule:new()
npcHandler:addModule(shopModule)

shopModule:addBuyableItem({'dragon lord pet'}, 2153, 100000, 1, 'dragon lord pet')
shopModule:addBuyableItem({'apocalypse pet'}, 2155, 300000, 1, 'apocalypse pet')
shopModule:addBuyableItem({'morgaroth pet'}, 2154, 300000, 1, 'morgaroth pet')
shopModule:addBuyableItem({'ghazbaran pet'}, 2156, 300000, 1, 'ghazbaran pet')
shopModule:addBuyableItem({'infernatil pet'}, 2158, 300000, 1, 'infernatil pet')
shopModule:addBuyableItem({'lycan pet'}, 5944, 100000, 1, 'lycan pet')
shopModule:addBuyableItem({'lord vampire pet'}, 6500, 100000, 1, 'lord vampire pet')
shopModule:addBuyableItem({'earth monster pet'}, 8298, 1000000, 1, 'earth monster pet')
shopModule:addBuyableItem({'fire monster pet'}, 8303, 1000000, 1, 'fire monster pet')
shopModule:addBuyableItem({'water monster pet'}, 8302, 1000000, 1, 'water monster pet')
shopModule:addBuyableItem({'ice monster pet'}, 8300, 1000000, 1, 'ice monster pet')

npcHandler:setCallback(CALLBACK_MESSAGE_DEFAULT, creatureSayCallback)
npcHandler:addModule(FocusModule:new())

 

 

Depois Edite como Quizer!!! Espero Ter Ajudado!

 

 

Abraços!

Editado por DevilMoon
Link para o comentário
Compartilhar em outros sites

×
×
  • Criar Novo...