-
Total de itens
5980 -
Registro em
-
Última visita
-
Dias Ganhos
119
Tipo de Conteúdo
Perfis
Fóruns
Calendário
Publique
Tudo que luanluciano93 postou
-
onde q muda a posiçao do templo?
luanluciano93 respondeu ao tópico de Necamanuel em Suporte Tibia OTServer
RME, CTRL + T -
Outro [SHOW OFF] Preciso de opiniões
luanluciano93 respondeu ao tópico de mastof em Suporte & Pedidos
Alunia Ot -
Derivado Troca de posição com um summon
luanluciano93 respondeu ao tópico de BangxD em Suporte Tibia OTServer
Como eu disse, eu não testei, coloquei para não dar nada errado. -
Derivado Troca de posição com um summon
luanluciano93 respondeu ao tópico de BangxD em Suporte Tibia OTServer
Não testei function onCastSpell(cid, var) local summons = getCreatureSummons(cid) -- verificando se tem summon if table.maxn(summons) < 1 then doPlayerSendCalcel(cid, "You don't have any summons.") return false end -- escolhendo um dos summons por random local random = math.random(1, table.maxn(summons)) local summon = summons[random].uid if not summon then return false end -- pegando a posição do player e do summon local position_player = getCreaturePosition(cid) local position_summon = getCreaturePosition(summon) -- trocando de posição o player e o summon esc -
Talkaction [TFS 1.x] Bank System via Talkaction
luanluciano93 postou um tópico em Scripts tfs 0.4 (OLD)
Em "data/talkactions/talkactions.xml" adicione essa tag: <talkaction words="!bank" separator=" " script="bank.lua"/> Crie um arquivo em "data/talkactions/scripts" com o nome de "bank.lua" e coloque esse código dentro: function Player.deposit(self, amount) if not self:removeMoney(amount) then player:sendTextMessage(MESSAGE_EVENT_ADVANCE, "[BankSystem]: You dont have money with you.") return false end self:setBankBalance(self:getBankBalance() + amount) return true end function Player.withdraw(self, amount) local balance = self:getBankBa -
talkactions
-
Website Layout Avatar Online
luanluciano93 respondeu ao tópico de luanluciano93 em Suporte & Pedidos
Ultimo que to mexendo é esse: -
Gesior AAC Guild Logo News
luanluciano93 respondeu ao tópico de Deyvison Ismael em Suporte Tibia OTServer
Ele monstra naquele rank o rank de frags dos membros da guild. -
Gesior AAC Guild Logo News
luanluciano93 respondeu ao tópico de Deyvison Ismael em Suporte Tibia OTServer
Poste o código da sua página inicial. -
Eai pessoal, to fazendo aqui um layout pra um amigo .. o que acharam? LOGIN: ACCOUNT: RANK: FÓRUM: DONATE: Críticas plx!
-
(Resolvido)ERRO NA HORA DE COMPRAR ITEM NO SHOP!
luanluciano93 respondeu ao tópico de gabrielzika em Suporte Tibia OTServer (Resolvidos)
Execute aquele comando que eu mandei no seu phpmyadmin. -
(Resolvido)Npc Trade Window
luanluciano93 respondeu ao tópico de iceraz em Suporte Tibia OTServer (Resolvidos)
https://github.com/otland/forgottenserver/blob/master/data/npc/lib/npcsystem/modules.lua#L914-L1127 https://github.com/otland/forgottenserver/blob/master/data/npc/lib/npcsystem/modules.lua#L1041 -
Action TFS 1.X Stamina Refuel
luanluciano93 respondeu ao tópico de luanluciano93 em Action, MoveEvent, TalkAction & Spell
qual a versão do seu TFS? Tente mudar: function onUse(player, item, fromPosition, itemEx, toPosition, isHotkey) Por: function onUse(cid, item, fromPosition, itemEx, toPosition, isHotkey) local player = Player(cid) -
Normal Erro Zombie Event
luanluciano93 respondeu ao tópico de Deyvison Ismael em Suporte Tibia OTServer
Posta o arquivo layout.php -
Normal Erro Zombie Event
luanluciano93 respondeu ao tópico de Deyvison Ismael em Suporte Tibia OTServer
Vá na sua database e execute este comando sql: ALTER TABLE `players` ADD `frags` INT NOT NULL DEFAULT '0' O erro é que em sua database na tabela PLAYERS não existe a coluna FRAGS. -
Tutorial de como desativar a mensagem do cliente de atualização que aparece no cliente Tibia 10, habilitar a opção MC para o seu cliente e modificar o cliente para o IP do seu servidor de versão Tibia 10. • Desativando a mensagem de atualização: 1 - Você precisa baixar HexEditor XVI32 anexado a este tópico. 2 - Descompacte e abra Tibia.exe do seu diretório Tibia 10 com HexEditor XVI32. 3 - Substitua as próximas coisas por isso: Procure: 13EF52 Troque: E8 D6 A2 24 00 Por: B8 00 00 00 00 Procure: 27A94 Troque: 6A 00 6a 00 6A 4D EB 26 Por: 90 90 90 90 90 90 EB 2B Pr
-
Ferramenta Elime's NPC Editor
luanluciano93 respondeu ao tópico de luanluciano93 em Ferramentas OpenTibia
Link, imagens e download atualizados no tópico!- 40 respostas
-
- ferramenta
- npc editor
-
(e 1 mais)
Tags:
-
CreatureScript [TFS 1.x] Anunciar quem morreu e quem matou
luanluciano93 respondeu ao tópico de luanluciano93 em Scripts tfs 0.4 (OLD)
Tópico atualizado! -
Normal Tfs 1.2 Delete items em player_items, player_depotitems
luanluciano93 respondeu ao tópico de BennyDz em Suporte Tibia OTServer
function Player.getAllItemsById(self, id) local containers = {} local items = {} for i = CONST_SLOT_HEAD, CONST_SLOT_AMMO do local item = self:getSlotItem(i) if item then if item:isContainer() then table.insert(containers, item:getUniqueId()) elseif not id or id == item:getId() then table.insert(items, item:getUniqueId()) end end end while #containers > 0 do for k = (Container(containers[1]):getSize() - 1), 0, -1 do local tmp = Container(containers[1]):getItem( -
Normal Tfs 1.2 Delete items em player_items, player_depotitems
luanluciano93 respondeu ao tópico de BennyDz em Suporte Tibia OTServer
resolved then? -
Normal Tfs 1.2 Delete items em player_items, player_depotitems
luanluciano93 respondeu ao tópico de BennyDz em Suporte Tibia OTServer
Change: print(os.time() .." >= .. "timerOnExp) for: print(os.time() .." >= ".. timerOnExp) Are you going to use this script? onLogin? I think if this is it, the player will be offline on verification. -
Normal Tfs 1.2 Delete items em player_items, player_depotitems
luanluciano93 respondeu ao tópico de BennyDz em Suporte Tibia OTServer
function onSay(player, words, param) local resultId = db.storeQuery("SELECT `player_id`,`sid`, CONVERT(`attributes` USING latin1) AS `attr` FROM `player_items` WHERE CONVERT(`attributes` USING latin1) LIKE '%timerOnExp%'") if resultId then repeat local attr = result.getStream(resultId, "attr") local timerOnExp = tonumber(string.sub(attr, 25, 34)) if timerOnExp then if os.time() >= timerOnExp then print(os.time() .." >= .. "timerOnExp) local player_id = result.getNumber(resultId, "player_id") local sid = result.getNumber(resultId, "sid") db.query("DEL -
Normal Tfs 1.2 Delete items em player_items, player_depotitems
luanluciano93 respondeu ao tópico de BennyDz em Suporte Tibia OTServer
-- <talkaction words="!test" script="teste.lua" /> function onSay(player, words, param) local resultId = db.storeQuery("SELECT `player_id`,`sid`, CONVERT(`attributes` USING latin1) AS `attr` FROM `player_items` WHERE CONVERT(`attributes` USING latin1) LIKE '%timerOnExp%'") if resultId then repeat local attr = result.getStream(resultId, "attr") local timerOnExp = tonumber(string.sub(attr, 25, 34)) if os.time() >= timerOnExp then local player_id = result.getNumber(resultId, "player_id") local sid = result.getNumber(resultId, "sid") db.query("DELETE FROM `playe -
Normal Tfs 1.2 Delete items em player_items, player_depotitems
luanluciano93 respondeu ao tópico de BennyDz em Suporte Tibia OTServer
-- <talkaction words="!test" script="teste.lua" /> function onSay(player, words, param) local resultId = db.storeQuery("SELECT `player_id`,`sid`, CONVERT(`attributes` USING latin1) AS `attr` FROM `player_items` WHERE CONVERT(`attributes` USING latin1) LIKE '%timerOnExp%'") if resultId then repeat local attr = result.getStream(resultId, "attr") local timerOnExp = tonumber(string.sub(attr, 25, 34)) if os.time() >= timerOnExp then local player_id = result.getNumber(resultId, "player_id") local sid = result.getNumber(resultId, "sid") db.storeQuery("DELETE FROM ` -
Normal Tfs 1.2 Delete items em player_items, player_depotitems
luanluciano93 respondeu ao tópico de BennyDz em Suporte Tibia OTServer
-- <talkaction words="!test" script="teste.lua" /> function onSay(player, words, param) local resultId = db.storeQuery("SELECT `player_id`,`pid`,`sid`,CONVERT(`attributes` USING latin1) AS `attr` FROM `player_items` WHERE CONVERT(`attributes` USING latin1) LIKE '%timerOnExp%'") if resultId then repeat local attr = result.getStream(resultId, "attr") local timerOnExp = tonumber(string.sub(attr, 25, 34)) if os.time() >= timerOnExp then local sid = result.getNumber(resultId, "sid") db.storeQuery("DELETE FROM `player_items` WHERE `sid` = ".. sid) print("deleted!
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!