Buffa 0 Postado Maio 20, 2010 Share Postado Maio 20, 2010 Olá estou precisando de um npc que venda addon por dinheiro, e tambem deve vender um por um por exemplo female warrior primeiro e assim por diante estou mexendo em um ot 8.50 agradeço desde já. Link para o comentário Compartilhar em outros sites More sharing options...
Felltate 0 Postado Maio 20, 2010 Share Postado Maio 20, 2010 Olha vo posta um q vende tudo d uma vez olha c serve ai. Crie uma bloco de notas chamdo Addon Seller.xml e coloque isso la<?xml version="1.0" encoding="UTF-8"?> <npc name="Addon Seller" script="data/npc/scripts/addons.lua" walkinterval="2000" floorchange="0"> <health now="100" max="100"/> <look type="134" head="78" body="88" legs="0" feet="88" addons="3"/> </npc> agora va em scrpt dos Npcs e cria um bloco de notas chamado Addons.lua e add isso la local keywordHandler = KeywordHandler:new()local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) 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 function buyAddons(cid, message, keywords, parameters, node) --TODO: buyAddons function in modules.lua if(not npcHandler:isFocused(cid)) then return false end local addon = parameters.addon local cost = parameters.cost local premium = (parameters.premium ~= nil and parameters.premium) if isPlayerPremiumCallback == nil or (isPlayerPremiumCallback(cid) and premium) then if doPlayerRemoveMoney(cid, cost) == TRUE then doPlayerAddAddons(cid, addon) npcHandler:say('There, you are now able to use all addons!', cid) else npcHandler:say('Sorry, you do not have enough money.', cid) end else npcHandler:say('I only serve customers with premium accounts.', cid) end keywordHandler:moveUp(1) return true end local node1 = keywordHandler:addKeyword({'first addon'}, StdModule.say, {npcHandler = npcHandler, onlyFocus = true, text = 'Do you want to buy the first addons set for 100000 gold coins?'}) node1:addChildKeyword({'yes'}, buyAddons, {addon = 1, cost = 100000, premium = true}) node1:addChildKeyword({'no'}, StdModule.say, {npcHandler = npcHandler, onlyFocus = true, moveup = 1, text = 'Too expensive, eh?'}) local node2 = keywordHandler:addKeyword({'second addon'}, StdModule.say, {npcHandler = npcHandler, onlyFocus = true, text = 'Would you like to buy the second addons set for 300000 gold coins?'}) node2:addChildKeyword({'yes'}, buyAddons, {addon = 2, cost = 300000, premium = true}) node2:addChildKeyword({'no'}, StdModule.say, {npcHandler = npcHandler, onlyFocus = true, moveup = 1, text = 'Too expensive, eh?'}) keywordHandler:addKeyword({'addon'}, StdModule.say, {npcHandler = npcHandler, onlyFocus = true, text = 'I sell the first addons set for 100000 gold coins and the second addons set for 300000 gold coins.'}) npcHandler:addModule(FocusModule:new()) Link para o comentário Compartilhar em outros sites More sharing options...
Buffa 0 Postado Maio 20, 2010 Autor Share Postado Maio 20, 2010 vlw mas esse eu jah tenhu mas vlw mesmo assim Link para o comentário Compartilhar em outros sites More sharing options...
Posts Recomendados