Ir para conteúdo

Viny 13

Membro
  • Registro em

  • Última visita

Tudo que Viny 13 postou

  1. Link direto não funciona, tive que ir no link do FORUM... Aí baixei o unico que deu pra baixar o COM dll, mas quando eu tento abrir meu client da um erro Coundl' load tibia.dat !!! Help-me rep+
  2. Aparece esse seguinte erro na distro : [17/08/2016 08:57:37] [Error - Npc interface] [17/08/2016 08:57:37] data/npc/scripts/heal.lua:onCreatureSay [17/08/2016 08:57:37] Description: [17/08/2016 08:57:37] (luaGetThing) Thing not found acontece depois que eu falo Hi, ai da uma trava de 3 seg
  3. Tá se inspirando no league of legends?
  4. Como aumento o tamanho de uma spell? queria aumentar o tamanho do earth quake E queria também trocar o efeito do meu meteor smash, pra botar igual aquele do otp, que cai um monte de meteoro.
  5. Viny 13 postou uma resposta no tópico em Suporte Tibia OTServer
    up To com a mesma duvida mas o meu é quadrado
  6. Viny 13 postou uma resposta no tópico em Suporte Tibia OTServer
    Cara explica melhor o que quer?, tipo se quer que clico num bau e ganho certo poke? inicial ?
  7. Não use base otc pra projeto serio, eu aconselho utilizar o old. Mas porém você pode utilizar as duas Use uma base open soucer pra poder utilizar todos sistemas do tibiaking Á Mais recomendada é a dash v6 trabalhe firme nela ! e boa sorte.
  8. Só repostei o sistema dele, que foi feito pra pde, mas só adaptar pra PDA !
  9. Não vejo nada modificado
  10. Viny 13 postou uma resposta no tópico em Suporte Tibia OTServer
    local btype = "normal" local pokemon = "Nome do pokemon" local storage = 60008 -- storage function onUse(cid, item, frompos, item2, topos) if pokemon == "" then return true end if getPlayerStorageValue(cid, storage) <= 0 then addPokeToPlayer(cid, pokemon, 0, nil, btype) doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "Voce terminou a quest e pegou seu "..pokemon.."!!") doSendMagicEffect(getThingPos(cid), 29) doSendMagicEffect(getThingPos(cid), 27) doSendMagicEffect(getThingPos(cid), 29) setPlayerStorageValue(cid, storage, 1) doPlayerAddItem(cid, 2160, 1) else doPlayerSendCancel(cid, "Você já pegou seu Pokémon") end return TRUE end TAG : <action actionid="30018" event="script" value="quests/NOMEDOARQUIVO.lua"/> AGORA É SO BOTAR NO ACTION ID DO BAU 30018
  11. Viny 13 postou uma resposta no tópico em Suporte Tibia OTServer
    tenta mudar no boost_rate dentro do configuration.lua
  12. Não funcionou ;/
  13. Baixa o servidor PokémonBLACK+Fire la tem,o,!addons remove
  14. DATA/LIB/CONFIGURATION.lua da cntrl+f no seu pokemon até achar uma tag que tem VITALITY e trocar o rate da vitality
  15. Obrigado, até que foi rapido HIHIHIIHI, só não recebi o rep
  16. Passa seu actions.xml dentro do spoiler, pra eu ver uma coisa antes de a gente seguir pro proximo passo.
  17. http://www.tibiaking.com/forum/topic/67445-concertando-o-sexo-do-seu-pok%C3%A9mon/?do=findComment&comment=387190
  18. Fiz um topico pra te ajudar pefeitamente. @elias silva
  19. Viny 13 postou uma resposta no tópico em Suporte Tibia OTServer
    boost por stone? ou boostmachine?
  20. Bom gente esses dias o @Ceetros postou um sistema de Addon, que funciona no fly, ride e surf Só vou repostar aqui pra vocês, pois ele só postou no outro forum Vá em actions/scripts e crie um arquivo chamado addon.lua. Adicione isso lá: function onUse(cid, item, fromPosition, itemEx, toPosition) local addons = { [ID DO ITEM] = {pokemon= "NOME DO POKEMON" , looktype = LOOKTYPE NORMAL, fly = FLY, SE NÃO TIVER PONHA 0, ride = RIDE, SE NÃO TIVER PONHA 0, surf = SE NÃO TIVER SURF PONHA 0}, } if #getCreatureSummons(cid) > 0 then doPlayerSendCancel(cid, "Please back your pokemon.") return false end local addon = addons[item.itemid].looktype local fly = addons[item.itemid].fly local ride = addons[item.itemid].ride local surf = addons[item.itemid].surf local pb = getPlayerSlotItem(cid, 8).uid local pk = addons[item.itemid].pokemon if getItemAttribute(pb,"poke") ~= pk then doPlayerSendCancel(cid, "Sorry, you can't use this addon on this poke.") return false end if getItemAttribute(pb,"addon") >= 0 then doRemoveItem(item.uid, 1) doPlayerSendTextMessage(cid, 27, "Congratulations! Now your pokemon will use the addon.") doSetItemAttribute(pb,"addon",addon) doSetItemAttribute(pb,"addonfly",fly) doSetItemAttribute(pb,"addonride",ride) doSetItemAttribute(pb,"addonsurf",surf) return true end return true end Em actions.xml adicione: <action itemid="ID;ID;ID" event="script" value="addon.lua"/> Agora em actions/goback.lua antes de: else doPlayerSendCancel(cid, "This pokemon is fainted.") end return true end Adicione: local pk = getCreatureSummons(cid)[1] local pb = getPlayerSlotItem(cid, 8).uid local look = getItemAttribute(pb,"addon") if not look then doSetItemAttribute(pb,"addon",0) end if look > 0 then doSetCreatureOutfit(pk, {lookType = look}, -1) end Em lib/order.lua encontre: local pokemon = flys[getPokemonName(getCreatureSummons(cid)[1])] doPlayerSendTextMessage(cid, 27, "Type \"up\" or \"h1\" to fly higher and \"down\" or \"h2\" to fly lower.") doChangeSpeed(cid, -getCreatureSpeed(cid)) local speed = 500 + PlayerSpeed/5 + getSpeed(sid) * 6 * speedRate doChangeSpeed(cid, speed) setPlayerStorageValue(cid, 54844, speed) doSetCreatureOutfit(cid, {lookType = pokemon[1] + 351}, -1) doItemSetAttribute(getPlayerSlotItem(cid, 8).uid, "hp", getCreatureHealth(getCreatureSummons(cid)[1]) / getCreatureMaxHealth(getCreatureSummons(cid)[1])) doRemoveCreature(getCreatureSummons(cid)[1]) setPlayerStorageValue(cid, 17000, 1) Abaixo adicione: local addonfly= getPlayerSlotItem(cid, 8).uid local addofly = getItemAttribute(addonfly,"addonfly") if not addofly then doSetItemAttribute(addonfly,"addonfly",0) end if addofly > 0 then doSetCreatureOutfit(cid, {lookType = addofly}, -1) end Continuando em order.lua Encontre: local pokemon = rides[getPokemonName(getCreatureSummons(cid)[1])] doChangeSpeed(cid, -getCreatureSpeed(cid)) local speed = 150 + PlayerSpeed + getSpeed(sid) * 5 * speedRate doChangeSpeed(cid, speed) setPlayerStorageValue(cid, 54844, speed) doSetCreatureOutfit(cid, {lookType = pokemon[1] + 351}, -1) doItemSetAttribute(getPlayerSlotItem(cid, 8).uid, "hp", getCreatureHealth(getCreatureSummons(cid)[1]) / getCreatureMaxHealth(getCreatureSummons(cid)[1])) doRemoveCreature(getCreatureSummons(cid)[1]) setPlayerStorageValue(cid, 17001, 1) Em baixo adicione: local addonride = getPlayerSlotItem(cid, 8).uid local addoride = getItemAttribute(addonride,"addonride") if not addoride then doSetItemAttribute(addonride,"addonride",0) end if addoride > 0 then doSetCreatureOutfit(cid, {lookType = addoride}, -1) end Agora em movements/surf.lua encontre: doSetCreatureOutfit(cid, {lookType = surfs[getPokemonName(getCreatureSummons(cid)[1])].lookType + 351}, -1) doCreatureSay(cid, ""..getPokeName(getCreatureSummons(cid)[1])..", lets surf!", 1) doChangeSpeed(cid, -(getCreatureSpeed(cid))) E troque por: local addonsurf = getPlayerSlotItem(cid, 8).uid local addosurf = getItemAttribute(addonsurf,"addonsurf") if not addosurf then doSetItemAttribute(addonsurf,"addonsurf",0) doSetCreatureOutfit(cid, {lookType = surfs[getPokemonName(getCreatureSummons(cid)[1])].lookType + 351}, -1) end if addosurf > 0 then doSetCreatureOutfit(cid, {lookType = addosurf}, -1) end doCreatureSay(cid, ""..getPokeName(getCreatureSummons(cid)[1])..", lets surf!", 1) doChangeSpeed(cid, -(getCreatureSpeed(cid))) No mesmo arquivo ache: doSummonMonster(cid, pokemon) Logo abaixo adicione: local pk = getCreatureSummons(cid)[1] local balla = getPlayerSlotItem(cid, 8).uid local balladdon = getItemAttribute(balla,"addon") if not balladdon then doSetItemAttribute(balla,"addon",0) end if balladdon > 0 then doSetCreatureOutfit(pk, {lookType = balladdon}, -1) end Por ultimo em actions/order.lua encontre: doPlayerSay(cid, ""..getPokeName(getCreatureSummons(cid)[1])..", let me get down!", 1) doRegainSpeed(cid) --alterado v1.7 doRemoveCondition(cid, CONDITION_OUTFIT) Abaixo adicione: local pkjg = getCreatureSummons(cid)[1] local pkza = getPlayerSlotItem(cid, 8).uid local pkxd = getItemAttribute(pkjg,"addon") if not pkxd then doSetItemAttribute(pkza,"addon",0) elseif pkxd > 0 then doSetCreatureOutfit(pkjg, {lookType = pkxd}, -1) end Caso não tenha addon box vá data/actions/scripts e adicione isso: Explicando: local addons = {12803,12804,12805,12806,12807,2135,2136,2137,2138,2139,2142} ( Onde tá os numeros é o id da sua addon ) onde tá 12802 ( é o id da addon box ) Onde tá (1, 11 ) é a quantidade de items que tem na box,sempre que for adicionar uma aumente o numero pois pode falhar. EM DATA/ACTIONS/ACTIONS.XML ADICIONE ESTA TAG : <action itemid="ID DA SUA ADDON BOX" event="script" value="addon box.lua"/> Pra finalizar Vá em creaturescripts/scripts/login.lua Troque tudo por:
  21. if exhaustion.get(cid, 6666) and exhaustion.get(cid, 6666) > 0 then return true end Não sei te ajudar mas creio que seja o simbolo de comparação dos numeros '-

Informação Importante

Confirmação de Termo