Ir para conteúdo

001rafa

Membro
  • Registro em

  • Última visita

Tudo que 001rafa postou

  1. amigo, independente de você site ou não o xampp possui index.html padrão ou seja era para estar aparecendo independente de ter site ou não, se possível publique a foto do seu xampp ai, veja se ele da algum erro se der ou não poste o que aparece no console do xampp ai . Depois tb vai no cmd e digita netstat-n e cola aki o q aparecer pra mim pra eu ver
  2. 001rafa postou uma resposta no tópico em Ferramentas OpenTibia
    Comedinha tem previsão pra lançar o da versão 10.40+ ? queria pra versão 10.41
  3. 001rafa postou uma resposta no tópico em Portal
    axei esta aki http://www.tibiaking.com/forum/topic/45133-feliz-halloween/#entry260986
  4. 001rafa postou uma resposta no tópico em Suporte Tibia OTServer
    mostra ai o xml deste guard ai pra gente ver...
  5. Amigo já que não possui um roteador acredito eu que ele já seja liberado por si só. Pois as empresas elas não bloqueam portas normais a não ser de SSL q é a 445... Pelomenos a NET Maceio ela não bloquea... Quando não tinha roteador em casa consegui tranquilamente abrir o servidor apenas liberando o firewall do SO... Caso não consiga liberando apenas as portas no SO ou desligar o firewall... Se não funcionar é por que realmente precisa de pelo menos um roteador.
  6. Amigo vai nessa pasta! No seu caso vc usa otclient? ou cliente normal? se usar otclient você vai na pasta Cliente/Module/Cliente_entergame/Entergame.lua Dentro do entergame.lua procure por >> setUniqueServer ai ao lado vai ter uma linha,mas ou menos asim : EnterGame.setUniqueServer('ip', 7171, 854, 270, 210) você coloca o seu ip e a versao do ot sendo 'ip',porta,versao se ajudei rep++ pf ?
  7. Hehe sem problema! vou reportar para poderem fechar o tópico certo? ----- Esqueci q dando melhor resposta fecha o topico kkkk
  8. Wend não sei se você ja resolveu esse problema dai... mas ta aki a solução adiciona no skills.otui SkillButton id: health height: 15 SkillNameLabel !text: tr('Health') SkillValueLabel debaixo do skill desejado
  9. Amigo aqui no meu servidor ele não criou guild e também como faz para deixar ele fixo no menu la em cima? por que toda vez tenho q ativar em modulos... como faz para tirar?
  10. Amigo segue esse tutorial aki deste topico a primeira parte que vai conseguir retirar isto Fiz agora pouco e deu certo.... http://www.tibiaking.com/forum/topic/43781-modificando-seu-otcliente/ Se ajudei rep++ não custa nada :$
  11. Mas eu não queria deixar ele para poder ficar mudando o ip e tal... Me diz outra coisa o boneco ta andando meio lerdo sei la os movimentos da animação de sprite ta esquisito será q tem como corrigir isso de alguma forma? Vlw pela ajuda
  12. Wend como muda o ip do cliente existe essa possibilidade ? Grato
  13. eu posso transformar ela em 32x32 essa que encontrei '-' agora essa que ta ai que te mandei é a m4a1 '-'
  14. Amigo como seria essa sprite que você deseja? ela seria para o que? poderia detalhar mais ? Encontrei esta daqui veja se resolve o seu problema;
  15. Para vocês! Para criar o ip com 17 e 19 caracteres vocês devem usar o no-ip procura ai no google eu to sem tempo agora de procurar o site e colocar pra vcs acredito q seja essse:https://www.noip.com Para as pessoas que estão com problema de abrir no windows 8 baixem o programa notepad++ e depois copiem o cliente desejado para uma outra pasta pois todos os arquivos que estão no arquivo de programas por meio de bloqueio do ruindows ele não deixa editar com ferramentas não direcionadas... Copiem para uma outra pasta e cola lá em outro diretorio e tentem dinovo... Se ajudei pf like ? :$
  16. Bom amigo, site pra sql lite axo q n existe... pois se eu n me engano ele não permite conexão com servidores externos... Se vc utilizar o mysql ele permite fazer esta conexão externa ou seja puxar dados de um site . No caso sql lite é um servidor com o banco de dados na sua casa e servidor com mysql seria um servidor com o banco de dados "online" onde poderia receber informações de sites por ex: cadastro, score, ranking essas coisas... espero ter ajudado e solucionado sua duvida
  17. Vlwzao manim , eu tinha tirado o do remove lá pra poder não sumir a fonte hehe. mas vlw
  18. servidor 10.40~10.50 Amigo foi aki! foi erro aki no actions.xml ao invez de value era colocar script= Rep+ pra ti! vlwzoa:D podem fechar o topico! vlw
  19. funcionou não amiguinho ;/ Ele não da erro na distro e tb não faz nada ;/
  20. Funcionou não abiguinho ;/ meu potions.lua tb está assim... local ultimateHealthPot = 8473 local greatHealthPot = 7591 local greatManaPot = 7590 local greatSpiritPot = 8472 local strongHealthPot = 7588 local strongManaPot = 7589 local healthPot = 7618 local manaPot = 7620 local smallHealthPot = 8704 local fontHeath = 5078 local antidotePot = 8474 local greatEmptyPot = 7635 local strongEmptyPot = 7634 local emptyPot = 7636 local antidote = Combat() antidote:setParameter(COMBAT_PARAM_TYPE, COMBAT_HEALING) antidote:setParameter(COMBAT_PARAM_EFFECT, CONST_ME_MAGIC_BLUE) antidote:setParameter(COMBAT_PARAM_TARGETCASTERORTOPMOST, true) antidote:setParameter(COMBAT_PARAM_AGGRESSIVE, false) antidote:setParameter(COMBAT_PARAM_DISPEL, CONDITION_POISON) local exhaust = Condition(CONDITION_EXHAUST_HEAL) exhaust:setParameter(CONDITION_PARAM_TICKS, (configManager.getNumber(configKeys.EX_ACTIONS_DELAY_INTERVAL) - 1000)) -- 1000 - 100 due to exact condition timing. -100 doesn't hurt us, and players don't have reminding ~50ms exhaustion. function onUse(cid, item, fromPosition, itemEx, toPosition) if itemEx.itemid ~= 1 or itemEx.type ~= THING_TYPE_PLAYER then return true end local player = Player(cid) if player:getCondition(CONDITION_EXHAUST_HEAL) then player:sendTextMessage(MESSAGE_STATUS_SMALL, Game.getReturnMessage(RETURNVALUE_YOUAREEXHAUSTED)) return true end if item.itemid == antidotePot then if not doCombat(cid, antidote, numberToVariant(cid)) then return false end player:addCondition(exhaust) player:say("Aaaah...", TALKTYPE_MONSTER_SAY) Item(item.uid):remove(1) player:addItem(emptyPot, 1) elseif item.itemid == smallHealthPot then if not doTargetCombatHealth(0, cid, COMBAT_HEALING, 60, 85, CONST_ME_MAGIC_BLUE) then return false end player:addCondition(exhaust) player:say("Aaaah...", TALKTYPE_MONSTER_SAY) elseif item.itemid == fontHeath then if not doTargetCombatHealth(0, cid, COMBAT_HEALING, 5, 50, CONST_ME_MAGIC_BLUE) then return false end player:addCondition(exhaust) player:say("Aaaah...", TALKTYPE_MONSTER_SAY) Item(item.uid):remove(1) player:addItem(emptyPot, 1) elseif item.itemid == healthPot then if not doTargetCombatHealth(0, cid, COMBAT_HEALING, 125, 175, CONST_ME_MAGIC_BLUE) then return false end player:addCondition(exhaust) player:say("Aaaah...", TALKTYPE_MONSTER_SAY) Item(item.uid):remove(1) player:addItem(emptyPot, 1) elseif item.itemid == manaPot then if not doTargetCombatMana(0, cid, 75, 125, CONST_ME_MAGIC_BLUE) then return false end player:addCondition(exhaust) player:say("Aaaah...", TALKTYPE_MONSTER_SAY) Item(item.uid):remove(1) player:addItem(emptyPot, 1) elseif item.itemid == strongHealthPot then if(not isInArray({3,4,7,8}, player:getVocation():getId()) or player:getLevel() < 50) and not(player:getGroup():getId() >= 2) then player:say("This potion can only be consumed by paladins and knights of level 50 or higher.", TALKTYPE_MONSTER_SAY) return true end if not doTargetCombatHealth(0, cid, COMBAT_HEALING, 250, 350, CONST_ME_MAGIC_BLUE) then return false end player:addCondition(exhaust) player:say("Aaaah...", TALKTYPE_MONSTER_SAY) Item(item.uid):remove(1) player:addItem(strongEmptyPot, 1) elseif item.itemid == strongManaPot then if(not isInArray({1,2,3,5,6,7}, player:getVocation():getId()) or player:getLevel() < 50) and not(player:getGroup():getId() >= 2) then player:say("This potion can only be consumed by sorcerers, druids and paladins of level 50 or higher.", TALKTYPE_MONSTER_SAY) return true end if not doTargetCombatMana(0, cid, 115, 185, CONST_ME_MAGIC_BLUE) then return false end player:addCondition(exhaust) player:say("Aaaah...", TALKTYPE_MONSTER_SAY) Item(item.uid):remove(1) player:addItem(strongEmptyPot, 1) elseif item.itemid == greatSpiritPot then if(not isInArray({3, 7}, player:getVocation():getId()) or (player:getLevel() < 80)) and not(player:getGroup():getId() >= 2) then player:say("This potion can only be consumed by paladins of level 80 or higher.", TALKTYPE_MONSTER_SAY) return true end if not doTargetCombatHealth(0, cid, COMBAT_HEALING, 250, 350, CONST_ME_MAGIC_BLUE) or not doTargetCombatMana(0, cid, 100, 200, CONST_ME_MAGIC_BLUE) then return false end player:addCondition(exhaust) player:say("Aaaah...", TALKTYPE_MONSTER_SAY) Item(item.uid):remove(1) player:addItem(greatEmptyPot, 1) elseif item.itemid == greatHealthPot then if(not isInArray({4, 8}, player:getVocation():getId()) or player:getLevel() < 80) and not(player:getGroup():getId() >= 2) then player:say("This potion can only be consumed by knights of level 80 or higher.", TALKTYPE_MONSTER_SAY) return true end if not doTargetCombatHealth(0, cid, COMBAT_HEALING, 425, 575, CONST_ME_MAGIC_BLUE) then return false end player:addCondition(exhaust) player:say("Aaaah...", TALKTYPE_MONSTER_SAY) Item(item.uid):remove(1) player:addItem(greatEmptyPot, 1) elseif item.itemid == greatManaPot then if(not isInArray({1,2,5,6}, player:getVocation():getId()) or player:getLevel() < 80) and not(player:getGroup():getId() >= 2) then player:say("This potion can only be consumed by sorcerers and druids of level 80 or higher.", TALKTYPE_MONSTER_SAY) return true end if not doTargetCombatMana(0, cid, 150, 250, CONST_ME_MAGIC_BLUE) then return false end player:addCondition(exhaust) player:say("Aaaah...", TALKTYPE_MONSTER_SAY) Item(item.uid):remove(1) player:addItem(greatEmptyPot, 1) elseif item.itemid == ultimateHealthPot then if(not isInArray({4, 8}, player:getVocation():getId()) or player:getLevel() < 130) and not(player:getGroup():getId() >= 2) then player:say("This potion can only be consumed by knights of level 130 or higher.", TALKTYPE_MONSTER_SAY) return true end if not doTargetCombatHealth(0, cid, COMBAT_HEALING, 650, 850, CONST_ME_MAGIC_BLUE) then return false end player:addCondition(exhaust) player:say("Aaaah...", TALKTYPE_MONSTER_SAY) Item(item.uid):remove(1) player:addItem(greatEmptyPot, 1) end return true end
  21. e por npc pois os character irão nascer em rookguard ;/
  22. Olá Gente, desculpa vir aki incomodar vocês, gostaria de pedir um script que parece ser facil e tal mas não consegui fazer ;/ Gostaria de colocar uma "fonte magica" que heala quantidade x e quantidade y de hp e mana! Gostaria também de usar o item 5078 alguém pode me ajudar pf?
  23. sim precisa do ip changer mesmo assim, no ip changer coloca 127.0.0.1
  24. O servidor dele é com banco de dados não sqlite mas sim o phpmyadmin... Amigo você precisa instalar o xampp e assim configurar o banco de dados direto no phpmyadmin! Busque um tutorial aqui mesmo no forum de como configurar servidor com phpmyadmin... eu só não procuro agora para lhe mostrar por que estou com um probleminha aki e não tenho tempo para mandar o link.
  25. hehe obrigado, desculpe não ajudar, demorei pois tive alguns problemas aki para fechar o tópico você precisa marcar uma citação como melhor resposta. Ai o moderador irá ver e fechar o tópico

Informação Importante

Confirmação de Termo