vitorssp 0 Posted January 3, 2013 Share Posted January 3, 2013 Gostaria de criar uma porta q só pode passar qm tiver as 8 insignias, a porta iria checar se o player teria as insignias e teleportar ele para dentro. Obg. Id das insignias: ["Brock"] = 12252, ["Misty"] = 12253, ["Surge"] = 12254, ["Erika"] = 12255, ["Sabrina"] = 12256, ["Koga"] = 12257, ["Blaine"] = 12258, ["Kira"] = 12259} Link to comment Share on other sites More sharing options...
Slicer 1070 Posted January 3, 2013 Share Posted January 3, 2013 (edited) function onUse(cid, item, fromPosition, itemEx, toPosition) local flag = 0 local pos = {x = 100, y = 100, z = 7} for i = 12252, 12259 do if getPlayerItemCount(cid, i) >= 1 then flag = flag+1 end end if flag == 8 then doTeleportThing(cid, pos) doSendMagicEffect(getThingPos(cid), 21) return true end sendMsgToPlayer(cid, 20, "You need all badges to pass!") return true end <action actionid="xxxx" event="script" value="yyyy.lua"/> xxxx = action da porta yyyy = nome do script Edited January 3, 2013 by Slicer Link to comment Share on other sites More sharing options...
vitorssp 0 Posted January 3, 2013 Author Share Posted January 3, 2013 REP +, funcionou, obrigado ! Link to comment Share on other sites More sharing options...
Slicer 1070 Posted January 3, 2013 Share Posted January 3, 2013 sanado, movido Link to comment Share on other sites More sharing options...
StyloMaldoso 330 Posted January 3, 2013 Share Posted January 3, 2013 hmm pokemon league ? haha ^^ Link to comment Share on other sites More sharing options...
Stigal 584 Posted April 20, 2018 Share Posted April 20, 2018 A questão neste tópico de suporte foi encerrada por falta de respostas. Este tópico está fechado e foi movido para Suporte - Tópicos Sem Resposta. + Caso a dúvida não tenha sido resolvida você poderá criar outro tópico solicitando ajuda. * Lembre-se que é permitido dar UP no tópico a cada 24 horas para assim o destacar e manter movimentado. Link to comment Share on other sites More sharing options...
Recommended Posts