Ir para conteúdo

kaleudd

Membro
  • Registro em

  • Última visita

  1. Gostaria de ajuda,queria saber como faço para quando a bike se mover soltasse um efeito atras dela,toda vez que andasse sairia efeito atraz,tipo o fogo de uma moto do motoqueiro fantasma Script;
  2. kaleudd reagiu a uma resposta no tópico: Teleport Automático em X dias e X horas
  3. Sua duvida já é a resposta,Cyan=-Pda,Pda=é um lixo de estavel.
  4. Isso não tem nada ver com Otclient,e sim com algum script do servidor,não lembro qual,mais tenta vr em ord sla
  5. kaleudd reagiu a uma resposta no tópico: Algumas Spr PxG [2015]
  6. kaleudd reagiu a uma resposta no tópico: Algumas Spr PxG [2015]
  7. kaleudd postou uma resposta no tópico em Sprites
    Muito obrigado. Rep+
  8. kaleudd postou uma resposta no tópico em Sprites
    Poste o créditos do membro que voce pegou de outro forum. pois ele que descompilo e libero,portanto mereçe os creditos,Tem 24Hrs para postar,caso contrario será reportado. Link do topico do outro forum
  9. alguem tem as novas remakes das montanhas do pokexgames? vlw!
  10. coisa horrivel,tutorial mal feito tudo dentro de uma só bar,eca!!
  11. OLa,bem estou com um problema no addon system que achei,é o seguinte,ele funciona de boa ao usar item talz,porem unico problema é que a Cdbar dos attacks somen,dai ele fica sem nenhum attack ESTOU USANDO ESSE SCRIPT http://www.tibiaking.co...s-pokemons-151/ funcionou Quase que perfeitamente. Não consegui configurar a cod bar para funcionar com o addon (se usar o addon todos os moves somen,ele fica sem). Alguem saberia como fazer?
  12. OLa,bem estou com um problema no addon system que achei,é o seguinte,ele funciona de boa ao usar item talz,porem unico problema é que a Cdbar dos attacks somen,dai ele fica sem nenhum attack ESTOU USANDO ESSE SCRIPT funcionou Quase que perfeitamente. Não consegui configurar a cod bar para funcionar com o addon (se usar o addon todos os moves somen,ele fica sem). Alguem saberia como fazer? Em actions.xml adicione a seguinte tag: <action itemid="xxxx" event="script" value="addons.lua"/> Sendo, xxxx o id do item que vai dar o addon. addons.lua function onUse(cid, item, fromPosition, itemEx, toPosition) local addons = { [xxxx] = {pokemon= "Scyther" , looktype = 510}, --xxxx = id do item do addon --- "Scyther" = nome do pokemon --- looktype = 1 é o looktype do pokemon com addon } if #getCreatureSummons(cid) > 0 then doPlayerSendCancel(cid, "Please back your pokemon.") return false end local numero = addons[item.itemid].looktype 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") < 1 then doRemoveItem(item.uid, 1) doPlayerSendTextMessage(cid, 27, "Congratulations! Now your pokemon will use the addon.") doSetItemAttribute(pb,"addon",numero) return true end return true end Na action do goback, no finalzinho antes de else doPlayerSendCancel(cid, "This pokemon is fainted.") end Coloque: local pk = getCreatureSummons(cid)[1] local pb = getPlayerSlotItem(cid, 8).uid local look = getItemAttribute(pb,"addon") if not look then doSetItemAttribute(pb,"addon",0) return false end if look > 0 then doSetCreatureOutfit(pk, {lookType = look}, -1) return true end Agora em data/lib/catch system.lua Depois de: doItemSetAttribute(item, "description", description) Coloque: doItemSetAttribute(item, "addon", 0) Depois em data/talkactions/scripts/createpokeball.lua depois de: doItemSetAttribute(item, "description", "Contains a "..name..".") Coloque: doItemSetAttribute(item, "addon", 0)
  13. kaleudd postou uma resposta no tópico em Tutoriais sobre Clients
    Olá,como faço para adicionar imagens,a cada aba,exemplo: 1.Exp=1 imagen 2.Exp=Outra imagen diferente ou seja em todas as jenelas uma imagens diferente,para facilitar o tutorial. Se puder ajudar,vlw!
  14. kaleudd reagiu a uma resposta no tópico: (Resolvido)Teleport do Pokemon
  15. Salve,gostaria de saber onde edito as posiçao das city do meu script de teleport do /h do pokemon Base:Pda 1.2 Meu Script: local config = { premium = true, -- se precisa ser premium account (true or false) battle = true -- se precisa estar sem battle (true). Se colocar false, poderá usar teleport no meio de batalhas } local places = { [1] = {name = "Celadon", id = 1}, [2] = {name = "Saffron", id = 2}, [3] = {name = "Cerulean", id = 3}, [4] = {name = "Lavender", id = 4}, [5] = {name = "Vermilion", id = 5}, [6] = {name = "Fuchsia", id = 6}, [7] = {name = "Cinnabar", id = 7}, [8] = {name = "Viridian", id = 9}, [9] = {name = "Pewter", id = 10}, [10] = {name = "Pallet Town", id = 12}, [11] = {name = "Azalea", id = 13}, [12] = {name = "Cianwood", id = 14}, [13] = {name = "Olivine", id = 15}, [14] = {name = "Goldenrod", id = 16}, [15] = {name = "Violet", id = 18}, [16] = {name = "Outland North", id = 20}, [17] = {name = "Outland South", id = 21}, [18] = {name = "Outland East", id = 19}, [19] = {name = "Rod", id = 22}, } function onSay(cid, words, param) if #getCreatureSummons(cid) == 0 then doPlayerSendCancel(cid, "You need a pokemon to use teleport.") return true end if not isInArray(specialabilities["teleport"], getCreatureName(getCreatureSummons(cid)[1])) then return 0 end if getPlayerStorageValue(cid, 22545) == 1 then --golden arena doPlayerSendCancel(cid, "You can't do that while the golden arena!") return true end if getPlayerStorageValue(cid, 212124) >= 1 then --alterado v2.6 return doPlayerSendCancel(cid, "You can't do it with a pokemon with mind controlled!") end if getPlayerStorageValue(cid, 52480) >= 1 then return doPlayerSendCancel(cid, "You can't do it while a duel!") --alterado v2.6 end if getPlayerStorageValue(cid, 6598754) == 1 or getPlayerStorageValue(cid, 6598755) == 1 then return doPlayerSendCancel(cid, "You can't do it while in the PVP Zone!") --alterado v2.7 end if exhaustion.get(cid, 180) and exhaustion.get(cid, 180) > 0 then local tempo = exhaustion.get(cid, 180) or 0 local min = math.floor(tempo) doPlayerSendCancel(cid, "Your pokemon is tired, wait "..getStringmytempo(tempo).." to teleport again.") return true end if config.premium and not isPremium(cid) then doPlayerSendCancel(cid, "Only premium members are allowed to use teleport.") return true end if config.battle and getCreatureCondition(cid, CONDITION_INFIGHT) then doPlayerSendCancel(cid, "Your pokemon can't concentrate during battles.") return true end if (param == '') then local str = "" str = str .. "Places to go :\n\nHouse\n" for a = 1, #places do str = str..""..places[a].name.."\n" end doShowTextDialog(cid, 7416, str) return true end local item = getPlayerSlotItem(cid, 8) local nome = getPokeballName(item.uid) local summon = getCreatureSummons(cid)[1] local lastppos = getThingPos(cid) local lastspos = getThingPos(summon) local telepos = {} local myplace = "" local townid = 0 local citySto = 0 --alterado v2.7 if string.lower(param) == "house" then if not getHouseByPlayerGUID(getPlayerGUID(cid)) then doPlayerSendTextMessage(cid, MESSAGE_EVENT_DEFAULT, "You don't own a house.") return true end telepos = getHouseEntry(getHouseByPlayerGUID(getPlayerGUID(cid))) myplace = "our home" else for x = 1, #places do if string.find(string.lower(places[x].name), string.lower(param)) then townid = places[x].id myplace = places[x].name citySto = places[x].sto or -1 --alterado v2.7 end end if myplace == "" then doPlayerSendCancel(cid, "That place doesn't exist.") return true end if isInArray({"Outland North", "Outland South", "Outland East"}, myplace) then if getPlayerLevel(cid) < 150 then doPlayerSendTextMessage(cid, 27, "You need level 150 to enter in Outland.") return true end end end if myplace ~= "" and townid > 0 then telepos = getTownTemplePosition(townid) end if getDistanceBetween(getThingPos(cid), telepos) <= 15 then doPlayerSendCancel(cid, "You are too near to the place you want to go!") return true end doSendMagicEffect(getThingPos(summon), 29) doSendMagicEffect(getThingPos(cid), 29) doTeleportThing(cid, telepos, false) local pos2 = getClosestFreeTile(cid, getPosByDir(getThingPos(cid), SOUTH)) doTeleportThing(summon, pos2, false) doSendMagicEffect(getThingPos(cid), 29) doCreatureSay(cid, ""..nome..", teleport to "..myplace.."!", TALKTYPE_MONSTER) doCreatureSay(cid, ""..nome..", teleport to "..myplace.."!", TALKTYPE_MONSTER, false, 0, lastppos) doCreatureSay(summon, "TELEPORT!", TALKTYPE_MONSTER) doCreatureSay(summon, "TELEPORT!", TALKTYPE_MONSTER, false, 0, lastspos) doCreatureSetLookDir(cid, SOUTH) doCreatureSetLookDir(summon, SOUTH) doSendMagicEffect(getThingPos(summon), CONST_ME_TELEPORT) exhaustion.set(cid, 180, 180) if isInArray({"Outland North", "Outland South", "Outland East"}, myplace) then setPlayerStorageValue(cid, 31040, 1) else setPlayerStorageValue(cid, 31040, -1) end return true end
  16. Olá,gostaria de saber onde fica o script de quando mirar em pokemon selvagem fica uma target ao redor do pokemon,gostaria de muda-la.obg!
  17. Alguem poderia descompilar esse oldclient 100% funcional? pq eu descompilei mais tinhas uns bug no .dat e nao abria todas as sprs Dou 5 Rep+ Link do ot para descompilar http://www.psoul.net/ http://www.psoul.net/ http://www.psoul.net/ http://www.psoul.net/

Informação Importante

Confirmação de Termo