Tudo que luanluciano93 postou
-
Quero fazer um servidor inovador!
O tópico foi movido para a área correta, preste mais atenção da próxima vez! Leia as regras do fórum: http://tibiaking.com/forum/topic/1281-regras-gerais/?p=7680 Este tópico foi movido: De: "Tibia Global → Geral" Para: "OTServ → Suporte OTServ → Suporte de OTServ Geral"
- Ideia League of Legends Tibia
-
[Ajuda] Como Criar Um Client Próprio com a Porta 7373
• Trocando Ip do Client: http://www.tibiaking.com/forum/topic/55103-custom-cliente-todas-as-vers%C3%B5es-qualquer-ip/ A porta você edita pelo config.lua. Se quiser ver mais coisas que você pode editar veja esse tópico: http://www.tibiaking.com/forum/topic/43837-list%C3%A3o-de-tutoriais-de-clients/
-
Erro ao abrir BuyPoints
O próprio erro diz o problema ¬¬ Cannot load page donate, file does not exist.
-
como adicionar ?
http://www.tibiaking.com/forum/topic/31768-p%C3%A1gina-de-pagamentos-dep%C3%B3sito-paypal-e-pagseguro/
-
Fazer login ao acessar a página do GESIOR
É só usar essa condição. if($logged) { }
-
[PEDIDO] Sistema de recompensa ao matar boss
Já existem vários tópicos sobre isso: • http://www.tibiaking.com/forum/topic/43649-achievements-reward-chest/page-4 • http://www.tibiaking.com/forum/topic/56629-sistema-de-recompensa-de-boss/ • http://www.tibiaking.com/forum/topic/34336-pedido-reward-box-igual-do-rl/
- [TFS 1.x] TK Vip System
- [TFS 1.x] Mount Doll
- Recompensa por Level (Item, Bank, Addon, Mount)
- [TFS 1.x] TK Vip System
-
(Resolvido)[PEDIDO] Repair Soft
@wil, seria bom colocar a condição: SE TIVER X DINHEIRO ENTÃO, ai executa. function onSay(cid, words, param) local money = 10000 if doPlayerRemoveMoney(cid, money) then if doPlayerRemoveItem(cid, 10021, 1) then doPlayerGiveItem(cid, 6132, 1) doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "Voce reparou um par de botas!") doSendMagicEffect(getPlayerPosition(cid), 40) else doPlayerSendCancel(cid, "Voce Precisa de uma Worn Soft Boots Para Poder Recarega-la!") doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "Voce Precisa de uma Worn Soft Boots Para Poder Recarega-la!") doSendMagicEffect(getPlayerPosition(cid), 2) end else doPlayerSendCancel(cid, "Voce nao tem "..money.." golds para poder recarrega-la.!") end return true end
- [Ajuda] Como Criar Um Client Próprio com a Porta 7373
-
Extreme-BR ACC - ShowOff
@matheusbrito180, eu queria ter um helicóptero, mas não é por isso que eu monto um para-motor (paraquedas com motor) e vou para a fabricante do helicóptero falar mal do produto dela e dizer que o meu é melhor, spokapkoskpoas, e para de floodar meu tópico, e tira o nome do meu AAC que eu criei daquele website que você postou.
-
Layout Naruto ~
@nilo43, obrigado
-
[AJUDA] LISTÃO SOBRE LINUX [HELP]
O tópico foi movido para a área correta, preste mais atenção da próxima vez! Leia as regras do fórum: http://tibiaking.com/forum/topic/1281-regras-gerais/?p=7680 Este tópico foi movido: De: "OTServ → Suporte OTServ → Suporte de WebSites" Para: "OTServ → Suporte OTServ → Suporte de Infraestrutura"
- [NPC] Task RPG
-
Como liberar acesso as quest!
Cara, o script que eu falo são dos NPCS ¬¬
-
Como liberar acesso as quest!
Quais djiins? Poste os scripts deles em spoiler.
- Descongelando Ursagrodon (Montaria)
- Descongelando Ursagrodon (Montaria)
-
(Resolvido)Ursagrodon Mount
http://www.tibiaking.com/forum/topic/56905-descongelando-ursagrodon-montaria/
-
[AJUDA] Mount do ursagrodon
http://www.tibiaking.com/forum/topic/56905-descongelando-ursagrodon-montaria/
-
Descongelando Ursagrodon (Montaria)
Bom pessoal, vi alguns tópicos pedindo esse script, e como precisei dele agora, resolvi faze-lo. Em actions.xml: <action itemid="22726" script="descongelando_ursagrodon.lua" /> Agora em actions/scripts/ crie um arquivo lua com o nome de: descongelando_ursagrodon.lua local itemId = {22729, 22730, 22731, 22732} local porcentagem = 50 local function revertIce(toPosition) local tile = toPosition:getTile() if tile then local sprite = tile:getItemById(itemId[4]) if sprite then sprite:transform(itemId[1]) end end end function onUse(player, item, fromPosition, target, toPosition, isHotkey) if target.itemid == itemId[1] or target.itemid == itemId[2] or target.itemid == itemId[3] then if player:hasMount(38) then return player:sendTextMessage(MESSAGE_EVENT_ADVANCE, 'You already have the obedience of ursagrodon.') end local rand = math.random(1, 100) if rand <= porcentagem then player:sendTextMessage(MESSAGE_EVENT_ADVANCE, 'The ice cracked and the frozen creature with it - be more careful next time!') item:remove(1) target:transform(itemId[4]) addEvent(revertIce, 600000, toPosition) else if target.itemid == itemId[1] then player:sendTextMessage(MESSAGE_EVENT_ADVANCE, 'You managed to melt about half of the ice blook. Quickly now, it\'s ice cold here and the ice block could freeze over again.') target:transform(itemId[2]) elseif target.itemid == itemId[2] then player:sendTextMessage(MESSAGE_EVENT_ADVANCE, 'You managed to melt almost the whole block, only the feet of the creature are still stuck in the ice. Finish the job!') target:transform(itemId[3]) elseif target.itemid == itemId[3] then player:sendTextMessage(MESSAGE_EVENT_ADVANCE, 'The freed ursagrodon look at you with glowing, obedient eyes.') target:transform(itemId[4]) player:addMount(38) item:remove(1) addEvent(revertIce, 600 * 1000, toPosition) end end end return true end Lembrando que precisa editar as fases do congelamento pelo id: local itemId = {22729, 22730, 22731, 22732} local porcentagem = 50 Espero ter ajudado.
-
ERRO SCRIPT SYSTEM WAR
@patricia, qual a versão do seu tfs? Pode ser erro nas sources ...