-
Total de itens
35 -
Registro em
-
Última visita
Sobre Ramon RBN
-
Rank
Neutro
Últimos Visitantes
O bloco dos últimos visitantes está desativado e não está sendo visualizado por outros usuários.
-
Yamili reagiu a uma resposta no tópico: (Resolvido)[Compilar com MSVS] Problema ao tentar compilar o TFS 1.3 & 8.60
-
rodiias reagiu a uma resposta no tópico: (Resolvido)[Compilar com MSVS] Problema ao tentar compilar o TFS 1.3 & 8.60
-
Ramon RBN alterou sua foto pessoal
-
narutomaniacos reagiu a uma resposta no tópico: (Resolvido)[Compilar com MSVS] Problema ao tentar compilar o TFS 1.3 & 8.60
-
DouGlaS Mapper reagiu a uma resposta no tópico: (Resolvido)[Compilar com MSVS] Problema ao tentar compilar o TFS 1.3 & 8.60
-
DouGlaS Mapper reagiu a uma resposta no tópico: [PEDIDO] DODGE NO LOOK
-
Gesior AAC GesiorACC 2019 8.60 UPDATE 29/06/2019
Ramon RBN respondeu ao tópico de Natanael Beckman em Websites
Tem versão para o TFS 1.3 (downgrade 8.60)? -
Ramon RBN reagiu a uma resposta no tópico: (Resolvido)[Compilar com MSVS] Problema ao tentar compilar o TFS 1.3 & 8.60
-
Scripting [PEDIDO] DODGE NO LOOK
Ramon RBN respondeu ao tópico de DouGlaS Mapper em Suporte Tibia OTServer
Editei ali em cima, me chama no discord a gente resolve e depois posto a solução aqui. RBN#2718 -
Scripting [PEDIDO] DODGE NO LOOK
Ramon RBN respondeu ao tópico de DouGlaS Mapper em Suporte Tibia OTServer
Isso deveria estar funcionando O.o function getDodge(cid) local total = 0 for i = 1, 10 do local item = getPlayerSlotItem(cid, i) if item.itemid > 0 then local attr = getItemAttribute(item.uid, "dodgePercent") total = total + (attr ~= nill and attr or 0) end end return total end -
Scripting [PEDIDO] DODGE NO LOOK
Ramon RBN respondeu ao tópico de DouGlaS Mapper em Suporte Tibia OTServer
function getDodge(cid) local total = 0 for i = 1, 10 do local item = getPlayerSlotItem(cid, i) if item.itemid > 0 then local attr = getItemAttribute(item.uid, "dodgePercent") if attr ~= nil then total = total + attr end end end return total end -
Scripting [PEDIDO] DODGE NO LOOK
Ramon RBN respondeu ao tópico de DouGlaS Mapper em Suporte Tibia OTServer
function getDodge(cid) local total = 0 for i = 1, 10 do local item = getPlayerSlotItem(cid, i) if item.itemid > 0 then total = total + getItemAttribute(item.uid, "dodgePercent") end end return total end -
Scripting [PEDIDO] DODGE NO LOOK
Ramon RBN respondeu ao tópico de DouGlaS Mapper em Suporte Tibia OTServer
lua trola muito function getDodge(cid) local total = 0 for i = 1, 10 do local item = getPlayerSlotItem(cid, i) if item.itemid > 0 then local attr = getItemAttribute(item.uid, "dodgePercent") or 0 total = total + attr end end return total end -
Scripting [PEDIDO] DODGE NO LOOK
Ramon RBN respondeu ao tópico de DouGlaS Mapper em Suporte Tibia OTServer
Agora é 100% kkkkkk function getDodge(cid) local total = 0 for i = 1, 10 do local item = getPlayerSlotItem(cid, i) if item.itemid > 0 then local attr = getItemAttribute(item.uid, "dodgePercent") if attr > 0 then total = total + attr end end end return total end -
Eu usei as dll que gera a partir da compilação, joguei tudo na pasta e executei. Testei com outro TFS e parece mesmo ser as dll porém não sei qual, vou procurar aqui. #SOLUÇÃO Consegui resolver por outro fórum, aqui algumas soluções que encontrei: Meu tópico no outro fórum: aqui É importante usar o CMD para executar o seu '.exe', é bem fácil. Abra o CMD, coloque 'cd <destino do seu projeto>', logo após isso use '<seu executador>.exe' para iniciar. Problema com dummy: avoid name conflict from boost::variant Soluçã
-
Scripting [PEDIDO] DODGE NO LOOK
Ramon RBN respondeu ao tópico de DouGlaS Mapper em Suporte Tibia OTServer
function getDodge(cid) local total = 0 for i = 1, 10 do local item = getPlayerSlotItem(cid, i) if item.itemid > 0 then local attr = getItemAttribute(item.uid, "dodgePercent") if attr ~= nil and attr > 0 then total = total + attr end end end return total end -
Scripting [PEDIDO] DODGE NO LOOK
Ramon RBN respondeu ao tópico de DouGlaS Mapper em Suporte Tibia OTServer
function getDodge(cid) local total = 0 for i = 1, 10 do local item = getPlayerSlotItem(cid, i) if item.itemid > 0 then local attr = getItemAttribute(item.itemid, "dodgePercent") if attr ~= nil and attr > 0 then total = total + attr end end end return total end -
Scripting [PEDIDO] DODGE NO LOOK
Ramon RBN respondeu ao tópico de DouGlaS Mapper em Suporte Tibia OTServer
Tenta novamente com o código lá, editei ele. -
Scripting [PEDIDO] DODGE NO LOOK
Ramon RBN respondeu ao tópico de DouGlaS Mapper em Suporte Tibia OTServer
function getDodge(cid) local total = 0 for i = 1, 10 do local item = getPlayerSlotItem(cid, i) if item.itemid > 0 then total = total + (getItemAttribute(item.itemid, "dodgePercent") or 0) end end return total end -
Scripting [PEDIDO] DODGE NO LOOK
Ramon RBN respondeu ao tópico de DouGlaS Mapper em Suporte Tibia OTServer
function getDodge(cid) local total = 0 for i = 1, 10 do item = getPlayerSlotItem(cid, i).itemid if item.itemid > 0 then total = total + (getItemAttribute(item, "dodgePercent") or 0) end end return total end Agora vai -
Scripting [PEDIDO] DODGE NO LOOK
Ramon RBN respondeu ao tópico de DouGlaS Mapper em Suporte Tibia OTServer
Tente uma dessas duas formas, talvez de certo: function getDodge(cid) local total = 0 for i = 1, 10 do total = total + (getItemAttribute(getPlayerSlotItem(cid, i), "dodgePercent") or 0) end return total end function getDodge(cid) local total = 0 for i = 1, 10 do total = total + (getItemAttribute(getPlayerSlotItem(cid, i).itemid, "dodgePercent") or 0) end return total end -
Scripting [PEDIDO] DODGE NO LOOK
Ramon RBN respondeu ao tópico de DouGlaS Mapper em Suporte Tibia OTServer
Qual script que você usa para aparecer no look do item?
TibiaKing
Open Tibia Server
Quer aprender a criar seu próprio servidor de Tibia? Então está no lugar certo, aqui você encontrará milhares de tutorias, scripts, códigos, mapas e utilitários para que você possa fazer o seu próprio servidor de Tibia começando do zero.
Anuncie no TibiaKing
Precisa de mais visibilidade em seus projetos? Quer fazer um plano publicitário para o seu servidor? Anuncie no OTKing e faça sua divulgação, possuímos centenas de acessos simultâneos e milhares diários, com certeza será a sua solução!