Ir para conteúdo

Pesquisar na Comunidade

Mostrando resultados para as tags ''addon''.

  • Pesquisar por Tags

    Digite tags separadas por vírgulas
  • Pesquisar por Autor

Tipo de Conteúdo


Fóruns

  • xTibia - Notícias e Suporte
    • Regras
    • Noticias
    • Soluções
    • Projetos Patrocinados
    • Tutoriais para Iniciantes
    • Imprensa
  • OTServ
    • Notícias e Debates
    • OTServlist
    • Downloads
    • Recursos
    • Suporte
    • Pedidos
    • Show-Off
    • Tutoriais
  • OFF-Topic
    • Barzinho do Éks
    • Design
    • Informática

Encontrar resultados em...

Encontrar resultados que contenham...


Data de Criação

  • Início

    FIM


Data de Atualização

  • Início

    FIM


Filtrar pelo número de...

Data de Registro

  • Início

    FIM


Grupo


Sou

  1. Bom galera antes de tudo, pesquisei e não encontrei desse que dá a roupa se tiver o tal level pedido na script. Tou deixando bem explicado para melhor compreensão de todos. O script é simples e já foi testado, estando o mesmo 100% na minha base 8.54 Vamos lá! Vá em data/actions/scripts e crie um arquivo Lua chamado > Outfitquest Feito isso dentro adicione esse código v Em actions.xml você adiciona v Explicação: if item.uid == 12154 then 12154 é a unique id que você vai colocar no baú. Lembrando que vc pode mudar os valores. Obs: Mudando esse valor vc terá que deixar igual na da tag da actions.xml if getPlayerLevel(cid) >= 30 then 30 é o level que o player precisa ter para concluir a quest. Mude ao seu gosto! questOut = getPlayerStorageValue(cid, 31503) 31503 é a storage da quest, recomendo não mudar/caso mude, deixe todos eles iguais pois eles se repetem no script. setPlayerStorageValue(cid, 181655, 1) 181655 é a storage da quest da roupa que vc vai querer que ele ganhe, mas vc me pergunta Ayron/Sepultura onde eu acho essa storage de roupa? Simples, vá em data/XML e abra o outfits.xml Lá vc encontrará algo assim v <outfit id = "59" quest = "181655"> <list gender = "0" lookType = "1498" name = "Christmas" /> <!-- 0 mulher, 1 homem --> <list gender = "1" lookType = "1497" name = "Christmas" /> </ outfit> Note que o valor 181655 é o valor da quest que lista as roupas que deseja dar no baú Atenção aqui ( o script dá a roupa automático de acordo com o sexo do player) ^ ^ Bom se vc já fez tudo deixou as coisas OK falta a ultima parte. Abra o seu (rme map editor) e lá escolha o baú, feito isso aperte com o botão direito do mouse sobre ele e vá em propriedades, abrirá uma janelinha, na parte da Unique ID coloque o valor da unique da script que é o mesmo da tag na actions.xml = 12154 ficando assim v Pronto! salve o mapa e vá testar. ^ ^ Espero ajudar alguém, e se ajudei deixa o Rep! aí para fortalecer a amizade É isso, abraços!
  2. Bom dia, quero pedir ajuda a vcs, pois o shop entrega o item normal no char, já o addon ele nao entrega. Ao comprar qualquer item no site, e se o item nao for entregue ao player, ele fica parado em z_otcomun..., mais quando o player receb o item sai do z_ots.. e vai pro z_shophisotry, simplemente o addon fica parado no z_ots, ele nao e entregue,e as vezes ele da um de doido e acaba entregando pro player, mais o player nao ganha o addon, e como se tivesse comprado, sido entregue, e não recebe o addon. OTX BASED TFS 1.2
  3. RobsonSilva

    Santa Claus

    Bom Dia, Boa Tarde, Boa Noite, e ae galera do Xtibia Tudo Bem Com Vocês? venho aqui trazendo uma script da santa claus, vejo muitas pessoas querendo essa script, então pensei em compartilhar com vocês, vamos lá então! vai na sua base, abre o Actions e cria um arquivo .lua ficando santaclaus.lua dentro dele add isso. vai no seu actions.XML e add essa tag! Te Ajudou? já deixa aquela REP pra ajudar, Tmj Galera <3
  4. Bom dia Galera, Estou com problemas na entrega de montarias, ele entrega todos os itens certinho, porem não está entregando as montarias e addons. alguém pode me ajudar!? -- ### CONFIG ###-- message send to player by script "type" (types you can check in "global.lua")SHOP_MSG_TYPE = 18-- time (in seconds) between connections to SQL database by shop scriptSQL_interval = 30-- ### END OF CONFIG ###function onThink(interval, lastExecution) local result_plr = db.storeQuery("SELECT * FROM z_ots_comunication") if(result_plr ~= false) then repeat local id = tonumber(result.getDataInt(result_plr, "id")) local action = tostring(result.getDataString(result_plr, "action")) local delete = tonumber(result.getDataInt(result_plr, "delete_it")) local cid = getPlayerByName(tostring(result.getDataString(result_plr, "name"))) if(cid) then local itemtogive_id = tonumber(result.getDataInt(result_plr, "param1")) local itemtogive_count = tonumber(result.getDataInt(result_plr, "param2")) local container_id = tonumber(result.getDataInt(result_plr, "param3")) local container_count = tonumber(result.getDataInt(result_plr, "param4")) local add_item_type = tostring(result.getDataString(result_plr, "param5")) local add_item_name = tostring(result.getDataString(result_plr, "param6")) local storage = tostring(result.getDataString(result_plr, "param7")) local received_item = 0 local full_weight = 0 if(add_item_type == 'container') then container_weight = getItemWeight(container_id, 1) if(isItemRune(itemtogive_id)) then items_weight = container_count * getItemWeight(itemtogive_id, 1) else items_weight = container_count * getItemWeight(itemtogive_id, itemtogive_count) end full_weight = items_weight + container_weight else full_weight = getItemWeight(itemtogive_id, itemtogive_count) if(isItemRune(itemtogive_id)) then full_weight = getItemWeight(itemtogive_id, 1) else full_weight = getItemWeight(itemtogive_id, itemtogive_count) end end local free_cap = getPlayerFreeCap(cid) if(full_weight <= free_cap) then if(add_item_type == 'container') then local new_container = doCreateItemEx(container_id, 1) local iter = 0 while(iter ~= container_count) do doAddContainerItem(new_container, itemtogive_id, itemtogive_count) iter = iter + 1 end received_item = doPlayerAddItemEx(cid, new_container) else local new_item = doCreateItemEx(itemtogive_id, itemtogive_count) received_item = doPlayerAddItemEx(cid, new_item) end if(type(received_item) == "number" and received_item == RETURNVALUE_NOERROR) then doPlayerSendTextMessage(cid, SHOP_MSG_TYPE, 'You received '.. add_item_name ..' from Elera Shop.') setPlayerStorageValue(cid,storage+555884621212,1) db.query("DELETE FROM `z_ots_comunication` WHERE `id` = " .. id .. ";") db.query("UPDATE `z_shop_history_item` SET `trans_state`='realized', `trans_real`=" .. os.time() .. " WHERE id = " .. id .. ";") else doPlayerSendTextMessage(cid, SHOP_MSG_TYPE, ' '.. add_item_name ..' from Elera Shop is waiting for you. Please make place for this item in your backpack/hands and wait about '.. SQL_interval ..' seconds to get it.') end else doPlayerSendTextMessage(cid, SHOP_MSG_TYPE, ' '.. add_item_name ..' Elera Shop is waiting for you. It weight is '.. full_weight ..' oz., you have only '.. free_cap ..' oz. free capacity. Put some items in depot and wait about '.. SQL_interval ..' seconds to get it.') end end until not result.next(result_plr) result.free(result_plr) end return trueend Obrigado
  5. Olá queria 1 ajuda com o Underwater walk, tipo no momento esta se voce descer na agua vc fica lento e o poke tb, queria o movement pra que o pokemon ficase + rapido embaixa da agua SE FOR WATER TYPER ou crystal (no caso do shiny onix) tb queria 1 script q ao entrar na agua pegase uma storage, essa storage seria uma newtype[seria o outfit de mergulho] (para nao ficar nos outfits e poder colocar quando quizer) e quando o player entrase na agua automaticamente pegase essa newtype (só se tiver a ganhado a storage) e quando estiver usando o outfit de mergulho a velocidade iria aumentar pra assim ter como andar + rapido embaixo da agua Base usada: DxP Open Source Agradesço desde ja quem tivese a amabilidade de me ajudar ^^
  6. Pessoal alguem teria os addons de shiny togekkiss e togekiss se tiver com fly me ajuda muito? em otb? pfv qualquer 1 pfv me ajudem
  7. bom dia Galerinha Xtibiana estou aqui com 1pedido de um WIDGET gostaria de um 'WIDGET' top level, mais com addons estarei postando uma imagem a baixo de como ficaria o widget, estou usando o exemplo do 'WIDGET' do server 'REAL BAIAK' >: http://realbaiak.com/?subtopic=latestnews DAREI REP +++ a quem ajudar, ou tentar !!! segue a baixo a foto
  8. Olá galera, estou montando um servidor de poketibia, tfs 0.3.6, do 0. Porém não manjo muito em c++, desenvolvi um addon system para pokemons igual pxg, só que estou usando a função "doPlayerSendOutfitWindow", para trocar o addon e cor do pokemon, com isso quando muda o addon do pokemon aparece rapidamente no player e depois no pokemon, e se eu mudar a cor do addon do pokemon, muda a cor da outfit do player. alguem saberia fazer uma função tipo "doPlayerSendOutfitAddonPokeWindow" ou algo do tipo para o meu sistema? me ajudaria muito. Obrigado desde já.
  9. Bom dia. Eu estou procurando por talkaction/script que adicione todos os addons de uma vez ao player. Mesma função do addon doll (!addon citizen) porém que de TODOS os addons disponiveis de uma vez. (Meu ot é 8.60).
  10. Eu gostaria de usar os addons no meu otserv através de itens (até aí eu sei fazer), pois quero colocar como se tivesse um protetor ou guardião junto ao player e que isso apareceria como addon (igual aquele morcego do outfit evoker do tibia ), porém o otserv responde com uma combinação em que o addon 3 é a junção dos addons 1 e 2, e eu gostaria de remover essa combinação para que o addon 3 responde-se como addon 3 e não 1 e 2, e quando eu estava testando, se eu colocasse o item referente ao addon 1 ele aparecia normal, mas quando eu colocava o item referente ao addon 2 (sem remover o item do addon 1) o addon 1 sumia e ficava só o 2 na tela, se alguém tiver alguma dúvida sobre o que estou pedindo é só falar que eu respondo, e sim eu gostaria através dos addons e não por efeito ou outra maneira. Links dos originais (sources sem edição): trunk.r4175 - https://mega.nz/#!LE9FUSyb!8AYWvnnXYeB-f2o6PRShcg2J9cA_PR0Tl-ZL1D8IHhc otclient - https://mega.nz/#!nN0UXKhA!JY8z5S6vX94CVaCMxHVyv-0xY2kfmohYW1zEvJwIk2Q tibiaeditor - https://mega.nz/#!XQ0wUQRD!gco_RMmMySiDgdfuIK2mH4DcUsnQxL_VAfOb7GWekts
  11. alguém poderia me ajudar tenho addon system no meu server mais quando uso fly ou ride ou surf não aparece o addon, addon system: http://www.xtibia.com/forum/topic/194023-download-addons-pokemons-151/
  12. Eu uso o Seguinte Sistema de Addon http://www.xtibia.com/forum/topic/234479-sistema-de-addon/ maisnele não tem suporte a addon com flying ou surf ou habilidade como Shereder Team , Team Slicer. Se Alguem Puder Adaptar ao sistema Agradeceria muito , Irei dar rep + a semana toda. up
  13. Ola alguém pode me ajudar a colocar addon system em PDA?
  14. Bom, eu queria um movements que ao player passasse em cima mudaria para o addon de citizen por exemplo: se fosse female, passaria em cima e ficaria com looktype 136, e ganharia cores aleatorias se fosse male, passaria em cima e ficaria com looktype 128, e ganharia cores aleatorias só isso mesmo, valeu ai pessoal
  15. Queria Sabe como eu coloko script pra eu escolher a cor do meu pokemon com addon
  16. galera eu to com um poblema sobre os addons do pokemon eu du use no addon ele some ai quando eu solto o pokemon ele nao aparece alguem me ajuda OBS nao da nenhum tipo de erro quando eu do use no addon. UPPPPPPPPPPPPPPPPP UPPPPPPPPP
  17. Galera sou novo aqui não sei se alguém explicou isso, procurei rapidamente e não encontrei! É o seguinte eu baixei um ot e reparei que quando o player ganha o addon doll ele escolhe um outfit e ganha ele full + atributos. Porém quando o player está com o outfit full ao mesmo tempo q ele ganha o outfit fica um efeito quando ele anda. Como que eu tiro somente o efeito de quando ele anda e o player continua ganhando os atributos???? Vejam as 2 fotos para entenderem melhor! <?xml version="1.0"?> <outfits> <outfit id="1"> <list gender="0" lookType="136" name="Citizen"> <attribute speed="5"/> <stats maxHealth="100"/> </list> <list gender="1" lookType="128" name="Citizen"> <attribute speed="5"/> <stats maxHealth="100"/> </list> </outfit> <outfit id="2"> <list gender="0" lookType="137" name="Hunter"> <skills dist="3"/> </list> <list gender="1" lookType="129" name="Hunter"> <skills dist="3"/> </list> </outfit> <outfit id="3"> <list gender="0" lookType="138" name="Mage"> <stats magLevel="2"/> <stats maxMana="200"/> </list> <list gender="1" lookType="130" name="Mage"> <stats magLevel="2"/> <stats maxMana="200"/> </list> </outfit> <outfit id="4"> <list gender="0" lookType="139" name="Knight"> <skills sword="3"/> </list> <list gender="1" lookType="131" name="Knight"> <skills sword="3"/> </list> </outfit> <outfit id="5" premium="no"> <list gender="0" lookType="140" name="Noblewoman"> <skills club="3"/> </list> <list gender="1" lookType="132" name="Nobleman"> <skills club="3"/> </list> </outfit> <outfit id="6" premium="no"> <list gender="0" lookType="141" name="Summoner"> <stats magLevel="2"/> <stats maxMana="100"/> </list> <list gender="1" lookType="133" name="Summoner"> <stats magLevel="2"/> <stats maxMana="100"/> </list> </outfit> <outfit id="7" premium="no"> <list gender="0" lookType="142" name="Warrior"> <skills sword="3"/> </list> <list gender="1" lookType="134" name="Warrior"> <skills sword="3"/> </list> </outfit> <outfit id="8" premium="no"> <list gender="0" lookType="147" name="Barbarian"> <skills axe="3"/> </list> <list gender="1" lookType="143" name="Barbarian"> <skills axe="3"/> </list> </outfit> <outfit id="9" premium="no"> <list gender="0" lookType="148" name="Druid"> <stats magLevel="2"/> </list> <list gender="1" lookType="144" name="Druid"> <stats magLevel="2"/> </list> </outfit> <outfit id="10" premium="no"> <list gender="0" lookType="149" name="Wizard"> <stats magLevel="1"/> <stats maxMana="100"/> </list> <list gender="1" lookType="145" name="Wizard"> <stats magLevel="1"/> <stats maxMana="100"/> </list> </outfit> <outfit id="11" premium="no"> <list gender="0" lookType="150" name="Oriental"> <attribute speed="5"/> <stats maxHealth="200"/> <stats maxMana="200"/> </list> <list gender="1" lookType="146" name="Oriental"> <attribute speed="5"/> <stats maxHealth="200"/> <stats maxMana="200"/> </list> </outfit> <outfit id="12" premium="no"> <list gender="0" lookType="155" name="Pirate"> <stats maxHealth="100"/> <skills club="3"/> </list> <list gender="1" lookType="151" name="Pirate"> <stats maxHealth="100"/> <skills club="3"/> </list> </outfit> <outfit id="13" premium="no"> <list gender="0" lookType="156" name="Assassin"> <attribute speed="5"/> <skills dist="2"/> </list> <list gender="1" lookType="152" name="Assassin"> <attribute speed="5"/> <skills dist="2"/> </list> </outfit> <outfit id="14" premium="no" > <list gender="0" lookType="157" name="Beggar"> <stats maxHealth="200"/> </list> <list gender="1" lookType="153" name="Beggar"> <stats maxHealth="200"/> </list> </outfit> <outfit id="15" premium="no" > <list gender="0" lookType="158" name="Shaman"> <stats magLevel="2"/> </list> <list gender="1" lookType="154" name="Shaman"> <stats magLevel="2"/> </list> </outfit> <outfit id="16" premium="no" > <list gender="0" lookType="252" name="Norsewoman"> <skills shielding="2"/> <stats maxHealth="200"/> </list> <list gender="1" lookType="251" name="Norseman"> <skills shielding="2"/> <stats maxHealth="200"/> </list> </outfit> <outfit id="17" premium="no" > <list gender="0" lookType="269" name="Nightmare"> <skills shielding="3"/> </list> <list gender="1" lookType="268" name="Nightmare"> <skills shielding="3"/> </list> </outfit> <outfit id="18" premium="no"> <list gender="0" lookType="270" name="Jester"> <stats maxMana="100"/> <attribute speed="5"/> <stats maxHealth="100"/> </list> <list gender="1" lookType="273" name="Jester"> <stats maxMana="100"/> <attribute speed="5"/> <stats maxHealth="100"/> </list> </outfit> <outfit id="19" premium="no"> <list gender="0" lookType="279" name="Brotherhood"> <reflect percentAll="20"/> <stats magLevel="1"/> <stats maxHealth="100"/> </list> <list gender="1" lookType="278" name="Brotherhood"> <stats magLevel="1"/> <stats maxHealth="100"/> </list> </outfit> <outfit id="20" premium="no" > <list gender="0" lookType="288" name="Demonhunter"> <attribute speed="10"/> <stats maxHealth="200"/> </list> <list gender="1" lookType="289" name="Demonhunter"> <attribute speed="10"/> <stats maxHealth="200"/> </list> </outfit> <outfit id="21" premium="no" > <list gender="0" lookType="324" name="Yalaharian"> <attribute speed="5"/> <stats magLevel="2"/> </list> <list gender="1" lookType="325" name="Yalaharian"> <attribute speed="5"/> <stats magLevel="2"/> </list> </outfit> <outfit id="22" premium="no"> <list gender="0" lookType="336" name="Warmaster"> <stats maxMana="100"/> <attribute speed="15"/> <stats maxHealth="100"/> <stats magLevel="1"/> </list> <list gender="1" lookType="335" name="Warmaster"> <stats maxMana="100"/> <attribute speed="15"/> <stats maxHealth="100"/> <stats magLevel="1"/> </list> </outfit> <outfit id="23" premium="no"> <list gender="0" lookType="329" name="Wedding"/> <list gender="1" lookType="328" name="Wedding"/> </outfit> <outfit id="24" premium="yes"> <list gender="0" lookType="366" name="Wayfarer"> <attribute speed="10"/> <stats maxHealth="100"/> <skills shielding="2"/> </list> <list gender="1" lookType="367" name="Wayfarer"> <attribute speed="10"/> <stats maxHealth="100"/> <skills shielding="2"/> </list> </outfit> <outfit id="34" access="3" premium="yes"> <list gender="0-3" lookType="75" name="Gamemaster"/> </outfit> <outfit id="35" access="4" premium="no"> <list gender="0-3" lookType="266" name="Community Manager"/> </outfit> <outfit id="36" access="5" premium="yes"> <list gender="0-3" lookType="302" name="God"/> </outfit> </outfits>
  18. Pessoal Eu queria o Script De Addon Doll Obs: Tem que ser de todos Os Addon REP+ pra quem Ajuda
  19. Ola carros Amigos estou Com um Problema no Script De addon doll em meu ot Bom o Problema é o seguinte: O sistema Esta Fazendo todos os Addon Apena OS Seguinte Addons Nao tem como Fazer yalaharin Warmaster WAYFARER So esse addon nao nao da certo nao sei porque o Script e esse function onSay(cid, words, param) local femaleOutfits = { ["citizen"]={136}, ["hunter"]={137}, ["mage"]={138}, ["knight"]={139}, ["nobleman"]={140}, ["summoner"]={141}, ["warrior"]={142}, ["barbarian"]={147}, ["druid"]={148}, ["wizard"]={149}, ["oriental"]={150}, ["pirate"]={155}, ["assassin"]={156}, ["beggar"]={157}, ["shaman"]={158}, ["norsewoman"]={252}, ["nightmare"]={269}, ["jester"]={270}, ["brotherhood"]={279}, ["demonhunter"]={288}, ["yalaharian"]={324}, ["Wayfarer"]={366}} local maleOutfits = { ["citizen"]={128}, ["hunter"]={129}, ["mage"]={130}, ["knight"]={131}, ["nobleman"]={132},["summoner"]={133}, ["warrior"]={134}, ["barbarian"]={143}, ["druid"]={144}, ["wizard"]={145}, ["oriental"]={146}, ["pirate"]={151}, ["assassin"]={152}, ["beggar"]={153}, ["shaman"]={154}, ["norsewoman"]={251}, ["nightmare"]={268}, ["jester"]={273}, ["brotherhood"]={278}, ["demonhunter"]={289}, ["yalaharian"]={325}, ["Wayfarer"]={367}} local msg = {"Digite o nome correto!", "Voce não possui Addon Doll!", "Bad param!", "Você recebeu seu addons!"} local param = string.lower(param) if (not isPremium(cid)) then doPlayerSendCancel(cid, "Você nao tem premium account.") return TRUE end if(getPlayerItemCount(cid, 9693) > 0) then if(param ~= "" and maleOutfits[param] and femaleOutfits[param]) then doPlayerRemoveItem(cid, 9693, 1) doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, msg[4]) doSendMagicEffect(getCreaturePosition(cid), CONST_ME_GIFT_WRAPS) if(getPlayerSex(cid) == 0)then doPlayerAddOutfit(cid, femaleOutfits[param][1], 3) else doPlayerAddOutfit(cid, maleOutfits[param][1], 3) end else doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, msg[1]) end else doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, msg[2]) end end e o outfits.XML e esse <?xml version="1.0"?> <outfits> <outfit id="1"> <list gender="0" lookType="136" name="Citizen"/> <list gender="1" lookType="128" name="Citizen"/> </outfit> <outfit id="2"> <list gender="0" lookType="137" name="Hunter"/> <list gender="1" lookType="129" name="Hunter"/> </outfit> <outfit id="3"> <list gender="0" lookType="138" name="Mage"/> <list gender="1" lookType="130" name="Mage"/> </outfit> <outfit id="4"> <list gender="0" lookType="139" name="Knight"/> <list gender="1" lookType="131" name="Knight"/> </outfit> <outfit id="5" premium="yes"> <list gender="0" lookType="140" name="Noblewoman"/> <list gender="1" lookType="132" name="Nobleman"/> </outfit> <outfit id="6" premium="yes"> <list gender="0" lookType="141" name="Summoner"/> <list gender="1" lookType="133" name="Summoner"/> </outfit> <outfit id="7" premium="yes"> <list gender="0" lookType="142" name="Warrior"/> <list gender="1" lookType="134" name="Warrior"/> </outfit> <outfit id="8" premium="yes"> <list gender="0" lookType="147" name="Barbarian"/> <list gender="1" lookType="143" name="Barbarian"/> </outfit> <outfit id="9" premium="yes"> <list gender="0" lookType="148" name="Druid"/> <list gender="1" lookType="144" name="Druid"/> </outfit> <outfit id="10" premium="yes"> <list gender="0" lookType="149" name="Wizard"/> <list gender="1" lookType="145" name="Wizard"/> </outfit> <outfit id="11" premium="yes"> <list gender="0" lookType="150" name="Oriental"/> <list gender="1" lookType="146" name="Oriental"/> </outfit> <outfit id="12" premium="yes"> <list gender="0" lookType="155" name="Pirate"/> <list gender="1" lookType="151" name="Pirate"/> </outfit> <outfit id="13" premium="yes"> <list gender="0" lookType="156" name="Assassin"/> <list gender="1" lookType="152" name="Assassin"/> </outfit> <outfit id="14" premium="yes"> <list gender="0" lookType="157" name="Beggar"/> <list gender="1" lookType="153" name="Beggar"/> </outfit> <outfit id="15" premium="yes"> <list gender="0" lookType="158" name="Shaman"/> <list gender="1" lookType="154" name="Shaman"/> </outfit> <outfit id="16" premium="yes"> <list gender="0" lookType="252" name="Norsewoman"/> <list gender="1" lookType="251" name="Norseman"/> </outfit> <outfit id="17" premium="yes"> <list gender="0" lookType="269" name="Nightmare"/> <list gender="1" lookType="268" name="Nightmare"/> </outfit> <outfit id="18" premium="yes"> <list gender="0" lookType="270" name="Jester"/> <list gender="1" lookType="273" name="Jester"/> </outfit> <outfit id="19" premium="yes"> <list gender="0" lookType="279" name="Brotherhood"/> <list gender="1" lookType="278" name="Brotherhood"/> </outfit> <outfit id="20" premium="yes"> <list gender="0" lookType="288" name="Demonhunter"/> <list gender="1" lookType="289" name="Demonhunter"/> </outfit> <outfit id="21" premium="yes"> <list gender="0" lookType="324" name="Yalaharian"/> <list gender="1" lookType="325" name="Yalaharian"/> </outfit> <outfit id="22" premium="yes"> <list gender="0" lookType="336" name="Warmaster"/> <list gender="1" lookType="335" name="Warmaster"/> </outfit> <outfit id="23" default="0"> <list gender="0" lookType="329" name="Wife"/> <list gender="1" lookType="328" name="Husband"/> </outfit> <outfit id="24" premium="yes"> <list gender="0" lookType="366" name="Wayfarer"/> <list gender="1" lookType="367" name="Wayfarer"/> </outfit> </outfits> alguem aew pode me ajuda?? REP+ pra quem ajuda
  20. Meu Addon Box Está Com Algum Erro Gostaria De Pedir Que Alguém Ache o Erro E Me Mande Aqui Mesmo A Script Correta . Desde Já Agradeço. Addon Box 1 : Addon Box 2 : OBS : As Duas Boxs Não Estão Abrindo.
  21. Galera queria arrumar akela barrinha q mostra as addons la no site mais é pelo db eu acho alguem ajuda ae ? '
  22. Aee galera queria os npc de addons separado tipo, assassin, beggar, citizen, e paw alguem tem ae separados ? '
  23. Boa Tarde / Bom Dia / Boa Noite Eu tava Aqui vendo o Sistema de Addon Poke ... ai eu Adicionei no meu Server pra Testar , ele ate funcionou certo .... Eu Não sei se foi so comigu , pq n vi ninguem reclamando no forum ... Mais eu Achei 2 bugs aqui depois que adicionei. 1º Quando eu Adiciono por exemplo addon no Machop , e Evoluo ele para Machamp .. o Machamp Fica com o Addon do Machop. e 2º Quando adicionei , as Balls Dava Para Tirar do Slot com Pokemon Solto ... Não da nenhum erro , só acontece isso ai /\ Sistema Que eu Usei \/ Se Alguem poder Ajudar , Agradeço ...
  24. Eu gostaria de um npc que da as 2 addons, Citizen Hat: Requisitos: • 100 Chicken Feathers • 50 Honeycombs • 1 Legion Helmet Citação: Hi hat yes Bye *Ela te da a addon. Recompensa Citizen Backpack Requisitos: • 100 Minotaur Leather Citação: Hi backpack yes *Ela lhe dará a addon. alguem poderia fazer ou me ensinar porfavor?
  25. Olha eu ai denovo tudo bom? bom pessoal vou direto ao assunto.. no .xml Na action do goback, no finalzinho antes de Coloque: Agora em data/lib/catch system.lua Depois de: Coloque: Depois em data/talkactions/scripts/createpokeball.lua depois de: Coloque: bem esse script pertence ao ricardosonnoh um cara muito fera aki no xtibia.. e esse sistema fuciona assim, eu uso um item no pokemon com ele dentro da pokebola ai ele vai ganhar um addon so isso msm.. intão oq eu queria é o seguinte: um comando !check addon para que eu podesse ver quais os addon tem nakele pokemon.. EX: eu tenho um Bulbasaur ai botei um addon nele ai logo em seguida trokei akele addon por outro ok, ai ele ta com 2 addon certo.. logo apos quero deixa ele com o addon anterior ai vou em !check addon e posso selecionar o addon anterior ou revover todos os addons e deixa ele normal.. se n deu pra entender min falem que eu tento explicar melhor valendo 5rep+ meu (mais tenho certeza que vai ganhar muito mais pq muita gente ta querendo isso) --------------------------- ----------------------- ou podiam fazer um comando pra tira o addon so pq esse ai do ricardo so tem como por mais como tira n tem como =/ com esse script /\ dou 2 rep ^^ meus, tirando o da galera q concerteza vai dar.
×
×
  • Criar Novo...